/* ============================================================================
   Aurum — Clinic & Spa, Whitby
   Brand palette derived from the wordmark logo (#bca177 champagne gold)
   ============================================================================ */

:root {
  --gold:        #bca177;
  --gold-dark:   #97825e;
  --gold-soft:   #d9c6a4;

  --ink:         #2b2620;   /* warm near-black */
  --ink-soft:    #4a3f33;
  --text:        #3d3528;
  --muted:       #807060;

  --cream:       #faf6ef;
  --paper:       #f3ece0;
  --paper-dim:   #ece1cd;
  --white:       #ffffff;

  --clinic-bg:   #1f2a26;   /* deep forest — clinical, grounded */
  --clinic-bg-2: #2a3833;
  --clinic-ink:  #f3ece0;

  --spa-bg:      #f3ece0;
  --spa-bg-2:    #ece1cd;

  --radius:      4px;
  --radius-lg:   8px;
  --max:         1180px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);

  --shadow-sm:   0 1px 2px rgba(43, 38, 32, 0.04), 0 2px 6px rgba(43, 38, 32, 0.06);
  --shadow-lg:   0 4px 16px rgba(43, 38, 32, 0.08), 0 16px 40px rgba(43, 38, 32, 0.10);

  --font-serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:   "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Sticky footer: stack nav, main, footer; let main absorb leftover space. */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body > main { flex: 1 0 auto; }
body > .site-footer { flex-shrink: 0; }

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 0.75em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }
h4 { font-size: 0.95rem; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); }

p { margin: 0 0 1em; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.25rem;
}
.eyebrow--light { color: var(--gold-soft); }

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
}
.btn--gold       { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--ghost      { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover{ background: var(--ink); color: var(--cream); }
.btn--outline    { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--outline:hover { background: var(--cream); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
}
.link-arrow:hover { color: var(--ink); border-color: var(--ink); }

/* ---------------------------------------------------------------------------
   Section heads
   --------------------------------------------------------------------------- */
.section-head { max-width: 720px; margin: 0 0 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__sub { color: var(--muted); font-size: 1.05rem; }

/* ---------------------------------------------------------------------------
   Navigation
   --------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(188, 161, 119, 0.18);
  /* Extend the nav background up under the iPhone notch / Dynamic Island */
  padding-top: env(safe-area-inset-top);
}
.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding:
    1rem
    max(var(--gutter), env(safe-area-inset-right))
    1rem
    max(var(--gutter), env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--gold-dark);
  transition: color .25s ease;
}
.site-nav__logo:hover { color: var(--ink-soft); }
.site-nav__logo .aurum-logo {
  display: block;
  height: 44px;
  width: auto;
}

.site-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav__menu a {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 0.4rem 0;
  transition: color .2s ease;
}
.site-nav__menu a:hover { color: var(--gold-dark); }

/* Active-state underline */
.site-nav__menu a.is-active::after,
.site-nav__item--has-dropdown.has-active-child > .site-nav__link-with-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}
.site-nav__menu a.is-active { color: var(--gold-dark); }

/* ----- Dropdown ----- */
.site-nav__item { position: relative; }
.site-nav__item--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;     /* tight cluster — chevron reads as part of the label */
}
.site-nav__dropdown-toggle {
  background: none;
  border: none;
  padding: 0.4rem 0;        /* match the link's vertical padding, no horizontal */
  margin: 0;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .25s ease, color .25s ease;
}
.site-nav__dropdown-toggle:hover { color: var(--gold-dark); }
.site-nav__item--has-dropdown.is-open .site-nav__dropdown-toggle { transform: rotate(180deg); color: var(--gold-dark); }
.site-nav__dropdown-toggle svg { display: block; }

/* Invisible bridge over the visual gap so hover doesn't break when the
   cursor passes from the parent link toward the dropdown panel. */
.site-nav__item--has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
  /* No background — purely a hover bridge */
}

.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  min-width: 240px;
  margin: 0.5rem 0 0;        /* the visual gap */
  padding: 0.5rem;
  list-style: none;
  background: var(--cream);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(43, 38, 32, 0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;

  display: flex;
  flex-direction: column;
  gap: 1px;
}
.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown,
.site-nav__item--has-dropdown.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
}
.site-nav__dropdown li { margin: 0; padding: 0; }
.site-nav__dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background-color .2s ease, color .2s ease;
}
.site-nav__dropdown a:hover {
  background: rgba(188, 161, 119, 0.14);
  color: var(--gold-dark);
}
.site-nav__dropdown a.is-active {
  background: rgba(188, 161, 119, 0.20);
  color: var(--gold-dark);
}
/* Override the underline pseudo-element inside dropdown — it'd look wrong */
.site-nav__dropdown a.is-active::after { display: none; }
.site-nav__cta a {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .25s ease;
}
.site-nav__cta a:hover { background: var(--gold-dark); }

.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 2;  /* keep the hamburger clickable above the backdrop */
}
.site-nav__toggle span {
  width: 26px; height: 2px; background: var(--ink); display: block;
  transition: transform .3s ease, opacity .3s ease;
}
/* Hamburger → X transformation when open */
.site-nav.is-open .site-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .site-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop — sibling of .site-nav so the nav's backdrop-filter doesn't
   become this element's containing block. Sits below the nav (z-index:50)
   but above all page content. */
.site-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 20, 0.45);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
          backdrop-filter: blur(8px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
  z-index: 49;
  pointer-events: none;
}
body.nav-open .site-nav__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility 0s linear 0s;
}

/* Lock scroll on the page when the mobile nav is open */
body.nav-open { overflow: hidden; }

/* Auto-hide on scroll-down, reveal on scroll-up (mobile-style nav behavior).
   JS toggles .site-nav--hidden via scroll listener. */
.site-nav { transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1); }
.site-nav--hidden { transform: translateY(-100%); }

