/* ============================================
   R & A Fini — Fine Violins and Bows
   Refined Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Cormorant+SC:wght@300;400;500&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:        #f8f4ee;
  --ivory-dark:   #f0ebe1;
  --charcoal:     #1c1a18;
  --charcoal-mid: #3a3530;
  --charcoal-lt:  #5c5650;
  --gold:         #b8975a;
  --gold-lt:      #d4b87a;
  --navy:         #0d1520;
  --navy-mid:     #162035;
  --blue-grey:    #5d85a2;
  --rule:         rgba(184, 151, 90, 0.35);
  --serif:        'Cormorant Garamond', Georgia, serif;
  --serif-sc:     'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --nav-h:        88px;
  --site-max:     1440px;
  --gutter:       5vw;
  --section-pad:  100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.8;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Elegant decorative rule used throughout */
.ornament {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.ornament.left { margin-left: 0; }

/* ============================================
   PAGE FADE-IN TRANSITION
   ============================================ */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  animation: pageFadeIn 0.55s ease both;
}

/* Fade out on link click (JS adds .page-leaving) */
body.page-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px var(--gutter);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.site-header.transparent { background: transparent; }

.site-header.solid {
  background: rgba(13, 21, 32, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(184,151,90,0.15);
}

.nav-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  display: none;
}
.nav-logo.show {
  display: block;
  margin-bottom: 4px;
}
.nav-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 32px;
}

nav ul li a {
  font-family: var(--serif-sc);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav ul li a:hover { color: #fff; }
nav ul li a:hover::after { width: 100%; }
nav ul li a.active { color: #fff; }
nav ul li a.active::after { width: 100%; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  position: absolute;
  right: var(--gutter);
  top: 24px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82);
}

/* Layered vignette — dark edges, clear center */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%,
      transparent 30%,
      rgba(10, 15, 22, 0.55) 75%,
      rgba(10, 15, 22, 0.82) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 30px;
}

/* Thin gold rule above title */
.hero-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  margin-bottom: 16px;
}

.hero-content h2 {
  font-family: var(--serif-sc);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.88);
}

/* ============================================
   PAGE SPACER (inner pages)
   ============================================ */
.page-spacer {
  height: var(--nav-h);
  background: var(--navy);
}

/* ============================================
   PAGE TITLE BANNER
   ============================================ */
.page-banner {
  background: var(--navy);
  padding: 52px var(--gutter) 44px;
  text-align: center;
  border-bottom: 1px solid rgba(184,151,90,0.2);
}

.page-banner h1 {
  font-family: var(--serif-sc);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
}

.page-banner .ornament { background: var(--gold); margin-top: 16px; margin-bottom: 0; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  align-items: stretch;
}

.about-section + .about-section {
  border-top: 1px solid var(--ivory-dark);
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-text {
  padding: 72px 68px 72px 56px;
  display: flex;
  align-items: center;
  background: var(--ivory);
}

.about-text-inner {}

.about-text-inner .maker-name {
  font-family: var(--serif-sc);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.about-text-inner p {
  font-size: 17.5px;
  line-height: 1.9;
  color: var(--charcoal-mid);
  font-weight: 300;
}

.about-text-inner p + p { margin-top: 18px; }

.about-section.reverse .about-image { order: 2; }
.about-section.reverse .about-text  { order: 1; padding: 72px 56px 72px 68px; }

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.88);
}

.testimonials-page {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 80px var(--gutter) 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 100px;
}

.testimonials-col {}

.testimonials-col h2 {
  font-family: var(--serif-sc);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--charcoal-lt);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.testimonials-col h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.testimonial {
  margin-bottom: 44px;
  padding-left: 28px;
  position: relative;
}

/* Large decorative opening quote */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -18px;
  left: -8px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-style: italic;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 16.5px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-mid);
  margin-bottom: 14px;
}

.testimonial cite {
  display: block;
  font-family: var(--serif-sc);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--charcoal-lt);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px var(--gutter) 110px;
  text-align: center;
}

