/* ============================================================
   Shutter Charms — responsive rebuild from the Figma design
   Palette: ivory #f7f1e8 · dark #101014 · gold #c08a2d
   Type: Playfair Display (serif display) · Plus Jakarta Sans (body)
         Kaushan Script (script accents) · Oswald (hero condensed)
   ============================================================ */

:root {
  --ivory:      #f7f1e8;
  --ivory-soft: #f2e9db;
  --card:       #fbf7f0;
  --dark:       #101014;
  --dark-soft:  #15161c;
  --gold:       #c08a2d;
  --gold-soft:  #d9a94f;
  --ink:        #22201c;
  --muted:      #6b655c;
  --line:       rgba(192, 138, 45, 0.35);
  --radius:     14px;
  --shadow:     0 14px 40px rgba(34, 28, 16, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }
/* Near-full-bleed variant — the Figma design runs the services card row to
   ~44px side gutters (≈2.5% of the 1728px canvas) instead of the standard
   content width. */
.container.wide { width: min(1680px, calc(100% - clamp(2rem, 5vw, 5.5rem))); }
.center { text-align: center; }

/* ---------- Type helpers ---------- */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  text-align: center;
  color: var(--ink);
  text-wrap: balance;
}
.section-title.left  { text-align: left; }
.section-title.light { color: #fff; }

.script-accent {
  font-family: "Kaushan Script", cursive;
  color: var(--gold);
  font-weight: 400;
}
.gold-serif {
  font-family: "Playfair Display", serif;
  color: var(--gold-soft);
  font-style: italic;
}

.script-eyebrow {
  font-family: "Kaushan Script", cursive;
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  text-align: center;
  margin-bottom: 0.6rem;
  position: relative;
}
.script-eyebrow.left { text-align: left; }
.script-eyebrow.center-rule::before,
.script-eyebrow.center-rule::after {
  content: "—";
  color: var(--gold);
  margin: 0 0.75rem;
  opacity: 0.7;
}

/* Uppercase tracked eyebrow with em-dash wings — used where the design
   labels sections in caps (FEATURED STORIES, KIND WORDS, FAQS). */
.tag-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tag-eyebrow::before,
.tag-eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.tag-eyebrow.left { justify-content: flex-start; }

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1rem;
}
.section-sub.light { color: rgba(255, 255, 255, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  box-shadow: 0 8px 22px rgba(192, 138, 45, 0.35);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.btn-outline-gold:hover { background: rgba(192, 138, 45, 0.08); }
.btn-dark {
  background: var(--dark);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.btn-icon { width: 20px; height: 20px; }
.btn.full { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(1000px 500px at 85% 20%, rgba(192, 138, 45, 0.14), transparent 60%),
    radial-gradient(700px 420px at 10% 90%, rgba(192, 138, 45, 0.07), transparent 60%),
    var(--dark);
  color: #fff;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Dark wash so the left-side text stays readable over the footage */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 16, 20, 0.85) 0%, rgba(16, 16, 20, 0.6) 45%, rgba(16, 16, 20, 0.3) 100%);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  width: min(1320px, 94%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
}
.nav-logo img { width: 96px; height: auto; }
.nav-links {
  display: flex;
  gap: 1.9rem;
  margin-inline: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero content */
.hero-content { max-width: 640px; padding: clamp(2rem, 6vh, 5rem) 0 3rem; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}
.hero-title { line-height: 0.95; }
.hero-we, .hero-memories {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
}
/* MEMORIES: the layout text is invisible; the word is drawn by an SVG overlay
   (white outline) plus a video clipped to the same SVG text — outline and fill
   share one coordinate system, so they can never drift apart. */
.hero-memories {
  color: transparent;
  position: relative;
  display: inline-block;
  margin-top: 0.14em;
}
.hero-memories .vt-video,
.hero-memories .mem-svg {
  position: absolute;
  top: -0.25em;
  left: -0.25em;
  width: calc(100% + 0.5em);
  height: calc(100% + 0.6em);
  pointer-events: none;
}
.hero-memories .vt-video {
  object-fit: cover;
  clip-path: url(#memClip);
}
.mem-svg {
  overflow: visible;
  filter: drop-shadow(4px 4px 0 rgba(255, 255, 255, 0.12));
}
.mem-t {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  letter-spacing: 0.01em;
}
.mem-outline { fill: none; stroke: #fff; stroke-width: 2; }
@supports not (clip-path: url(#memClip)) {
  .hero-memories .vt-video { display: none; }
}
.hero-craft {
  font-family: "Kaushan Script", cursive;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  color: var(--gold-soft);
  text-transform: none;
  vertical-align: baseline;
}
.hero-tail {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid var(--gold);
  display: inline-block;
  padding-top: 0.7rem;
  margin-top: 1.1rem;
}
.hero-copy {
  margin-top: 1.6rem;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  margin-top: clamp(2rem, 6vh, 4rem);
}
.hero-stats div { border-left: 2px solid var(--gold); padding-left: 1rem; }
.hero-stats dt {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
}
.hero-stats dd { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); }

/* Scroll rail + socials */
.hero-side {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.scroll-label {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.6);
}
.scroll-line {
  width: 1px; height: 90px;
  background: linear-gradient(var(--gold), transparent);
}
.hero-socials {
  position: absolute;
  right: 3%;
  bottom: 2.4rem;
  display: flex;
  gap: 0.8rem;
}
.hero-socials img { width: 34px; height: 34px; opacity: 0.9; }
.hero-socials a:hover img { opacity: 1; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-cream { background: var(--ivory); }
.section-cream.alt { background: var(--ivory-soft); }
.section-dark {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(192, 138, 45, 0.10), transparent 55%),
    #0f1219;
  color: #fff;
}
.section-dark .script-eyebrow { color: var(--gold-soft); }

/* ---------- Section background artwork (images/section<N>bg.png) ----------
   One full-bleed background per section after the hero, in page order.
   cover + center keeps them edge-to-edge at any viewport; the solid color
   before the url() is the fallback while the image loads. */
#services     { background: var(--ivory) url("../images/section1bg.png") center / cover no-repeat; padding-bottom: 2.5rem; }
#about        { background: var(--ivory) url("../images/section2bg.png") center / cover no-repeat; }
#gallery      { background: #0f1219    url("../images/section3bg.png") center / cover no-repeat; }
#connect      { background: var(--ivory) url("../images/section4bg.png") center / cover no-repeat; }
#destinations { background: var(--ivory-soft) url("../images/section5bg.png") center / cover no-repeat; }
#testimonials { background: var(--ivory) url("../images/section6bg.png") center / cover no-repeat; }
#faq          { background: var(--ivory-soft); position: relative; isolation: isolate; }
/* Background image on its own composited layer: accordion repaints inside the
   card can't nudge or re-scale the cover image. */
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/section7bg.png") center / cover no-repeat;
  transform: translateZ(0);
}
#closing-cta  { background: var(--dark)  url("../images/section8bg.png") center / cover no-repeat; }
.footer       { background: var(--dark) url("../images/footer-bg.png") center / cover no-repeat; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding-bottom: 1.4rem;
  position: relative;
}
.service-photo {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}
.service-photo img,
.service-photo video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
/* Video overlays the photo — the photo stays underneath so the card is never
   blank while the (large) video files buffer or loop around.
   --vscale zooms past the letterbox bars baked into each file
   (cards 1-3: ~3.3% bars, cards 4-5: ~12.2%). */
.service-photo video {
  position: absolute;
  inset: 0;
  --vscale: 1.08;
  transform: scale(var(--vscale));
}
.service-card:nth-child(4) .service-photo video,
.service-card:nth-child(5) .service-photo video { --vscale: 1.34; }
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-card:hover .service-photo video { transform: scale(calc(var(--vscale) * 1.05)); }
.service-badge {
  width: 62px; height: 62px;
  background: var(--card);
  border-radius: 50%;
  margin: -31px auto 0.5rem;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(34, 28, 16, 0.12);
}
.service-badge img { width: 34px; height: 34px; }
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.4rem 0 0.5rem;
}
.service-card p { font-size: 0.88rem; color: var(--muted); padding: 0 1.1rem; }
.explore {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 600;
}
.explore:hover { text-decoration: underline; }

/* Stats band */
.stats-band {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 1.8rem;          /* tighter to the service cards above */
  padding: 2rem 2rem;          /* taller card */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.stats-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1.6rem;
  border-left: 1px solid var(--line);
}
.stats-item:first-child { border-left: 0; padding-left: 0; }
.stats-icon {
  width: 54px;
  height: 54px;
  color: var(--gold);
  flex-shrink: 0;
}
.stats-item strong {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.stats-item span { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.stats-script {
  font-size: 1.25rem;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 0;
  padding-left: 1.6rem;
  border-left: 1px solid var(--line);
  position: relative;
}
/* First line of the script sits in the darker ink, second in gold — as designed. */
.stats-script-top { color: var(--ink); }
.script-underline {
  display: block;
  width: 120px;
  height: 8px;
  color: var(--gold);
  margin-top: 2px;
}

/* ============================================================
   ABOUT / PROMISE
   ============================================================ */
.promise-band {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 3rem;
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.8rem;
}
.promise-item {
  text-align: center;
  padding: 0 1.2rem;
  border-left: 1px solid var(--line);
}
.promise-item:first-child { border-left: 0; }
.promise-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin: 0 auto 0.9rem;
  display: block;
}
.promise-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
/* Tiny heart-with-wings divider under each title, as in the design. */
.promise-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.55rem;
  line-height: 1;
}
.promise-div::before,
.promise-div::after {
  content: "";
  width: 16px;
  height: 1px;
}
.promise-div::before { background: linear-gradient(to left, var(--gold), transparent); }
.promise-div::after  { background: linear-gradient(to right, var(--gold), transparent); }
.promise-item p { font-size: 0.86rem; color: var(--muted); }

/* Extra side inset for the whole About section (heading, promise band,
   story split alike). */
#about .container { padding-inline: 3%; }

.story-split {
  display: grid;
  /* Collage column widened so the photos render larger. */
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
  margin-top: 2rem;          /* tighter to the promise band above */
}
/* The tall portrait (3:4) sets the collage height; the 2×2 grid stretches to
   match it exactly, so all rows stay flush with no stray vertical gaps. */
.story-collage { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 0.5rem; }
.collage-tall img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  min-height: 0;
}
.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.story-text .script-eyebrow,
.story-text .section-title { text-align: left; }
.story-text p { margin-top: 1rem; color: var(--muted); }
.story-text .btn { margin-top: 1.6rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 2.2rem 0 2rem;
}
.filter {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid transparent;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter:hover { color: var(--gold-soft); }
.filter.active {
  border-color: var(--gold);
  color: var(--gold-soft);
}
/* Exact layout from the design (1728px canvas):
   columns 405 / 395 / 451 / 363 · row 1 = 342px, row 2 = 277px, 12px gaps.
   Column widths are fr-proportional; the two row heights derive from the
   aspect-ratio set on the second-column items (row = tallest item). */
.gallery-grid {
  display: grid;
  grid-template-columns: 405fr 395fr 451fr 363fr;
  gap: 12px;
}
.g-item {
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  position: relative;
}
/* Media is absolutely positioned so its intrinsic size can NEVER inflate the
   row heights — only the aspect-ratio cells (2 and 5) size the rows; every
   other cell (including the tall one) just fills the space it's given. */
.g-item img,
.g-item video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.g-item:hover img, .g-item:hover video { transform: scale(1.04); }
.gallery-grid .g-item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }  /* tall left, spans both rows */
.gallery-grid .g-item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; aspect-ratio: 395 / 349; } /* sets row-1 height */
.gallery-grid .g-item:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
.gallery-grid .g-item:nth-child(4) { grid-area: 1 / 4 / 2 / 5; }
.gallery-grid .g-item:nth-child(5) { grid-area: 2 / 2 / 3 / 3; aspect-ratio: 395 / 282; } /* sets row-2 height */
.gallery-grid .g-item:nth-child(6) { grid-area: 2 / 3 / 3 / 5; }  /* extra-wide bottom right */
/* Items beyond the designed 6-slot collage flow on as a uniform grid;
   without an aspect-ratio their absolutely-positioned images would
   collapse them to zero height. */
.gallery-grid .g-item:nth-child(n+7) { grid-area: auto; aspect-ratio: 4 / 3; }

/* While a category filter is active, the fixed collage areas would leave
   holes — fall back to a uniform flowing grid. */
.gallery-grid.filtered .g-item { grid-area: auto; aspect-ratio: 4 / 3; }
.g-item.hidden { display: none; }

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.gallery-cta:hover { color: var(--gold-soft); }
.cta-cam {
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* ============================================================
   CONNECT FORM
   ============================================================ */
.connect-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 3rem;
}
.connect-text .section-title { margin-top: 0.4rem; }
.connect-text p { color: var(--muted); margin-top: 1.2rem; max-width: 380px; }
/* Watercolor camera + polaroids illustration (script text is part of the
   artwork, so no separate caption is rendered). Oversized and bled toward
   the section's left edge, as in the design. */
.connect-art {
  width: min(640px, 118%);
  max-width: none;
  margin-top: 0.6rem;
  margin-left: clamp(-4rem, -5vw, -1rem);
}

.connect-form {
  background: rgba(249, 244, 236, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.5vw, 3rem);
  position: relative;
  overflow: hidden;
}
/* Folded page corner, top right — as in the design. */
.connect-form::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 56px;
  background: linear-gradient(225deg, var(--ivory) 0%, var(--ivory) 49%, rgba(207, 185, 148, 0.85) 50%, rgba(232, 218, 194, 0.9) 100%);
  box-shadow: -3px 3px 8px rgba(34, 28, 16, 0.12);
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
.form-title .script-accent { font-size: 0.95em; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
}
.connect-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.connect-form label.full { margin-top: 1.6rem; }

/* Field shell: transparent panel with a fine gold-tinted border and the
   icon sitting INSIDE on the left, exactly as designed. */
.input-wrap {
  position: relative;
  display: block;
  margin-top: 0.7rem;
}
.input-icon {
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  width: 22px;
  height: 22px;
  color: var(--gold);
  pointer-events: none;
}
.connect-form input,
.connect-form select,
.connect-form textarea {
  width: 100%;
  padding: 1rem 1.1rem 1rem 3.1rem;
  border: 1px solid rgba(192, 138, 45, 0.45);
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
}
.input-wrap.no-icon input,
.input-wrap.no-icon select,
.input-wrap.no-icon textarea { padding-left: 1.1rem; }
.connect-form ::placeholder { color: #9a927f; }
.connect-form input:focus,
.connect-form select:focus,
.connect-form textarea:focus {
  outline: 2px solid rgba(192, 138, 45, 0.35);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.35);
}
.textarea-wrap .input-icon { top: 1.1rem; }
.connect-form textarea { resize: vertical; min-height: 130px; }

/* Selects: native arrow off, gold chevron on the right. */
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid var(--gold);
  border-bottom: 1.8px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* Deep-gold uppercase submit with paper-plane icon. */
.btn-send {
  margin-top: 1.8rem;
  background: #a06a10;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  padding: 1.05rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(160, 106, 16, 0.35);
}
.btn-send:hover { background: #8d5d0d; }
.btn-send .btn-icon { width: 20px; height: 20px; }
.form-safe {
  text-align: center;
  color: var(--gold);
  font-size: 0.88rem;
  margin-top: 1rem;
}

/* ============================================================
   FEATURED STORIES
   ============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin: 3rem 0 2.4rem;
}
.story-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.3rem;
}
.story-card img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
.story-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin: 1rem 0 0.2rem;
}
.story-city {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.story-card p:not(.story-city) { font-size: 0.85rem; color: var(--muted); padding: 0 1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.quote-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.8rem 1.7rem 2.4rem;
  text-align: center;
}
.quote-card::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 0.35;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}
.quote-card p { font-size: 0.95rem; line-height: 1.75; color: #4c473e; }
/* Thin gold line with a diamond at its centre, between quote and names. */
.q-div {
  display: block;
  height: 1px;
  width: 72%;
  margin: 1.3rem auto 1.1rem;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  position: relative;
}
.q-div::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.quote-card footer { margin-top: 0; }
.quote-card footer strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}
.quote-card footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quote-card .pin { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.consult-band {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2.6rem;
  padding: 1.6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.consult-band h3 { font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 500; }
.consult-band p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-intro .section-title { margin-top: 0.4rem; font-size: clamp(2.4rem, 4.8vw, 3.8rem); }
.faq-intro p { color: var(--muted); margin-top: 1.4rem; max-width: 420px; font-size: 1.08rem; line-height: 1.75; }
.faq-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin-top: 2.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--ink);
}
.faq-quote::before {
  content: "\201C";
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.faq-quote em { color: var(--ink); }

.faq-list {
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.6rem 2.2rem;
  overflow: hidden; /* clip any mid-animation overflow so the locked height truly never changes */
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.35rem 2.6rem 1.35rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(192, 138, 45, 0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-ico svg { width: 22px; height: 22px; }
.faq-q {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p {
  overflow: hidden;
  background: rgba(192, 138, 45, 0.05);
  border: 1px solid rgba(192, 138, 45, 0.14);
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4c473e;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  padding: 2.4rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact-band a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  text-align: left;
}
.contact-band a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(192, 138, 45, 0.4);
}
.cb-ico {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 138, 45, 0.55);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.cb-ico svg { width: 26px; height: 26px; }
.contact-band a:hover .cb-ico { background: rgba(192, 138, 45, 0.1); }
.cb-text strong {
  font-family: "Playfair Display", serif;
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}
.cb-text span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: #a1772a;
}
.contact-band a:hover .cb-text strong { color: var(--gold); }
.cb-leaf {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%) rotate(14deg);
  width: 46px;
  height: auto;
  color: var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 760px) {
  .contact-band { grid-template-columns: 1fr; gap: 1.6rem; padding: 2rem 1.6rem; }
  .contact-band a { justify-content: flex-start; }
  .contact-band a + a::before { display: none; }
  .cb-leaf { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#closing-cta { color: rgba(255, 255, 255, 0.85); }

/* Eyebrow: — Let's Capture ♡ — */
.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.1rem;
}
.cta-line { width: 58px; height: 1px; background: var(--gold-soft); opacity: 0.65; }
.cta-script {
  font-family: "Kaushan Script", cursive;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}
.cta-heart { width: 30px; height: 30px; color: var(--gold-soft); margin-left: -0.3rem; }

#closing-cta .cta-title { font-size: clamp(2.9rem, 6.2vw, 5.2rem); line-height: 1.06; }
.cta-gold {
  font-family: "Playfair Display", serif;
  color: var(--gold-soft);
  position: relative;
  display: inline-block;
}
.cta-underline {
  display: block;
  width: 58%;
  height: auto;
  color: var(--gold-soft);
  margin: 0.1rem 0 0 34%;
}

/* Ornament rule: line — ❦ — line */
.cta-ornament {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 420px;
  margin: 1.7rem 0 0;
  color: var(--gold-soft);
  font-size: 1.15rem;
  line-height: 1;
}
.cta-ornament span { flex: 1; height: 1px; }
.cta-ornament span:first-child { background: linear-gradient(90deg, transparent, rgba(214, 175, 106, 0.75)); }
.cta-ornament span:last-child  { background: linear-gradient(90deg, rgba(214, 175, 106, 0.75), transparent); }

.cta-copy {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

/* Buttons: uppercase tracked, calendar/WhatsApp/phone icons */
#closing-cta .btn {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  border-radius: 7px;
  padding: 1rem 1.7rem;
}
#closing-cta .btn-gold {
  background: #b3894a;
  box-shadow: none;
}
#closing-cta .btn-gold:hover { background: #c29652; }
#closing-cta .btn-outline {
  border-color: rgba(214, 175, 106, 0.55);
  background: rgba(10, 10, 12, 0.35);
}
#closing-cta .btn-outline:hover { background: rgba(214, 175, 106, 0.12); }
.footer { color: rgba(255, 255, 255, 0.85); }
.footer .script-eyebrow { color: var(--gold-soft); }
.footer-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.footer-hero-text { max-width: 680px; }
/* Buttons sit on one row, allowed to run wider than the text column */
.footer-hero-text .hero-actions {
  margin-top: 2.2rem;
  flex-wrap: nowrap;
  width: max-content;
  max-width: none;
}
@media (max-width: 900px) {
  .footer-hero-text .hero-actions { flex-wrap: wrap; width: auto; }
}

.footer { border-top: 1px solid rgba(192, 138, 45, 0.5); }
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: center;
  padding: 3rem 0 2.4rem;
}
.footer-brand { text-align: center; }
.footer-brand img { width: 190px; margin-inline: auto; }
.footer-brand p {
  margin: 1rem auto 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
}
.footer-socials { display: flex; justify-content: center; gap: 0.9rem; margin-top: 1.3rem; }
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-socials svg { width: 19px; height: 19px; }
.footer-socials a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

.footer-middle {
  text-align: center;
  border-left: 1px solid rgba(192, 138, 45, 0.35);
  border-right: 1px solid rgba(192, 138, 45, 0.35);
  padding: 1.2rem clamp(1rem, 2.5vw, 2.4rem);
}
.footer-middle h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--gold-soft);
}
.footer-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 260px;
  margin: 0.9rem auto 0;
  color: var(--gold-soft);
  font-size: 1rem;
  line-height: 1;
}
.footer-orn span { flex: 1; height: 1px; }
.footer-orn span:first-child { background: linear-gradient(90deg, transparent, rgba(214, 175, 106, 0.75)); }
.footer-orn span:last-child  { background: linear-gradient(90deg, rgba(214, 175, 106, 0.75), transparent); }
.footer-lead { margin-top: 1rem; font-size: 1rem; color: rgba(255, 255, 255, 0.85); }
.footer-ctas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.8rem;
}
.footer-ctas a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.8rem;
}
.footer-ctas a + a { border-left: 1px solid rgba(192, 138, 45, 0.35); }
.fc-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 138, 45, 0.6);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  transition: background 0.25s ease;
}
.fc-ico svg { width: 22px; height: 22px; }
.footer-ctas a:hover .fc-ico { background: rgba(192, 138, 45, 0.15); }
.footer-ctas a strong { display: block; font-size: 0.95rem; color: #fff; }
.footer-ctas a span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }
.footer-ctas a:hover strong { color: var(--gold-soft); }