/* Trim vertical padding on small screens — sections feel cumulative on phones */
@media (max-width: 560px) {
  .two-paths, .philosophy, .founder, .gallery, .reviews, .closer,
  .featured, .about__intro, .about__story, .about__approach,
  .about__founder, .about__facts, .spa__intro, .spa__services,
  .spa__protocol, .spa__benefits, .spa__faq, .clinic__intro,
  .clinic__modalities, .clinic__conditions, .clinic__programs,
  .clinic__visit, .clinic__credentials, .program__intro,
  .program__audience, .program__protocol, .program__included,
  .program__faq, .program__pricing, .program__rooms {
    padding-top: clamp(2.5rem, 7vw, 4rem);
    padding-bottom: clamp(2.5rem, 7vw, 4rem);
  }
}

/* While the menu is open, force the nav fully opaque so its backdrop-filter
   doesn't tint the bar with the dark overlay behind it. */
body.nav-open .site-nav {
  background: var(--cream);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

@media (max-width: 1024px) {
  .site-nav__toggle { display: flex; }
  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(188, 161, 119, 0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    z-index: 2;       /* above the backdrop, inside nav stacking context */
    box-shadow: 0 12px 30px rgba(43, 38, 32, 0.12);

    /* slide-down reveal */
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s;
    display: flex;    /* always in flow; visibility/opacity controls show */
  }
  .site-nav__menu li {
    padding: 0;
    border-bottom: 1px solid rgba(188, 161, 119, 0.12);
  }
  .site-nav__menu li:last-child { border: none; }
  /* Full-row tap target: each <a> fills its <li>, padding gives ≥44px height.
     Excludes the CTA pill so it keeps its gold-pill shape. */
  .site-nav__menu li:not(.site-nav__cta) > a {
    display: block;
    padding: 0.95rem 0;
    min-height: 44px;
  }
  /* CTA pill on mobile — generous top space sets it apart as the primary action.
     Selector is .site-nav__menu li.site-nav__cta to beat the base "padding: 0" rule. */
  .site-nav__menu li.site-nav__cta {
    padding: 2rem 0 0.5rem;
    text-align: center;
    border-bottom: none;
    border-top: none;
  }
  .site-nav__menu li.site-nav__cta > a {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    min-height: 44px;
  }
  .site-nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform .35s ease, opacity .35s ease, visibility 0s linear 0s;
  }
  .site-nav__cta a { display: inline-block; }

  /* Mobile dropdown — nested accordion inside the mobile menu */
  .site-nav__item--has-dropdown {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0;
  }
  .site-nav__item--has-dropdown > .site-nav__link-with-toggle,
  .site-nav__item--has-dropdown > .site-nav__dropdown-toggle {
    display: inline-block;
  }
  /* The parent link + toggle button share the top row */
  .site-nav__item--has-dropdown {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .site-nav__item--has-dropdown > .site-nav__dropdown-toggle {
    padding: 0.75rem 0.5rem;
  }
  .site-nav__dropdown {
    grid-column: 1 / -1;
    position: static;
    margin: 0.5rem 0 0;
    padding: 0;
    background: rgba(188, 161, 119, 0.08);
    border: none;
    border-radius: var(--radius);
    box-shadow: none;

    /* Mobile open state controlled exclusively by is-open class, not :hover */
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .35s ease, padding .35s ease;
  }
  /* Disable the hover/focus-within rules from desktop on mobile */
  .site-nav__item--has-dropdown:hover .site-nav__dropdown,
  .site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-nav__item--has-dropdown.is-open .site-nav__dropdown {
    max-height: 600px;
    padding: 0.5rem;
  }
  .site-nav__dropdown li {
    padding: 0;
    border-bottom: none;
  }
  .site-nav__dropdown a {
    padding: 0.6rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* Desktop — backdrop never shows */
@media (min-width: 901px) {
  .site-nav__backdrop { display: none; }
}

/* Respect reduced-motion: skip the slide, just toggle visibility */
@media (prefers-reduced-motion: reduce) {
  .site-nav__menu,
  .site-nav__backdrop,
  .site-nav__toggle span {
    transition: none !important;
  }
}

/* ---------------------------------------------------------------------------
   Visually-hidden utility (for SEO h1 / screen-reader-only content)
   --------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------------
   Hero — full-bleed photo with a left-aligned cream card overlay
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(500px, 68vh, 720px);
  overflow: hidden;
  isolation: isolate;
}

/* Full-bleed photo */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/home-hero.jpg') center / cover no-repeat;
  animation: hero-kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-kenburns {
  0%   { background-position: 50% 50%; transform: scale(1.02); }
  100% { background-position: 55% 45%; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo { animation: none; transform: scale(1.02); }
}

/* Subtle directional tint — heavier on the left so the card sits cleanly,
   lighter on the right so the photo reads as itself */
.hero__photo-tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(250, 246, 239, 0.55) 0%,
      rgba(250, 246, 239, 0.18) 38%,
      rgba(31, 26, 20, 0.0) 60%,
      rgba(31, 26, 20, 0.10) 100%);
}

/* Container constrains the card — intentionally a touch wider than the nav's
   1180px max so the hero card breaks slightly outside the standard column. */
.hero__container {
  position: relative;
  max-width: calc(var(--max) + 8rem);  /* ~1308px on standard rem */
  margin: 0 auto;
  height: 100%;
  min-height: inherit;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  display: flex;
  align-items: center;
}

/* The cream card overlay */
.hero__card {
  max-width: 460px;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(250, 246, 239, 0.66);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
          backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(188, 161, 119, 0.25);
  border-radius: clamp(10px, 1.2vw, 14px);
  box-shadow: 0 24px 60px rgba(43, 38, 32, 0.18);
  color: var(--ink);
}

.hero__kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.25rem;
  position: relative;
  padding-left: 44px;
}
.hero__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 1.1rem;
  max-width: 16ch;
}

.hero__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0 0 1.75rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile: same cream card on full-bleed photo as desktop, just shorter
   and the card spans the full container width */
@media (max-width: 900px) {
  .hero { min-height: clamp(420px, 62vh, 560px); }

  /* Soften the tint into a top-down cream wash so the card sits cleanly */
  .hero__photo-tint {
    background: linear-gradient(180deg,
      rgba(250, 246, 239, 0.10) 0%,
      rgba(250, 246, 239, 0.30) 100%);
  }

  .hero__container {
    max-width: none;
    padding: clamp(2rem, 6vw, 3rem) var(--gutter);
  }
  .hero__card {
    max-width: none;
    padding: clamp(1.75rem, 5vw, 2.5rem);
  }
}