.contact-info {
  margin-bottom: 52px;
  font-size: 17px;
  line-height: 2.1;
  color: var(--charcoal-mid);
}

.contact-info strong {
  display: block;
  font-family: var(--serif-sc);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-style: normal;
  font-weight: 400;
}

.contact-info a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-info a:hover { border-color: var(--gold); }

/* Contact Form */
.contact-form { text-align: left; }

.form-group { margin-bottom: 26px; }

.form-group label {
  display: block;
  font-family: var(--serif-sc);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 9px;
  color: var(--charcoal-lt);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(28,26,24,0.15);
  background: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 160px;
  resize: vertical;
}

.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.88);
  font-family: var(--serif-sc);
  font-size: 12px;
  letter-spacing: 0.2em;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: transparent;
  color: var(--charcoal);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: default;
}

.form-feedback {
  margin-top: 32px;
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.feedback-ornament {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.form-feedback p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

.form-feedback--error {
  border-color: rgba(160, 60, 60, 0.25);
}

.form-feedback--error p {
  color: #8a3030;
  font-style: normal;
  font-size: 16px;
}

.form-feedback--error a {
  color: var(--gold);
}

/* ============================================
   ACQUISITIONS PAGE
   ============================================ */
.acquisitions-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px var(--gutter) 110px;
}

.acquisitions-intro {
  font-size: 18px;
  line-height: 1.9;
  color: var(--charcoal-mid);
  margin-bottom: 64px;
  max-width: 660px;
}
.acquisitions-intro a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.acquisitions-intro a:hover { border-color: var(--gold); }

.acquisitions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 100px;
}

.acq-category h2 {
  font-family: var(--serif-sc);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--charcoal-lt);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.acq-category h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--gold);
}

.acq-category ul { list-style: none; }

.acq-category ul li {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--charcoal-mid);
}

.acq-cta {
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 17px;
  color: var(--charcoal-lt);
  font-style: italic;
  text-align: center;
}
.acq-cta a { color: var(--gold); font-style: normal; }
.acq-cta a:hover { text-decoration: underline; }

/* ============================================
   INSTRUMENT GALLERY
   ============================================ */
.gallery-page {
  padding: 68px var(--gutter) 110px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.gallery-instrument { margin-bottom: 90px; }

.gallery-instrument h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.gallery-instrument .ornament.left { margin-bottom: 28px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  cursor: pointer;
  transition: filter 0.3s, transform 0.4s ease;
  filter: brightness(0.97);
}

.gallery-grid img:hover {
  filter: brightness(1.04);
  transform: scale(1.012);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--serif);
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 48px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--serif);
  line-height: 1;
  padding: 12px 16px;
  transition: color 0.2s;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ============================================
   BOW GALLERY
   ============================================ */
.bow-gallery-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 68px var(--gutter) 110px;
  text-align: center;
}

.bow-gallery-note {
  font-style: italic;
  color: var(--charcoal-lt);
  margin-bottom: 60px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.bow-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.bow-pair img {
  width: 100%;
  object-fit: contain;
  background: #fff;
  padding: 24px;
  cursor: pointer;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bow-pair img:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.12); }

/* ============================================
   VIDEO PAGE
   ============================================ */
.video-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px var(--gutter) 110px;
  text-align: center;
}

.video-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.video-subtitle {
  font-family: var(--serif-sc);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--charcoal-lt);
  margin-bottom: 52px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   MAP
   ============================================ */
.map-wrap {
  width: 100%;
  border-top: 1px solid rgba(184,151,90,0.15);
  filter: grayscale(30%) contrast(1.05);
  opacity: 0.92;
  transition: opacity 0.3s, filter 0.3s;
}
.map-wrap:hover {
  opacity: 1;
  filter: none;
}
.contact-map {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,151,90,0.2);
  padding: 44px var(--gutter);
  text-align: center;
}

.footer-ornament {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.6;
}

.footer-logo {
  margin: 0 auto 20px;
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.site-footer p {
  font-family: var(--serif-sc);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.38);
}

