/* =========================================================================
   On The Mark-et — shared stylesheet
   Real estate media company site (southern NH & Lakes Region)
   ========================================================================= */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  /* Palette */
  --cream: #FAF6EC;              /* main background */
  --ink: #2E3122;                /* base text color */
  --deep-moss: #3A3D28;          /* dark section bg / headings */
  --moss: #4B4E33;               /* links, nav, moss buttons */
  --gold: #B89B5A;               /* brass/gold accent */
  --cream-text: #F5EEDC;         /* light text on dark bg */
  --cream-text-2: #F0E0C0;       /* light text/labels on dark bg */
  --sand-panel: #F0E7D5;         /* alternating section bg */
  --sand-muted: #EDE6D4;         /* image placeholder bg */
  --sand-muted-2: #E5DDC7;       /* diagonal placeholder stripe */
  --sand-muted-3: #E7DFCB;       /* photo bg placeholder */
  --body-copy: #55583F;          /* paragraph text on light bg */
  --body-copy-soft: #5A5D44;     /* card copy */
  --muted-warm: #7A7B62;         /* secondary text */
  --muted-warm-2: #ADA791;       /* labels on cards */
  --muted-warm-3: #8A8570;       /* fine print / mono labels */
  --darkest: #23261A;            /* footer / darkest panels */
  --hero-eyebrow: #E6CE93;       /* hero eyebrow text on video */

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1280px;
  --header-h: 68px;
}

/* ---------- Reset ---------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--moss); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; }
p { margin: 0; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; }
::selection { background: var(--gold); color: #fff; }

@keyframes otm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.wrap { font-family: var(--font-sans); color: var(--ink); background: var(--cream); min-height: 100vh; }

/* ---------- Utility layout ------------------------------------------------*/
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 32px; }
.section-tight { padding: 100px 32px; }
.section-sm { padding: 70px 32px; }
.section-panel { background: var(--sand-panel); }
.section-dark { background: var(--deep-moss); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow-mono {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-warm-3);
}

h1.display, .h-display {
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 1.03;
  color: var(--deep-moss);
  margin: 22px 0 0;
}
.h-display--light { color: var(--cream-text); }

h2.h-xl, .h-xl {
  font-weight: 500;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  color: var(--deep-moss);
  margin: 20px 0 0;
}
h2.h-lg, .h-lg {
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  color: var(--deep-moss);
  margin: 20px 0 18px;
}
h2.h-md, .h-md {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  color: var(--deep-moss);
  margin: 0 0 18px;
}
h3.h-card, .h-card {
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-moss);
  margin: 18px 0 8px;
}

.body-copy {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--body-copy);
  font-weight: 300;
  margin: 0 0 18px;
}
.body-copy-sm {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-warm);
  font-weight: 300;
}
.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-copy);
  font-weight: 300;
  max-width: 62ch;
}
.lede--light { color: rgba(240,224,192,0.78); }