/* ---------------------------------------------------------------------------
   Two Paths (Clinic vs Spa)
   --------------------------------------------------------------------------- */
.two-paths {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.two-paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.path-card {
  position: relative;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card__kicker {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  opacity: 0.85;
}
.path-card__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.path-card__intro { font-size: 1.05rem; margin-bottom: 1.75rem; }
.path-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: grid;
  gap: 0.5rem;
}
.path-card__list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.98rem;
}
.path-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.path-card__cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  transition: gap .25s ease;
}
.path-card__cta:hover { gap: 0.85rem; }

/* clinical — deep, grounded */
.path-card--clinic {
  background: var(--clinic-bg);
  color: var(--clinic-ink);
}
.path-card--clinic .path-card__title,
.path-card--clinic .path-card__cta,
.path-card--clinic .path-card__kicker { color: var(--gold-soft); }

/* spa — warm, soft */
.path-card--spa {
  background: var(--paper);
  color: var(--ink-soft);
}
.path-card--spa .path-card__title,
.path-card--spa .path-card__cta { color: var(--gold-dark); }

@media (max-width: 800px) {
  .two-paths__grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Featured Programs & Sessions — horizontal scroller with native snap
   --------------------------------------------------------------------------- */
.featured {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--cream);
  overflow: hidden;
}
.featured__head {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.featured__head h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0;
}
.featured__sub {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 36ch;
  margin: 0;
}

/* The scroller — overflow-x with scroll-snap */
.featured__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 1rem var(--gutter) 1.5rem;
  /* Hint at additional content with a soft right-edge fade */
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 80px), transparent 100%);
}
/* Tame the scrollbar — slim, calm, only on hover */
.featured__scroller::-webkit-scrollbar { height: 6px; }
.featured__scroller::-webkit-scrollbar-track { background: transparent; }
.featured__scroller::-webkit-scrollbar-thumb {
  background: rgba(188, 161, 119, 0.0);
  border-radius: 999px;
  transition: background .25s ease;
}
.featured__scroller:hover::-webkit-scrollbar-thumb { background: rgba(188, 161, 119, 0.45); }
/* Firefox */
.featured__scroller { scrollbar-width: thin; scrollbar-color: rgba(188, 161, 119, 0.0) transparent; }
.featured__scroller:hover { scrollbar-color: rgba(188, 161, 119, 0.45) transparent; }

/* Cards */
.feature-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.feature-card__photo {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-dim);
}
/* Fallback gradient photos for cards without dedicated images */
.feature-card__photo--gradient-clinic {
  background:
    radial-gradient(circle at 30% 40%, rgba(217, 198, 164, 0.4), transparent 60%),
    linear-gradient(135deg, #2a3833 0%, #1f2a26 100%);
}
.feature-card__photo--gradient-clinic-alt {
  background:
    radial-gradient(circle at 70% 50%, rgba(188, 161, 119, 0.35), transparent 60%),
    linear-gradient(135deg, #1f2a26 0%, #2a3833 100%);
}
.feature-card__photo--gradient-spa {
  background:
    radial-gradient(circle at 40% 40%, rgba(188, 161, 119, 0.45), transparent 60%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-dim) 100%);
}

.feature-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.feature-card__kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
}
.feature-card__kicker--clinic { color: #6f5b3c; }
.feature-card__kicker--spa    { color: var(--gold-dark); }

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.feature-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.feature-card__meta {
  margin-top: auto !important;
  padding-top: 0.5rem;
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  letter-spacing: 0.06em;
}
.feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  transition: gap .25s ease;
}
.feature-card__cta:hover { gap: 0.85rem; }

/* Smaller breakpoints — slim card sizing for mobile scroller */
@media (max-width: 720px) {
  .featured__scroller {
    grid-auto-columns: 280px;
    gap: 1rem;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
  }
}

/* Tablet: switch from horizontal scroller to a 2-column grid */
@media (min-width: 721px) {
  .featured__scroller {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    overflow: visible;
    scroll-snap-type: none;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    -webkit-mask-image: none;
            mask-image: none;
  }
  .feature-card { scroll-snap-align: unset; }
}

/* Desktop: 3-column grid */
@media (min-width: 1080px) {
  .featured__scroller {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* ---------------------------------------------------------------------------
   Philosophy
   --------------------------------------------------------------------------- */
.philosophy {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.philosophy__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--gold-soft);
  margin: 0 0 2rem;
}
.philosophy__body {
  color: rgba(243, 236, 224, 0.75);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
   Founder
   --------------------------------------------------------------------------- */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.founder__photo {
  background-image: url('../images/amanda-narain.jpg');
  background-size: cover;
  background-position: center center;
  border-radius: var(--radius-lg);
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}
.founder__body p { color: var(--ink-soft); margin-bottom: 1.25rem; }
.founder__body em { color: var(--gold-dark); font-style: italic; }

@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; }
  .founder__photo { min-height: 320px; order: -1; }
}

/* ---------------------------------------------------------------------------
   Gallery
   --------------------------------------------------------------------------- */