.site-footer a {
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.site-footer a:hover {
  color: var(--gold);
  border-color: rgba(184,151,90,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .about-section { grid-template-columns: 1fr; }
  .about-section.reverse .about-image { order: 0; }
  .about-section.reverse .about-text  { order: 0; }
  .about-image { min-height: 400px; }
  .about-text { padding: 50px 36px; }
  .about-section.reverse .about-text { padding: 50px 36px; }
  .testimonials-page { grid-template-columns: 1fr; gap: 50px; }
  .acquisitions-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-name-row { grid-template-columns: 1fr; }
  .bow-pair { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --gutter: 6vw; }
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 14px 0 6px;
  }
  nav ul.open { display: flex; }
  nav ul li a { font-size: 14px; padding: 7px 0; display: block; letter-spacing: 0.14em; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-content h2 { letter-spacing: 0.15em; }
  .home-panels { grid-template-columns: 1fr; }
  .home-panel  { aspect-ratio: 4/3; }
}

/* ============================================
   Home — Intro, Panels, Quote, CTA
   ============================================ */

/* Intro text section */
.home-intro {
  background: var(--ivory);
  padding: 100px var(--gutter) 90px;
  text-align: center;
}

.home-intro-text {
  max-width: 680px;
  margin: 0 auto 80px;
}

.home-intro-text h2 {
  font-family: var(--serif-sc);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 22px;
}

.home-intro-text p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
}

/* Three-panel grid */
.home-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.home-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.home-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.72);
}

.home-panel:hover img {
  transform: scale(1.04);
  filter: brightness(0.6);
}

.home-panel-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 36px 24px;
  color: #fff;
}

.home-panel-label span.panel-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
  transition: width 0.4s ease;
}

.home-panel:hover .panel-rule { width: 52px; }

.home-panel-label h3 {
  font-family: var(--serif-sc);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.92);
}

.home-panel-label p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* Ornamental divider */
.home-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 72px var(--gutter);
  background: var(--ivory);
}

.home-divider::before,
.home-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--rule);
}

.home-divider span {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal-lt);
}

/* Pull quote strip */
.home-quote {
  background: var(--navy);
  padding: 80px var(--gutter);
  text-align: center;
}

.home-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}

.home-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--serif-sc);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-style: normal;
}

/* CTA strip */
.home-cta {
  background: var(--ivory-dark);
  padding: 70px var(--gutter);
  text-align: center;
}

.home-cta p {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--charcoal-mid);
  margin-bottom: 28px;
  font-style: italic;
}

.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid var(--charcoal);
  font-family: var(--serif-sc);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

/* ── Footer Instagram links ── */
.footer-instagram {
  margin-top: 10px;
  font-family: var(--serif-sc);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.footer-instagram a {
  color: var(--gold);
  transition: color 0.25s;
}

.footer-instagram a:hover {
  color: var(--gold-lt);
}

.footer-dot {
  margin: 0 10px;
  color: var(--charcoal-lt);
}

/* Services page divider */
.services-divider {
  display: flex;
  justify-content: center;
  padding: 10px 0 0;
  background: var(--ivory);
}

/* ── Featured gallery layout: 2 large + 4 scrolls ── */
.gallery-grid-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-grid-featured img {
  width: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: filter 0.4s ease;
}

.gallery-grid-featured img:hover { filter: brightness(0.88); }

/* Front + back: each spans 2 of the 4 columns, taller */
.gallery-grid-featured .img-main {
  grid-column: span 2;
  height: 560px;
  object-position: center top;
}

/* 4 scroll images: 1 column each, full portrait height — same total width as the two above */
.gallery-grid-featured .img-scroll {
  grid-column: span 1;
  height: auto;
  aspect-ratio: 1605 / 2600;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .gallery-grid-featured {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid-featured .img-main  { height: 320px; }
  .gallery-grid-featured .img-scroll { grid-column: span 1; height: auto; aspect-ratio: 1605 / 2600; }
}