.footer-contact { font-style: normal; font-size: 0.92rem; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact p:last-child { margin-bottom: 0; }
.footer-contact svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--gold-soft); }
.footer-contact a:hover { color: var(--gold-soft); }

.footer-bottom {
  text-align: center;
  padding: 0 0 1.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.fb-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.fb-rule svg { width: 18px; height: 18px; }
.fb-rule span { flex: 1; height: 1px; }
.fb-rule span:first-child { background: linear-gradient(90deg, transparent, rgba(214, 175, 106, 0.6)); }
.fb-rule span:last-child  { background: linear-gradient(90deg, rgba(214, 175, 106, 0.6), transparent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 1.2rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-middle {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(192, 138, 45, 0.35);
    border-bottom: 1px solid rgba(192, 138, 45, 0.35);
    padding: 1.6rem 0;
  }
  .footer-contact { justify-self: center; }
}

@media (max-width: 840px) {
  .nav { position: relative; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: -4%; right: -4%;
    background: var(--dark-soft);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 40;
  }
  .nav-links.open { max-height: 420px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.9rem 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-side, .hero-socials { display: none; }
  .story-split, .connect-split, .faq-split, .footer-hero { grid-template-columns: 1fr; }
  .connect-art { width: 100%; margin-left: 0; }  /* no bleed on small screens */
  .stats-script { text-align: left; }
  /* Collage collapses to a simple 2-column flow on small screens. */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-item { grid-area: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { grid-column: auto; }
  .footer-brand img { margin-inline: auto; }
  .footer-socials { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