.gallery {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.gallery .section-head { margin-bottom: 3rem; }
.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__grid figure:hover img { transform: scale(1.04); }

@media (max-width: 800px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   Reviews
   --------------------------------------------------------------------------- */
.reviews {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
/* Mobile-first: horizontal scroll-snap (matches Featured Programs pattern).
   Tablet+ flips to the 3-up grid below. */
.reviews__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 0.5rem var(--gutter) 1.25rem;
  margin: 0 calc(-1 * var(--gutter));
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
}
.reviews__grid::-webkit-scrollbar { height: 6px; }
.reviews__grid::-webkit-scrollbar-track { background: transparent; }
.reviews__grid::-webkit-scrollbar-thumb {
  background: rgba(188, 161, 119, 0.0);
  border-radius: 999px;
  transition: background .25s ease;
}
.reviews__grid:hover::-webkit-scrollbar-thumb { background: rgba(188, 161, 119, 0.45); }
.reviews__grid { scrollbar-width: thin; scrollbar-color: rgba(188, 161, 119, 0.0) transparent; }
.reviews__grid:hover { scrollbar-color: rgba(188, 161, 119, 0.45) transparent; }

.review {
  scroll-snap-align: start;
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.review blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  quotes: none;
}
.review figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: auto;
}

/* Tablet+: revert to the static 3-up grid */
@media (min-width: 720px) {
  .reviews__grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .review { scroll-snap-align: unset; }
}

/* ---------------------------------------------------------------------------
   Closer
   --------------------------------------------------------------------------- */
.closer {
  background:
    linear-gradient(180deg, rgba(31, 42, 38, 0.85), rgba(31, 42, 38, 0.95)),
    url('../images/atmosphere-dark-warm.jpg') center / cover no-repeat;
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  text-align: center;
}
.closer__inner { max-width: 720px; margin: 0 auto; }
.closer h2 { color: var(--cream); }
.closer p { color: rgba(243, 236, 224, 0.8); margin-bottom: 2rem; font-size: 1.1rem; }
.closer__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   Footer — horizontal closing card (brand · action)
   --------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.10), transparent 65%),
    var(--ink);
  color: rgba(243, 236, 224, 0.72);
  padding: clamp(2.5rem, 5vw, 3.75rem) var(--gutter) 1.25rem;
  overflow: hidden;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.85fr 0.9fr;
  align-items: start;
  gap: clamp(2rem, 4vw, 3.25rem);
  position: relative;
}

/* Vertical gold hairline dividers between every zone */
.site-footer__col { position: relative; }
.site-footer__col::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: calc(clamp(2rem, 4vw, 3.25rem) / -2);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(188, 161, 119, 0.35), transparent);
}

/* Brand column — left */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Shared column styling (Visit / Explore / Connect) */
.site-footer__col h4 {
  color: var(--gold-soft);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.site-footer__col ul,
.site-footer ul.site-footer__col ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col a {
  color: rgba(243, 236, 224, 0.78);
  font-size: 0.92rem;
  transition: color .2s ease;
}
.site-footer__col a:hover { color: var(--gold-soft); }
.site-footer__col address {
  font-style: normal;
  color: rgba(243, 236, 224, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 0.85rem;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.site-footer__logo .aurum-logo {
  display: block;
  height: 64px;
  width: auto;
}
.site-footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.45;
  color: var(--gold-soft);
  margin: 0;
}

/* Connect / Action column */
.site-footer__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* Outlined gold CTA pill */
.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(188, 161, 119, 0.45);
  border-radius: 999px;
  transition: gap .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.site-footer__cta:hover {
  gap: 0.95rem;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* Social — small, quiet, no border */
ul.site-footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  grid-template-columns: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(243, 236, 224, 0.5);
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.site-footer__social a:hover {
  color: var(--ink);
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.site-footer__social svg { display: block; }

/* Base bar — copyright + legal, full-width */
.site-footer__base {
  max-width: var(--max);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243, 236, 224, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(243, 236, 224, 0.38);
}
.site-footer__base p { margin: 0; }
ul.site-footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: none;
}
.site-footer__legal a {
  color: rgba(243, 236, 224, 0.5);
  font-size: 0.78rem;
  transition: color .2s ease;
}
.site-footer__legal a:hover { color: var(--gold-soft); }

/* Tablet: brand spans the top, three info columns sit in a row below.
   Children in source order: 1=brand, 2=Visit, 3=Explore, 4=Connect.
   Hide divider on whichever column is leftmost in the bottom row. */
@media (max-width: 1080px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(243, 236, 224, 0.06);
    margin-bottom: 0.5rem;
  }
  .site-footer__brand .site-footer__tagline { max-width: 40ch; }
  /* Visit is now the leftmost in the bottom row → kill its left divider */
  .site-footer__inner > :nth-child(2)::before { display: none; }
}

/* Small tablet: drop to two columns. Bottom rows are (Visit | Explore) and (Connect | _).
   Hide dividers on Visit (#2) and Connect (#4) — both are leftmost in their rows. */
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__inner > :nth-child(2)::before,
  .site-footer__inner > :nth-child(4)::before { display: none; }
}

/* Mobile: full stack, hide all dividers, recentre */
@media (max-width: 480px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__col::before { display: none; }
  .site-footer__brand,
  .site-footer__col { align-items: center; }
  .site-footer__col address { text-align: center; }
}
@media (max-width: 520px) {
  .site-footer__base { justify-content: center; text-align: center; }
}

/* ---------------------------------------------------------------------------
   Legal — Privacy / Terms (shared editorial style)
   --------------------------------------------------------------------------- */
.legal {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.10), transparent 60%),
    var(--cream);
  overflow: hidden;
}

/* Page header */
.legal__head {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.legal__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
}
.legal__meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2rem;
}
.legal__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
}

/* Decorative gold hairline beneath the head */
.legal__head::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin: 2.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Body — single column, generous measure */
.legal__body {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.legal__body section {
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(188, 161, 119, 0.18);
}
.legal__body section:last-child { border-bottom: none; }

.legal__body h2 {
  position: relative;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}
/* Tiny gold tick before each section heading */
.legal__body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.legal__body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.legal__body p:last-child { margin-bottom: 0; }

.legal__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.65rem;
}
.legal__body ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.legal__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.legal__body ul li strong { color: var(--ink); }

.legal__body a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(188, 161, 119, 0.35);
  transition: color .2s ease, border-color .2s ease;
}
.legal__body a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.legal__body em { color: var(--ink); font-style: italic; }
.legal__body strong { color: var(--ink); font-weight: 700; }

/* Contact block — slightly elevated end-of-section card */
.legal__contact {
  display: inline-block;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.25);
  border-radius: var(--radius-lg);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------------------
   Reveal-on-scroll utility (paired with IntersectionObserver in main.js)
   --------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* Soft variant — fade only, no displacement (good for body paragraphs) */
.reveal--soft { transform: none; }

/* Scale variant — for images & cards, adds a gentle zoom-in */
.reveal--scale { transform: translateY(0) scale(0.96); }
.reveal--scale.is-revealed { transform: translateY(0) scale(1); }