/* ---------- Buttons --------------------------------------------------------*/
.btn {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 38px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #23261A; }
.btn-gold:hover { background: var(--cream-text-2); color: #23261A; }
.btn-moss { background: var(--moss); color: var(--cream-text-2); }
.btn-moss:hover { background: var(--gold); color: #23261A; }
.btn-outline-light { border-color: rgba(240,224,192,0.5); color: var(--cream-text-2); }
.btn-outline-light:hover { border-color: var(--cream-text-2); background: rgba(240,224,192,0.1); color: var(--cream-text-2); }
.btn-outline-dark { border-color: var(--deep-moss); color: var(--deep-moss); background: transparent; }
.btn-outline-dark:hover { background: var(--deep-moss); color: var(--sand-panel); }
.btn-outline-moss { border-color: rgba(75,78,51,0.35); color: var(--moss); }
.btn-outline-moss:hover { border-color: var(--moss); background: rgba(75,78,51,0.06); color: var(--moss); }
.btn-lg { padding: 20px 56px; font-size: 15px; letter-spacing: 0.12em; }
.btn-sm { padding: 13px 26px; font-size: 13px; }

.link-underline {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: var(--ink);
}
.link-underline:hover { color: var(--gold); }

/* ---------- Header ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250,246,236,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(75,78,51,0.12);
  transition: background 320ms ease, border-color 320ms ease;
}
/* Home page starts transparent over the hero video, then swaps on scroll */
body.is-home .site-header {
  position: fixed;
  background: linear-gradient(to bottom, rgba(24,27,17,0.55), rgba(24,27,17,0));
  border-bottom: 1px solid rgba(240,224,192,0.14);
}
body.is-home .site-header.header--scrolled {
  position: fixed;
  background: rgba(250,246,236,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(75,78,51,0.12);
}
body.is-home .site-header .brand-name,
body.is-home .site-header .main-nav a,
body.is-home .site-header .tools-link { color: var(--cream-text); }
body.is-home .site-header.header--scrolled .brand-name,
body.is-home .site-header.header--scrolled .main-nav a,
body.is-home .site-header.header--scrolled .tools-link { color: var(--deep-moss); }
body.is-home { padding-top: 0; }
body:not(.is-home) { padding-top: 0; }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px clamp(16px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--deep-moss);
  transition: color 320ms ease;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: clamp(12px, 1.7vw, 26px);
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  font-size: clamp(11.5px, 1.05vw, 13.5px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  min-width: 0;
}
.main-nav a { color: var(--deep-moss); transition: color 320ms ease; }
.main-nav a:hover { color: var(--gold); }
.tools-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--deep-moss);
  transition: color 320ms ease;
}
.tools-link:hover { color: var(--gold); }
.header-book.btn { flex: 0 0 auto; white-space: nowrap; }
.nav-book-mobile { display: none; }

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  color: var(--deep-moss);
  transition: transform 200ms ease, opacity 200ms ease;
}
body.is-home .nav-toggle span { color: var(--cream-text); }
body.is-home .site-header.header--scrolled .nav-toggle span { color: var(--deep-moss); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) --------------------------------------------------*/
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: var(--deep-moss);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.14) saturate(1.06) contrast(1.02); }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,27,17,0.94) 0%, rgba(24,27,17,0.74) 28%, rgba(24,27,17,0.24) 56%, rgba(24,27,17,0.38) 80%, rgba(24,27,17,0.68) 100%),
              linear-gradient(to right, rgba(24,27,17,0.72) 0%, rgba(24,27,17,0.34) 40%, rgba(24,27,17,0.04) 66%, rgba(24,27,17,0) 80%);
}
.hero-content { position: relative; max-width: var(--max-width); margin: 0 auto; padding: 132px 32px 88px; width: 100%; }
.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero-kicker .rule { width: 34px; height: 1px; background: var(--hero-eyebrow); box-shadow: 0 1px 12px rgba(20,22,14,0.75); }
.hero-kicker .label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--hero-eyebrow); font-weight: 600; text-shadow: 0 1px 14px rgba(20,22,14,0.85);
}
.hero-title {
  font-weight: 500;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: #FBF6E9;
  margin: 0 0 24px;
  max-width: 15ch;
  text-shadow: 0 2px 30px rgba(20,22,14,0.55);
}
.hero-sub {
  font-size: 19px; line-height: 1.6; color: rgba(248,242,226,0.94);
  max-width: 58ch; margin: 0 0 40px; font-weight: 400;
  text-shadow: 0 1px 16px rgba(20,22,14,0.6);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; padding-top: 26px;
  border-top: 1px solid rgba(240,224,192,0.18);
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,224,192,0.7);
}

/* Small hero used on interior pages that carry a bg image */
.hero-simple {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: repeating-linear-gradient(135deg, #3F4230 0 14px, #464936 14px 28px);
}
.hero-simple img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-simple .hero-scrim2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(35,38,25,0.9), rgba(35,38,25,0.3)); }
.hero-simple .hero-content { padding: 0 32px 70px; }

/* Interior page title block */
.page-head { padding: 110px 32px 40px; max-width: var(--max-width); margin: 0 auto; }
.page-head--dark { background: var(--deep-moss); padding: 120px 32px 100px; }
.page-head--dark .container { max-width: var(--max-width); margin: 0 auto; }