/* Slide-from-left / right — for split layouts */
.reveal--left  { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal--left.is-revealed,
.reveal--right.is-revealed { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------------------------------------------------------------------------
   Clinic page (APN Clinic) — grounded, deeper visual register than the spa
   --------------------------------------------------------------------------- */
.clinic {
  background:
    radial-gradient(ellipse at top, rgba(43, 38, 32, 0.05), transparent 60%),
    var(--cream);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Hero — same banner pattern as spa, with a deeper overlay for clinical gravity */
.clinic__hero {
  position: relative;
  min-height: clamp(420px, 60vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.clinic__hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/atmosphere-clinic-room.jpg') center / cover no-repeat;
  z-index: -2;
  transform: scale(1.02);
}
.clinic__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 38, 0.40) 0%, rgba(31, 42, 38, 0.78) 100%);
  z-index: -1;
}
.clinic__hero-inner {
  max-width: 720px;
  text-align: center;
  color: var(--cream);
}
.clinic__hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}
.clinic__hero-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--gold-soft);
  margin: 0 auto;
  max-width: 44ch;
}

/* Intro */
.clinic__intro {
  max-width: 820px;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
  text-align: center;
}
.clinic__intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.clinic__intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.clinic__intro em { color: var(--gold-dark); font-style: italic; }

/* Modalities grid — 2×2 */
.clinic__modalities {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.clinic__modality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.modality {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.18);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.modality:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.modality__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--clinic-bg);
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}
.modality__icon svg { width: 22px; height: 22px; }
.modality__kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.modality h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.25;
}
.modality p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 800px) { .clinic__modality-grid { grid-template-columns: 1fr; } }

/* Conditions */
.clinic__conditions {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.clinic__conditions .section-head { max-width: 720px; }
.clinic__condition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
}
.clinic__condition-list li {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(188, 161, 119, 0.25);
}
.clinic__condition-list h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0.6rem;
}
.clinic__condition-list p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) { .clinic__condition-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .clinic__condition-list { grid-template-columns: 1fr; } }

/* Programs */
.clinic__programs {
  background: var(--paper);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.clinic__programs .section-head { margin-bottom: 3rem; }
.clinic__program-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  padding: 2.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(188, 161, 119, 0.22);
  display: flex;
  flex-direction: column;
}
.program-card__duration {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0.35rem 0.75rem;
  background: var(--paper);
  border-radius: 999px;
  margin: 0 0 1.25rem;
  align-self: flex-start;
}
.program-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.25;
}
.program-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.program-card__for {
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(188, 161, 119, 0.2);
  font-size: 0.92rem;
}
.program-card__for strong { color: var(--ink); }

@media (max-width: 900px) { .clinic__program-grid { grid-template-columns: 1fr; } }

/* Visit steps */
.clinic__visit {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.clinic__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.clinic__steps li {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(188, 161, 119, 0.18);
}
.clinic__step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}
.clinic__steps h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.clinic__steps p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) { .clinic__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .clinic__steps { grid-template-columns: 1fr; } }

/* Credentials — dark forest band with clinician callout */
.clinic__credentials {
  background: var(--clinic-bg);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.clinic__credentials-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.clinic__credentials h2 {
  color: var(--gold-soft);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin: 0 0 1.25rem;
}
.clinic__credentials p {
  color: rgba(243, 236, 224, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.clinic__credentials .link-arrow {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}
.clinic__credentials .link-arrow:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.clinic__credentials-photo {
  background: url('../images/amanda-narain.jpg') center center / cover no-repeat;
  border-radius: var(--radius-lg);
  min-height: 460px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .clinic__credentials-inner { grid-template-columns: 1fr; }
  .clinic__credentials-photo { min-height: 340px; order: -1; }
}

/* Closer */
.clinic__closer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.clinic__closer-inner {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.clinic__closer-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 38, 0.82), rgba(31, 42, 38, 0.95)),
    url('../images/atmosphere-dark-warm.jpg') center / cover no-repeat;
  z-index: -1;
}
.clinic__closer-inner h2 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.clinic__closer-inner p {
  color: rgba(243, 236, 224, 0.8);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.clinic__closer-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   Program detail pages — shared template for individual clinic & spa programs
   Variants:  .program--clinic  (deep forest accents)
              .program--spa     (warm paper, gold)
   --------------------------------------------------------------------------- */
.program {
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.08), transparent 60%),
    var(--cream);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* ----- HERO ----- */
.program__hero {
  position: relative;
  min-height: clamp(440px, 60vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.program__hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.program--clinic .program__hero-photo { background-image: url('../images/clinic-hero.jpg'); }
.program--spa    .program__hero-photo { background-image: url('../images/spa-hero.jpg'); }

.program__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.program--clinic .program__hero-overlay {
  background: linear-gradient(180deg, rgba(31, 42, 38, 0.40) 0%, rgba(31, 42, 38, 0.80) 100%);
}
.program--spa .program__hero-overlay {
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.30) 0%, rgba(31, 26, 20, 0.65) 100%);
}

.program__hero-inner {
  max-width: 760px;
  text-align: center;
  color: var(--cream);
}
.program__hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.25rem;
}
.program__hero-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  color: rgba(243, 236, 224, 0.92);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.program__hero-lede em { color: var(--gold-soft); font-style: italic; }

/* Breadcrumb */
.program__crumb {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.65);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.program__crumb a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color .2s ease;
}
.program__crumb a:hover { color: var(--cream); }
.program__crumb span[aria-hidden] { opacity: 0.5; }

/* Hero meta chips */
.program__hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.program__chip {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0.45rem 0.95rem;
  background: rgba(31, 26, 20, 0.35);
  border: 1px solid rgba(188, 161, 119, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ----- INTRO ----- */
.program__intro {
  max-width: 760px;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
  text-align: center;
}
.program__intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.program__intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.program__intro em { color: var(--gold-dark); font-style: italic; }
.program__intro-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ----- WHO THIS IS FOR ----- */
.program__audience {
  /* +8rem breakout + compensate for the section's own horizontal padding,
     since box-sizing: border-box is global */
  max-width: calc(var(--max) + 8rem + (2 * var(--gutter)));
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
}
.program__audience .section-head { max-width: 720px; margin-bottom: 2.5rem; }
.program__audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
}
.program__audience-list li {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(188, 161, 119, 0.22);
}
.program__audience-list h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.program__audience-list p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) { .program__audience-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .program__audience-list { grid-template-columns: 1fr; } }