/* ---------- Grids / two-col ---------------------------------------------*/
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2--tight { gap: 72px; }
.grid-3-media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.payment-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.ph-box { background: var(--sand-muted); overflow: hidden; }
.ph-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Section header row (eyebrow/heading + a trailing link) -------*/
.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; }

/* ---------- Carousel (image gallery with prev/next + thumbs) -------------*/
.carousel { display: grid; gap: 10px; align-content: start; }
/* A row of carousels: flexbox (not grid auto-fit) so a leftover single item
   at odd viewport widths grows to fill the row instead of leaving a gap. */
.carousel-row { display: flex; flex-wrap: wrap; gap: 32px; }
.carousel-row > .carousel { flex: 1 1 380px; min-width: 0; }
.carousel-row + .carousel-row { margin-top: 32px; }
.carousel-frame {
  position: relative;
  background: var(--sand-muted);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.carousel-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-frame.ratio-4-3 { aspect-ratio: 4/3; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(24,27,17,0.55); color: var(--cream-text);
  font-size: 19px; line-height: 1; cursor: pointer; backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: var(--moss); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-thumbs { display: flex; gap: 8px; overflow-x: auto; }
.carousel-thumbs img {
  width: 92px; height: 62px; object-fit: cover; flex: 0 0 auto; cursor: pointer;
  opacity: 0.5; outline: 1px solid rgba(75,78,51,0.16); outline-offset: -1px;
}
.carousel-thumbs img.is-active { opacity: 1; outline: 2px solid var(--gold); outline-offset: -1px; }
.carousel-count { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-warm-3); }

/* ---------- Testimonial marquee ------------------------------------------*/
.marquee-viewport {
  width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee { display: flex; width: max-content; animation: otm-marquee 78s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee.marquee--reverse { animation-direction: reverse; }
.marquee.marquee--slow { animation-duration: 58s; }
.marquee-track { display: flex; gap: 20px; padding-right: 20px; }
.testimonial-card {
  flex: 0 0 380px;
  background: var(--cream);
  border: 1px solid rgba(75,78,51,0.14);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.testimonial-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.stars { color: var(--gold); letter-spacing: 0.28em; font-size: 12px; }
.source-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-warm-2); }
.testimonial-quote {
  font-family: var(--font-serif); font-size: 20px; line-height: 1.52; color: var(--deep-moss); margin: 0 0 22px;
}
.testimonial-byline { margin-top: auto; display: flex; align-items: baseline; gap: 10px; }
.testimonial-name { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); font-weight: 600; }
.testimonial-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-warm-2); font-weight: 500; }

/* ---------- Stats ---------------------------------------------------------*/
.stats-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-num { font-family: var(--font-serif); font-size: clamp(46px, 5vw, 72px); line-height: 1; color: var(--gold); }
.stat-label { margin-top: 14px; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,224,192,0.75); }