/* ----- PROTOCOL — week/cycle phase cards ----- */
.program__protocol {
  background: var(--paper);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
  margin-bottom: clamp(4rem, 7vw, 6rem);
}
.program__protocol .section-head { margin-bottom: 3rem; }
.program__phases {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: calc(var(--max) + 8rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.phase {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.2);
  border-radius: var(--radius-lg);
}
.phase__num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.4rem;
}
.phase__weeks {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.phase h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}
.phase p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1000px) { .program__phases { grid-template-columns: 1fr 1fr; } }
/* On phones, swipe the phase cards horizontally rather than stacking vertically */
@media (max-width: 560px)  {
  .program__phases {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 270px;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    padding: 0.5rem var(--gutter) 1rem;
    margin: 0 calc(-1 * var(--gutter));
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
  }
  .program__phases .phase { scroll-snap-align: start; }
}

/* ----- WHAT'S INCLUDED — dark band ----- */
.program__included {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
  margin-bottom: clamp(4rem, 7vw, 6rem);
}
.program--clinic .program__included { background: var(--clinic-bg); }

.program__included-inner {
  max-width: calc(var(--max) + 8rem);
  margin: 0 auto;
}
.program__included header { text-align: center; margin-bottom: 3rem; }
.program__included h2 { color: var(--cream); }
.program__included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.program__included-list h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-soft);
  margin: 0 0 0.6rem;
}
.program__included-list p {
  color: rgba(243, 236, 224, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) { .program__included-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .program__included-list { grid-template-columns: 1fr; } }

/* ----- ROOMS GRID — Oceania vs Amazonia comparison ----- */
.program__rooms {
  max-width: calc(var(--max) + 8rem);
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
}
.program__rooms .section-head { margin-bottom: 3rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.room-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.room-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.room-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.room-card__theme {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.5rem;
}
.room-card__body {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.room-card__body:last-child { margin-bottom: 0; }
.room-card em { color: var(--gold-dark); font-style: italic; }

@media (max-width: 720px) { .rooms-grid { grid-template-columns: 1fr; } }

/* Two-phase variant of program__phases (for sessions with just 2 stages) */
.program__phases--two {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
}
@media (max-width: 720px) { .program__phases--two { grid-template-columns: 1fr; } }

/* ----- PRICING GRID — used on spa session pages ----- */
.program__pricing {
  max-width: calc(var(--max) + 8rem);
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
}
.program__pricing .section-head { margin-bottom: 2.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}
.pricing-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.pricing-card__group {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
}
.pricing-card__price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.6rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.pricing-card__plus {
  font-size: 0.65em;
  color: var(--gold-dark);
  vertical-align: top;
  margin-left: 2px;
}
.pricing-card__detail {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    gap: 0.75rem;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    padding: 0.5rem var(--gutter) 1rem;
    margin: 0 calc(-1 * var(--gutter));
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
  }
  .pricing-grid .pricing-card { scroll-snap-align: start; }
}

/* ----- FAQ ----- */
.program__faq {
  max-width: 820px;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
}
.program__faq .section-head { margin-bottom: 2.5rem; }
.program__faq-list { display: grid; gap: 0.75rem; }
.program-faq {
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color .25s ease;
}
.program-faq[open] { border-color: var(--gold); }
.program-faq summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color .25s ease;
}
.program-faq summary::-webkit-details-marker { display: none; }
.program-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform .25s ease;
}
.program-faq[open] summary { color: var(--gold-dark); }
.program-faq[open] summary::after { content: "−"; }
.program-faq summary:hover { color: var(--gold-dark); }
.program-faq p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ----- CLOSER ----- */
.program__closer {
  max-width: calc(var(--max) + 8rem + (2 * var(--gutter)));
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.program__closer-inner {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.program__closer-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.program--clinic .program__closer-inner::before {
  background:
    linear-gradient(180deg, rgba(31, 42, 38, 0.85), rgba(31, 42, 38, 0.95)),
    url('../images/atmosphere-dark-warm.jpg') center / cover no-repeat;
}
.program--spa .program__closer-inner::before {
  background:
    linear-gradient(180deg, rgba(31, 26, 20, 0.8), rgba(31, 26, 20, 0.92)),
    url('../images/atmosphere-dark-warm.jpg') center / cover no-repeat;
}
.program__closer-inner h2 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 1rem;
}
.program__closer-inner p {
  color: rgba(243, 236, 224, 0.82);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.program__closer-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   Spa page
   --------------------------------------------------------------------------- */
.spa {
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.10), transparent 60%),
    var(--cream);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Hero */
.spa__hero {
  position: relative;
  min-height: clamp(420px, 60vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.spa__hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/atmosphere-spa-entrance.jpg') center / cover no-repeat;
  z-index: -2;
  transform: scale(1.02);
}
.spa__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.22) 0%, rgba(31, 26, 20, 0.65) 100%);
  z-index: -1;
}
.spa__hero-inner {
  max-width: 720px;
  text-align: center;
  color: var(--cream);
}
.spa__hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}
.spa__hero-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--gold-soft);
  margin: 0 auto;
  max-width: 40ch;
}

/* Intro */
.spa__intro {
  max-width: 760px;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
  text-align: center;
}
.spa__intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.spa__intro p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.spa__intro em { color: var(--gold-dark); font-style: italic; }

/* Services grid */
.spa__services {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.spa__service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.spa-service {
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.spa-service:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.spa-service__photo {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-dim);
}
/* Fallback gradient photos for services without real images */
.spa-service__photo--gradient {
  background:
    radial-gradient(circle at 30% 40%, rgba(188, 161, 119, 0.45), transparent 60%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-dim) 100%);
}
.spa-service__photo--alt {
  background:
    radial-gradient(circle at 70% 50%, rgba(43, 38, 32, 0.18), transparent 60%),
    linear-gradient(135deg, var(--paper-dim) 0%, #d9c6a4 100%);
}

.spa-service__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.spa-service__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.spa-service__icon svg { width: 22px; height: 22px; }
.spa-service__kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.spa-service h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink);
}
.spa-service__intro {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.spa-service__list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.spa-service__list li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0.35rem 0.75rem;
  background: var(--paper);
  border-radius: 999px;
}

@media (max-width: 1080px) {
  .spa__service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .spa__service-grid { grid-template-columns: 1fr; }
}

/* Protocol — four step cards */
.spa__protocol {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.spa__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.spa__steps li {
  padding: 2rem 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  position: relative;
}
.spa__step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}
.spa__steps h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.spa__steps p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .spa__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .spa__steps { grid-template-columns: 1fr; }
}

/* Benefits — dark strip */
.spa__benefits {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.spa__benefits-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.spa__benefits header { text-align: center; margin-bottom: 3rem; }
.spa__benefits h2 { color: var(--cream); }
.spa__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.benefit { text-align: left; }
.benefit__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
}
.benefit__body {
  color: rgba(243, 236, 224, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) { .spa__benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .spa__benefits-grid { grid-template-columns: 1fr; } }

/* FAQ */
.spa__faq {
  max-width: 820px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.spa__faq-list { display: grid; gap: 0.75rem; }
.spa-faq {
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color .25s ease;
}
.spa-faq[open] { border-color: var(--gold); }
.spa-faq summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color .25s ease;
}
.spa-faq summary::-webkit-details-marker { display: none; }
.spa-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform .25s ease;
}
.spa-faq[open] summary { color: var(--gold-dark); }
.spa-faq[open] summary::after { content: "−"; }
.spa-faq summary:hover { color: var(--gold-dark); }
.spa-faq p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* Closer */
.spa__closer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.spa__closer-inner {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.spa__closer-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 20, 0.78), rgba(31, 26, 20, 0.92)),
    url('../images/atmosphere-dark-warm.jpg') center / cover no-repeat;
  z-index: -1;
}
.spa__closer-inner h2 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.spa__closer-inner p {
  color: rgba(243, 236, 224, 0.8);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.spa__closer-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   About page
   --------------------------------------------------------------------------- */
.about {
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.10), transparent 60%),
    var(--cream);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Hero banner — mirror the contact-page treatment */
.about__hero {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.about__hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/atmosphere-reception.jpg') center / cover no-repeat;
  z-index: -2;
  transform: scale(1.02);
}
.about__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.30) 0%, rgba(31, 26, 20, 0.70) 100%);
  z-index: -1;
}
.about__hero-inner {
  max-width: 760px;
  text-align: center;
  color: var(--cream);
}
.about__hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
}
.about__hero-lede {
  color: rgba(243, 236, 224, 0.88);
  font-size: 1.2rem;
  max-width: 56ch;
  margin: 0 auto;
}

/* Intro block — centered, generous */
.about__intro {
  max-width: 760px;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: 0 var(--gutter);
  text-align: center;
}
.about__intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.about__intro p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.about__intro em { color: var(--gold-dark); font-style: italic; }

/* Our Story — split layout, image left, text right */
.about__story {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__story-photo {
  background: url('../images/atmosphere-arched-doorway.jpg') center / cover no-repeat;
  border-radius: var(--radius-lg);
  min-height: 460px;
  box-shadow: var(--shadow-lg);
}
.about__story-body h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.about__story-body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about__story { grid-template-columns: 1fr; }
  .about__story-photo { min-height: 320px; order: -1; }
}

/* Three principles */
.about__approach {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
}
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  padding: 2.25rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(188, 161, 119, 0.18);
}
.pillar__num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold);
  margin: 0 0 1rem;
}
.pillar h3 {
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 800px) { .about__pillars { grid-template-columns: 1fr; } }

/* Founder — full bio with photo */
.about__founder {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about__founder-photo {
  background: url('../images/amanda-narain.jpg') center top / cover no-repeat;
  border-radius: var(--radius-lg);
  min-height: 580px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 6rem;
}
.about__founder-body h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.about__founder-body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.about__founder-body p:last-child { margin-bottom: 0; }
.about__founder-body em { color: var(--gold-dark); font-style: italic; }

@media (max-width: 900px) {
  .about__founder { grid-template-columns: 1fr; }
  .about__founder-photo { min-height: 360px; position: static; }
}

/* Facts strip */
.about__facts {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.about__facts-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}
.fact { padding: 0 0.5rem; position: relative; }
.fact + .fact::before {
  content: "";
  position: absolute;
  left: calc(clamp(1.5rem, 3vw, 3rem) / -2);
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(188, 161, 119, 0.35), transparent);
}
.fact__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.fact__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 760px) {
  .about__facts-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fact:nth-child(odd)::before { display: none; }
  .fact:nth-child(3)::before { display: none; }
}
@media (max-width: 420px) {
  .about__facts-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fact::before { display: none !important; }
}

/* Closing CTA */
.about__closer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about__closer-inner {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.about__closer-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 38, 0.82), rgba(31, 42, 38, 0.94)),
    url('../images/atmosphere-dark-warm.jpg') center / cover no-repeat;
  z-index: -1;
}
.about__closer-inner h2 {
  color: var(--cream);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}
.about__closer-inner p {
  color: rgba(243, 236, 224, 0.8);
  max-width: 50ch;
  margin: 0 auto 2rem;
}
.about__closer-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   Contact page
   --------------------------------------------------------------------------- */
.contact {
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.10), transparent 60%),
    var(--cream);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Hero banner — full-width photo with overlay text */
.contact__hero {
  position: relative;
  min-height: clamp(360px, 50vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.contact__hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/atmosphere-tea-tray.jpg') center / cover no-repeat;
  z-index: -2;
  transform: scale(1.02);
}
.contact__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 20, 0.25) 0%, rgba(31, 26, 20, 0.65) 100%);
  z-index: -1;
}
.contact__hero-inner {
  max-width: 720px;
  text-align: center;
  color: var(--cream);
}
.contact__hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
}
.contact__hero-inner .contact__lede {
  color: rgba(243, 236, 224, 0.88);
  font-size: 1.15rem;
  max-width: 58ch;
  margin: 0 auto;
}
.contact__hero-inner .contact__lede em {
  color: var(--gold-soft);
  font-style: italic;
}