/* ---------- Pay at Close (home) --------------------------------------------*/
.payment-mock { margin-top: 32px; max-width: 380px; background: #fff; border: 1px solid rgba(75,78,51,0.16); padding: 22px 22px 20px; }
.payment-mock-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-warm-3); font-weight: 600; margin-bottom: 16px; }
.payment-option { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(75,78,51,0.16); padding: 14px 16px; margin-bottom: 10px; }
.payment-option-dot { flex: 0 0 auto; width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid rgba(75,78,51,0.35); }
.payment-option--active { align-items: flex-start; border: 1.5px solid var(--moss); background: var(--cream); }
.payment-option--active .payment-option-dot { border-color: var(--moss); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.payment-option-dot-fill { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); display: block; }
.payment-option-title { display: block; font-size: 15px; color: var(--deep-moss); font-weight: 600; }
.payment-option-sub { display: block; font-size: 13px; line-height: 1.5; color: var(--muted-warm); font-weight: 300; margin-top: 3px; }
.payment-option-badge { flex: 0 0 auto; margin-left: auto; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-warm-3); border: 1px solid rgba(75,78,51,0.2); padding: 3px 6px; }
.payment-mock-cta { margin-top: 16px; background: var(--moss); color: var(--cream-text-2); text-align: center; padding: 12px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.payment-mock-caption { margin-top: 12px; font-size: 12.5px; line-height: 1.55; color: var(--muted-warm-2); font-weight: 300; }
.payment-checks { display: grid; gap: 12px; margin-bottom: 28px; }
.payment-check { display: flex; gap: 14px; align-items: baseline; }
.payment-check-mark { color: var(--gold); font-size: 13px; line-height: 1.6; }
.payment-check-text { font-size: 15.5px; line-height: 1.6; color: var(--body-copy); font-weight: 300; }
.payment-footer { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.payment-footnote { font-size: 13.5px; line-height: 1.6; color: var(--muted-warm-3); font-weight: 300; }

/* ---------- Tabs ----------------------------------------------------------*/
.tabs { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid rgba(75,78,51,0.16); }
.tab-btn {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 13px 22px; margin-bottom: -1px; border: 1px solid transparent; border-bottom: 2px solid transparent;
  background: transparent; color: var(--body-copy-soft); border-radius: 2px 2px 0 0; cursor: pointer;
}
.tab-btn.is-active {
  border-color: rgba(75,78,51,0.16); border-bottom: 2px solid var(--gold);
  background: var(--cream); color: var(--deep-moss);
}

/* ---------- Feature strip (2-col split cards) ------------------------------*/
.split-cards { display: grid; gap: 1px; background: rgba(75,78,51,0.16); border: 1px solid rgba(75,78,51,0.16); }
.split-card { background: var(--cream); padding: 20px 24px; }
.split-card h3 { font-size: 24px; font-weight: 600; margin: 0 0 6px; color: var(--deep-moss); }
.split-card p { font-size: 15px; line-height: 1.6; color: var(--body-copy-soft); font-weight: 300; margin: 0; }
.split-card--lg { padding: 26px 28px; }
.split-card--lg h3 { font-size: 25px; }

/* ---------- Coming soon / placeholder panel ------------------------------*/
.soon-panel {
  border: 1px solid rgba(75,78,51,0.16); background: var(--cream);
  padding: clamp(40px, 5vw, 72px); display: grid; gap: 22px; max-width: 760px;
}
.dashed-ph {
  aspect-ratio: 16/9; background: var(--sand-muted); border: 1px dashed rgba(75,78,51,0.35);
  display: flex; align-items: center; justify-content: center;
}
.stripe-ph {
  background: repeating-linear-gradient(135deg, var(--sand-muted) 0 11px, var(--sand-muted-2) 11px 22px);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- FAQ accordion (native <details>) --------------------------------*/
.faq-list { border-top: 1px solid rgba(75,78,51,0.18); }
.faq-item { border-bottom: 1px solid rgba(75,78,51,0.18); }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 30px 0; font-family: var(--font-serif); font-size: 30px; font-weight: 600; color: var(--deep-moss);
}
.faq-q:hover { color: var(--gold); }
.faq-chev { flex: none; color: var(--gold); font-size: 14px; line-height: 1.9; transition: transform 240ms ease; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a { margin: -6px 0 32px; max-width: 76ch; }
.faq-a p { font-size: 17px; line-height: 1.75; color: var(--body-copy); font-weight: 300; margin: 0; }

/* Nested sub-accordion (e.g. "Pay at Close FAQs" group) */
.faq-group > .faq-a { margin: 0 0 8px; max-width: none; }
.faq-sublist { border-top: 1px solid rgba(75,78,51,0.18); }
.faq-sublist .faq-item { padding-left: 22px; border-bottom: 1px solid rgba(75,78,51,0.18); }
.faq-sublist .faq-item:last-child { border-bottom: none; }
.faq-sublist .faq-q { font-size: 20px; padding: 20px 0; }
.faq-sublist .faq-a { margin: -4px 0 24px; }

/* Bio accordion (about/team) */
.bio-toggle {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  background: none; border: none; padding: 18px 0 16px; cursor: pointer; text-align: left; color: var(--moss);
  border-top: 1px solid rgba(75,78,51,0.16);
}
.bio-toggle:hover { color: var(--gold); }
.bio-toggle .label-stack { display: grid; gap: 7px; }
.bio-toggle .eyebrow-sm { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.bio-toggle .teaser { font-family: var(--font-serif); font-size: 19px; line-height: 1.4; color: var(--muted-warm); font-style: italic; }
.bio-toggle .cta { font-size: 12.5px; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.bio-toggle .sign { flex: none; width: 34px; height: 34px; border: 1px solid rgba(184,155,90,0.55); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 24px; color: var(--gold); }
.bio-body {
  display: grid; gap: 15px; font-size: 16.5px; line-height: 1.75; color: var(--body-copy); font-weight: 300;
  padding: 0 0 22px; border-left: 2px solid rgba(184,155,90,0.5); padding-left: 20px;
  max-height: 0; overflow: hidden; transition: max-height 420ms ease;
}
.bio-body p { margin: 0; }
.bio-card.is-open .bio-body { max-height: 3000px; }
.bio-body .lead-line { font-family: var(--font-serif); font-size: 22px; line-height: 1.4; color: var(--deep-moss); }

/* ---------- Coverage chips -------------------------------------------------*/
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid rgba(75,78,51,0.3); padding: 9px 18px; font-size: 14.5px; color: var(--moss); }

/* ---------- Legal pages (Terms / Privacy) -----------------------------------*/
.legal-intro { font-size: 19px; line-height: 1.7; color: var(--moss); font-weight: 300; margin: 0 0 8px; }
.legal-copy h2 {
  font-family: var(--font-serif); font-weight: 600; font-size: 32px; line-height: 1.15;
  margin: 56px 0 16px; color: var(--deep-moss); padding-top: 26px; border-top: 1px solid rgba(75,78,51,0.18);
}
.legal-copy h2.legal-h2--flush { margin-top: 0; padding-top: 0; border-top: none; }
.legal-copy h3 { font-family: var(--font-serif); font-weight: 600; font-size: 23px; line-height: 1.2; margin: 30px 0 10px; color: var(--moss); }
.legal-copy p { font-size: 16.5px; line-height: 1.8; color: var(--body-copy); font-weight: 300; margin: 0 0 16px; }
.legal-copy ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 7px; }
.legal-copy li { font-size: 16.5px; line-height: 1.75; color: var(--body-copy); font-weight: 300; }
.legal-copy a { border-bottom: 1px solid rgba(75,78,51,0.3); }
.legal-footer-note {
  margin-top: 64px; padding-top: 34px; border-top: 1px solid rgba(75,78,51,0.18);
  font-size: 15px; line-height: 1.8; color: var(--muted-warm-3); font-weight: 300;
}

/* ---------- Footer ----------------------------------------------------------*/
.site-footer { background: var(--darkest); padding: 80px 32px 44px; }
.footer-top {
  max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(240,224,192,0.14);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-serif); font-size: 22px; color: var(--cream-text-2); }
.footer-blurb { font-size: 15px; line-height: 1.7; color: rgba(240,224,192,0.6); font-weight: 300; margin: 0 0 20px; max-width: 40ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-col a { color: rgba(240,224,192,0.72); font-size: 15px; font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-serving { color: rgba(240,224,192,0.6); font-size: 14.5px; line-height: 1.75; font-weight: 300; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between;
  gap: 24px; font-size: 13px; color: rgba(240,224,192,0.4); font-weight: 300; flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(240,224,192,0.55); }
.footer-legal-links a:hover { color: var(--cream-text-2); }

/* ---------- Reveal-on-scroll ----------------------------------------------*/
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.16,.8,.3,1), transform 1000ms cubic-bezier(.16,.8,.3,1);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-72px); }
[data-reveal="right"] { transform: translateX(72px); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- Misc section-specific bits -------------------------------------*/
.numbered-step { display: flex; gap: 18px; }
.numbered-step .num { font-family: var(--font-serif); font-size: 22px; color: var(--gold); line-height: 1.3; }
.numbered-step p { font-size: 16.5px; line-height: 1.7; color: var(--body-copy); font-weight: 300; }
.video-embed { position: relative; aspect-ratio: 16/10; background: var(--darkest); border: 1px solid rgba(75,78,51,0.14); overflow: hidden; }
.video-embed.ratio-16-9 { aspect-ratio: 16/9; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.services-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.guides-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
.guides-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.guide-card { display: flex; flex-direction: column; }
.guide-card ul { margin: 0 0 22px; padding-left: 18px; display: grid; gap: 6px; }
.guide-card li { font-size: 14.5px; line-height: 1.6; color: var(--body-copy); font-weight: 300; }
.guide-card .btn { align-self: flex-start; margin-top: auto; }

.masonry-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; align-items: stretch; }
.masonry-gallery > * { background: var(--sand-muted); overflow: hidden; }
.masonry-gallery img, .masonry-gallery video { width: 100%; height: 100%; object-fit: cover; display: block; }
.span-2 { grid-column: span 2; }
.span-row-2 { grid-row: span 2; }

.home-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 16px;
}
.home-grid > * { background: var(--sand-muted); overflow: hidden; }
.home-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.contact-facts { border-top: 1px solid rgba(75,78,51,0.18); padding-top: 28px; display: grid; gap: 16px; font-size: 16px; color: var(--body-copy); font-weight: 300; }
.contact-facts .fact-label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-warm-3); margin-bottom: 4px; }
.contact-cta-block { display: grid; gap: 22px; margin: 34px 0 44px; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.about-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.review-panel { background: var(--sand-panel); border: 1px solid rgba(75,78,51,0.16); padding: 34px 34px 30px; height: 380px; display: flex; flex-direction: column; }
.review-panel-body { transition: opacity 220ms ease; }
.review-panel-body.is-fading { opacity: 0; }
.review-panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.review-panel-quote { font-family: var(--font-serif); font-size: 19px; line-height: 30px; color: var(--deep-moss); margin: 0 0 24px; height: 240px; overflow: hidden; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 56px; justify-items: start; align-items: start; }
.bio-card { display: grid; gap: 20px; max-width: 460px; align-self: start; align-content: start; }
.bio-photo { aspect-ratio: 4/5; max-height: 420px; background: var(--deep-moss); overflow: hidden; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-name { font-size: 30px; font-weight: 600; margin: 0 0 6px; color: var(--deep-moss); }
.bio-role { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.bio-desc { font-size: 16.5px; line-height: 1.7; color: var(--body-copy); font-weight: 300; margin: 14px 0 0; }

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .grid-2, .grid-2--tight,
  .about-hero-grid, .coverage-grid, .contact-grid, .payment-grid { grid-template-columns: 1fr; gap: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .services-grid-3, .guides-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-3-media { grid-template-columns: repeat(2, 1fr); }
  .home-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .home-grid > :first-child { grid-column: span 2; }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-book.btn { display: none; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(75,78,51,0.14);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  body.nav-open .main-nav a { color: var(--deep-moss) !important; padding: 10px 0; width: 100%; }
  body.nav-open .main-nav .nav-book-mobile {
    display: inline-block;
    width: auto;
    margin-top: 10px;
    padding: 13px 30px;
    color: #23261A !important;
  }

  .section, .page-head--dark { padding: 80px 24px; }
  .section-tight { padding: 64px 24px; }
  .hero-content { padding: 100px 24px 56px; }
  .hero-simple .hero-content { padding: 0 24px 48px; }
  .page-head { padding: 90px 24px 30px; }

  .grid-2, .grid-2--tight, .about-hero-grid, .coverage-grid, .contact-grid, .payment-grid { gap: 36px; }
  .services-grid-3, .guides-grid-2, .guides-grid-3 { grid-template-columns: 1fr; }
  .grid-3-media { grid-template-columns: 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .carousel-row { gap: 24px; }
  .carousel-row + .carousel-row { margin-top: 24px; }
  .home-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .home-grid > :first-child { grid-column: span 1; }
  .masonry-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .masonry-gallery .span-2 { grid-column: span 1; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .testimonial-card { flex: 0 0 300px; padding: 26px 22px; }

  .team-grid { gap: 40px; }
}

@media (max-width: 480px) {
  .hero-title { max-width: none; }
  .btn-lg { padding: 16px 32px; font-size: 13px; }
}