/* Old centered head fallback (kept in case anything still references it) */
.contact__lede em { color: var(--gold-dark); font-style: italic; }

/* Quick action cards */
.contact__quick {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.22);
  border-radius: var(--radius-lg);
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.quick-card__icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.quick-card__icon svg { width: 20px; height: 20px; }
.quick-card__label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.quick-card__sub { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 720px) { .contact__quick { grid-template-columns: 1fr; } }

/* Split section: details + form */
.contact__split {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__details h2,
.contact__form-wrap h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1.5rem;
}
.contact__list li { display: flex; flex-direction: column; gap: 0.35rem; }
.contact__list-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.contact__list address { font-style: normal; line-height: 1.65; color: var(--ink); }
.contact__list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0;  /* belt-and-suspenders: kill any inherited underline */
  transition: color .2s ease;
}
.contact__list a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  margin: 0;
  font-size: 0.95rem;
}
.contact__hours dt { color: var(--muted); white-space: nowrap; }
.contact__hours dd { margin: 0; color: var(--ink); }

.contact__note {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(188, 161, 119, 0.2);
  margin: 0;
}

/* Form */
.contact__form-wrap { position: relative; }
.contact__form-lede { color: var(--ink-soft); margin: 0 0 2rem; }
.contact__form {
  display: grid;
  gap: 1.25rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.field__optional {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(188, 161, 119, 0.35);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact__form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2397825e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.contact__form textarea { resize: vertical; min-height: 140px; }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 161, 119, 0.18);
}
.field--error input,
.field--error select,
.field--error textarea {
  border-color: #b85541;
  background: #fdf6f4;
}
.field__error {
  font-size: 0.85rem;
  color: #b85541;
  margin-top: 0.25rem;
}

.contact__form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.contact__privacy-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  max-width: 30ch;
}
.contact__privacy-note a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(188, 161, 119, 0.35);
}

/* Success state replaces the form */
.contact__success {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(188, 161, 119, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}
.contact__success h3 {
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
}
.contact__success p {
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 40ch;
}

@media (max-width: 900px) {
  .contact__split { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* Map section */
.contact__map-section {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.contact__map-section .section-head { margin-bottom: 2.5rem; }
.contact__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(188, 161, 119, 0.25);
  box-shadow: var(--shadow-lg);
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* gentle warm tint that fits the brand without obscuring detail */
  filter: saturate(0.85) contrast(0.95);
}
.contact__map-cta {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(43, 38, 32, 0.25);
  transition: background-color .25s ease, color .25s ease, gap .25s ease;
}
.contact__map-cta:hover {
  background: var(--gold);
  color: var(--ink);
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .contact__map { aspect-ratio: 4 / 5; max-height: none; }
  .contact__map-cta {
    bottom: 0.75rem; right: 0.75rem;
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
  }
}

/* ---------------------------------------------------------------------------
   404 — Page Not Found (with elegant motion)
   --------------------------------------------------------------------------- */
.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  background:
    radial-gradient(ellipse at top, rgba(188, 161, 119, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(31, 42, 38, 0.05), transparent 70%),
    var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Drifting decorative orbs (purely background atmosphere) */
.not-found__orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.not-found__orbs .orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.orb--1 {
  width: 380px; height: 380px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  animation: orb-drift-a 22s ease-in-out infinite;
}
.orb--2 {
  width: 460px; height: 460px;
  bottom: -180px; right: -120px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.35;
  animation: orb-drift-b 28s ease-in-out infinite;
}
.orb--3 {
  width: 260px; height: 260px;
  top: 30%; right: 12%;
  background: radial-gradient(circle, rgba(217, 198, 164, 0.7), transparent 70%);
  animation: orb-drift-c 18s ease-in-out infinite;
}
.orb--4 {
  width: 320px; height: 320px;
  bottom: 18%; left: 8%;
  background: radial-gradient(circle, rgba(43, 38, 32, 0.18), transparent 70%);
  animation: orb-drift-a 32s ease-in-out infinite reverse;
}

@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, 30px) scale(1.08); }
  66%      { transform: translate(-30px, 50px) scale(0.94); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, -40px) scale(1.1); }
}
@keyframes orb-drift-c {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-30px, 20px); }
  50%      { transform: translate(20px, 40px); }
  75%      { transform: translate(30px, -20px); }
}

.not-found__inner {
  max-width: 640px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Soft brand-mark watermark behind the numeral */
.not-found__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(280px, 38vw, 440px);
  height: clamp(280px, 38vw, 440px);
  transform: translate(-50%, -54%);
  color: var(--gold);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
  animation: mark-float 14s ease-in-out infinite;
}
@keyframes mark-float {
  0%, 100% { transform: translate(-50%, -54%) rotate(0deg); }
  50%      { transform: translate(-50%, -52%) rotate(2deg); }
}

/* The big 404 numeral — gradient text with a shimmer sweep + breathing */
.not-found__numeral {
  margin: 0.5rem 0 1rem;
  line-height: 0.95;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(7rem, 22vw, 13rem);
  letter-spacing: -0.02em;
  animation: numeral-breathe 6s ease-in-out infinite;
  transform-origin: center;
}
.not-found__numeral-text {
  display: inline-block;
  background-image: linear-gradient(
    180deg,
    #6f5b3c 0%,           /* deep antique gold */
    var(--gold-dark) 55%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 14px 28px rgba(43, 38, 32, 0.18));
}
@keyframes numeral-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

.not-found__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.not-found__lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 48ch;
  margin: 0 auto 2.25rem;
}
.not-found__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.not-found__suggestions {
  padding-top: 2rem;
  border-top: 1px solid rgba(188, 161, 119, 0.25);
}
.not-found__suggestions-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.not-found__suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.not-found__suggestions a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.not-found__suggestions a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

/* Staggered entrance — each element fades up after its --delay */
.not-found__anim {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes rise-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .not-found__anim,
  .not-found__numeral,
  .not-found__numeral-text,
  .not-found__mark,
  .orb {
    animation: none !important;
  }
  .not-found__anim { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------------
   Forms (kept from boilerplate, restyled)
   --------------------------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="password"], textarea {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(188, 161, 119, 0.4);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  margin: 0.25rem 0 1rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 161, 119, 0.18);
}
