/* =================================================================
   RADISLAV KATS — ACUPUNCTURE & ORIENTAL MEDICINE
   styles.css  ·  Ancient Chinese Design System
================================================================= */

/* -----------------------------------------------------------------
   1. RESET
----------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* -----------------------------------------------------------------
   2. CUSTOM PROPERTIES
----------------------------------------------------------------- */
:root {
  /* Sage green */
  --sage:          #4d5e48;
  --sage-dark:     #38482f;
  --sage-deeper:   #242e1e;
  --sage-light:    #607860;
  --sage-tint:     #b8c8b2;   /* medium sage — content section bg */
  --white-warm:    #faf9f6;   /* warm near-white */
  --green-ink:     #2a3a24;   /* dark green heading on light bg */
  --green-body:    #3a4a32;   /* dark green body text on light bg */

  /* Parchment */
  --cream:         #f0e8d6;
  --cream-mid:     #dfd1b8;
  --cream-deep:    #c8b898;

  /* Gold */
  --gold:          #c9a96e;
  --gold-light:    #e0c48a;
  --gold-bright:   #f0d8a0;
  --gold-dim:      #8a6e40;

  /* Text */
  --text-on-sage:  #ede6d2;
  --text-on-cream: #2c2214;
  --text-muted-c:  #6e5e3e;
  --text-muted-s:  #a89e7e;

  /* Shadows */
  --shadow-dark:   rgba(18, 20, 12, 0.55);
  --shadow-mid:    rgba(18, 20, 12, 0.30);
  --shadow-soft:   rgba(18, 20, 12, 0.12);

  /* Borders */
  --border-gold-s: rgba(201, 169, 110, 0.28);
  --border-gold-c: rgba(138, 110, 64, 0.40);

  /* Fonts */
  --font-heading:  'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:     'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;

  /* Layout */
  --section-pad:   116px;
  --container-max: 940px;
  --container-px:  36px;
}

/* -----------------------------------------------------------------
   3. BASE
----------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.78;
  color: var(--text-on-cream);
  background-color: var(--sage-light);
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.18;
}

h1 { font-size: clamp(2.4rem,  6vw,   4.2rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(1.65rem, 4vw,   2.8rem); letter-spacing: 0.03em; }
h3 { font-size: clamp(1.2rem,  2.5vw, 1.65rem); }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* Keyboard focus indicator — visible only for keyboard nav, not mouse clicks */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------
   3.0. STICKY BOOKING CTA  (fixed bottom-right, fades in past hero)
----------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 180;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-ink);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 14px 30px;
  min-height: 44px;
  border-radius: 2px;
  box-shadow:
    0 10px 28px rgba(36, 46, 30, 0.30),
    0 2px 6px rgba(36, 46, 30, 0.18),
    0 0 0 1px rgba(201, 169, 110, 0.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s ease, box-shadow 0.22s ease;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

body.show-sticky-cta .sticky-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  box-shadow:
    0 14px 36px rgba(36, 46, 30, 0.40),
    0 2px 6px rgba(36, 46, 30, 0.20),
    0 0 0 1px rgba(201, 169, 110, 0.65);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 24px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    text-align: center;
    border-radius: 0;
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    box-shadow:
      0 -8px 24px rgba(36, 46, 30, 0.22),
      0 -1px 0 rgba(201, 169, 110, 0.45) inset;
  }

  .sticky-cta:hover {
    transform: translateY(0);
    box-shadow:
      0 -8px 24px rgba(36, 46, 30, 0.22),
      0 -1px 0 rgba(201, 169, 110, 0.45) inset;
  }
}

@media (max-width: 360px) {
  .sticky-cta {
    padding: 16px 18px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
}

/* -----------------------------------------------------------------
   3a. SCROLL PROGRESS INDICATOR
----------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-bright), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 300;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(240,216,160,0.70), 0 1px 2px rgba(0,0,0,0.20);
  transition: transform 0.06s linear;
}

/* -----------------------------------------------------------------
   3b. PAPER GRAIN  (subtle film-grain noise overlay, fixed to viewport)
----------------------------------------------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 150;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
}

/* -----------------------------------------------------------------
   4. LAYOUT
----------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

section { padding-block: var(--section-pad); }

/* -----------------------------------------------------------------
   5. SECTION BACKGROUNDS  (solid-colour fallbacks only —
      gradients and cloud patterns live on .section-depth-bg)
----------------------------------------------------------------- */
.bg-sage  { background-color: var(--sage-tint); }
.bg-paper { background-color: var(--white-warm); }
.bg-dark  { background-color: var(--sage-light); }

/* -----------------------------------------------------------------
   6. COLOUR CONTEXT MODIFIERS
   These classes are applied to the *content container* inside a
   section, not to the section itself. They tell child elements
   (headings, paragraphs, eyebrows, frames) what background they
   are sitting on so they can choose appropriate text and border
   colours.
     .on-sage  — used inside .bg-sage sections (light sage tint bg)
     .on-paper — used inside .bg-paper sections, .about, .contact
----------------------------------------------------------------- */
.on-sage .section-eyebrow            { color: var(--gold-dim); opacity: 1; letter-spacing: 0.32em; }
.on-sage .section-title-wrap::before  { background: linear-gradient(to bottom, var(--gold), var(--gold-dim)); }
.on-sage h2                           { color: var(--green-ink); text-shadow: none; }
.on-sage p                            { color: var(--green-body); }
.on-sage .section-frame               { border-color: var(--border-gold-c); }

.on-paper .section-eyebrow            { color: var(--gold-dim); letter-spacing: 0.32em; }
.on-paper .section-title-wrap::before  { background: linear-gradient(to bottom, var(--gold), var(--gold-dim)); }
.on-paper h2                           { color: var(--text-on-cream); }
.on-paper p                            { color: var(--text-muted-c); }
.on-paper .section-frame               { border-color: var(--border-gold-c); }

.on-dark .section-eyebrow             { color: var(--gold-dim); opacity: 1; letter-spacing: 0.32em; }
.on-dark .section-title-wrap::before  { background: linear-gradient(to bottom, var(--gold), var(--gold-dim)); }
.on-dark h2                            { color: var(--gold-light); text-shadow: none; }
.on-dark p                             { color: rgba(236,229,200,0.78); }
.on-dark .section-frame {
  background: rgba(0,0,0,0.14);
  border-color: rgba(201,169,110,0.18);
  box-shadow:
    0 20px 56px rgba(0,0,0,0.30),
    0  4px 16px rgba(0,0,0,0.18);
}

.on-sage p,
.on-paper p,
.on-dark p { max-width: 680px; }

/* -----------------------------------------------------------------
   7. SECTION HEADING
----------------------------------------------------------------- */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title-wrap {
  position: relative;
  padding-left: 22px;
  margin-bottom: 40px;
}

.section-subhead {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--gold-dim);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .section-subhead { font-size: 0.92rem; }
}

.section-list {
  list-style: none;
  margin: 0 0 1.4em 0;
  padding: 0;
}

.section-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--green-body);
}

.section-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.on-paper .section-list li::before { background: var(--gold-dim); }

.section-tagline {
  margin-top: 1.6em;
  margin-bottom: 0;
  padding-top: 1.4em;
  border-top: 1px solid rgba(42,58,36,0.18);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--green-ink);
  letter-spacing: 0.01em;
}

.on-paper .section-tagline { border-top-color: rgba(80,60,20,0.20); }

@media (max-width: 600px) {
  .section-list li { font-size: 0.96rem; padding-left: 22px; }
  .section-list li::before { width: 12px; top: 0.9em; }
  .section-tagline { font-size: 1.02rem; }
}

.section-title-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 1px;
}

/* -----------------------------------------------------------------
   8. SECTION FRAME  (elevated card with corner ornaments)
----------------------------------------------------------------- */
.section-frame {
  padding: 52px 56px;
  border: 1px solid var(--border-gold-s);
  position: relative;
}

/* Depth: raised lift on sage-tint (light bg) */
.on-sage .section-frame {
  background: rgba(255, 253, 248, 0.88);
  box-shadow:
    0 1px 0   rgba(255,255,255,0.95) inset,
    0 20px 56px rgba(50, 70, 35, 0.07),
    0  4px 16px rgba(50, 70, 35, 0.04);
}

/* Depth: raised lift on cream */
.on-paper .section-frame {
  background: rgba(255, 252, 244, 0.70);
  box-shadow:
    0 1px 0   rgba(255,255,255,0.90) inset,
    0 20px 56px rgba(80, 60, 20, 0.10),
    0  4px 16px rgba(80, 60, 20, 0.06);
}


@media (max-width: 600px) {
  .section-frame { padding: 36px 28px; }
}


/* -----------------------------------------------------------------
   9. DIVIDER
----------------------------------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  margin-inline: auto;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
}

.divider--gold::before  { background: linear-gradient(to right, transparent, var(--gold)); }
.divider--gold::after   { background: linear-gradient(to left,  transparent, var(--gold)); }
.divider--cream::before { background: linear-gradient(to right, transparent, var(--cream-deep)); }
.divider--cream::after  { background: linear-gradient(to left,  transparent, var(--cream-deep)); }

.divider__gem { font-size: 0.7rem; flex-shrink: 0; }
.divider--gold  .divider__gem { color: var(--gold); }
.divider--cream .divider__gem { color: var(--cream-deep); }

.section-foot { margin-top: 56px; }

/* -----------------------------------------------------------------
   10. WATERMARK WRAPPER  (kept for layout positioning of section content)
----------------------------------------------------------------- */
.watermark-wrap { position: relative; overflow: hidden; }
.watermark-wrap > .container { position: relative; z-index: 1; }

/* -----------------------------------------------------------------
   11. NAVIGATION
----------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(to bottom, var(--sage-light) 0%, rgba(36,46,30,0.97) 100%);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: 16px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 32px var(--shadow-dark);
}

.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--gold-light);
  white-space: nowrap;
  text-decoration: none; /* <a> tag — reset underline */
}

.nav__brand-sep {
  color: var(--gold-dim);
  margin-inline: 8px;
}

/* Nav is a <ul> — reset browser list defaults.
   Each <li> uses display:contents so the <a> children
   participate directly in the flex layout. */
.nav__links {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links > li { display: contents; }

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236,229,200,0.60);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.nav__link:hover,
.nav__link--active { color: var(--gold-light); }

/* -----------------------------------------------------------------
   BURGER BUTTON  (hidden on desktop, visible on mobile)
----------------------------------------------------------------- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav__burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--gold);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.22s ease;
  transform-origin: center;
}

/* Lines animate to × when menu is open */
.nav--open .nav__burger-line:nth-child(1) { transform: translateY(6.5px)  rotate(45deg); }
.nav--open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -----------------------------------------------------------------
   12. HERO  &  PARALLAX LAYERS
----------------------------------------------------------------- */

/* ── Parallax container ── */
.parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;   /* clip layers that extend beyond the section */
}

/* ── All layers share base rules ── */
.parallax__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* 145% height gives ~45% of hero height as scroll buffer
     before the layer edge becomes visible                     */
  height: 145%;
  will-change: transform;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);   /* promote to GPU layer */
}

/* ── Layer 1: Sky / distant mountains ──
   Replace background-image with your Nano Banana Pro image:
   background-image: url('../../photos/hero-bg.jpg');          */
#p-bg {
  background-color: var(--sage-light);
  background-image: url('../photos/paralax/bg.webp');
  background-size: cover;
  background-position: center top;
}

/* ── Layer 2: Fog ── */
#p-clouds {
  background-image: url('../photos/paralax/fog.webp');
  background-size: cover;
  background-position: center 18%;
  opacity: 0.90;
}

/* ── Layer 3: Atmospheric mist band ── */
#p-mist {
  background-image:
    radial-gradient(ellipse 110% 28% at 50% 48%,
      rgba(160, 185, 155, 0.18) 0%,
      rgba(140, 168, 136, 0.10) 40%,
      transparent 100%),
    linear-gradient(to bottom,
      transparent            0%,
      rgba(180,200,165,0.08) 38%,
      rgba(180,200,165,0.14) 50%,
      rgba(180,200,165,0.08) 62%,
      transparent            100%);
  background-size: auto;
}

/* ── Layer 4: Foreground trees ── */
#p-trees {
  background-image: url('../photos/paralax/trees.webp');
  background-size: 100% auto;
  background-position: bottom center;
  height: 100%;
  top: auto;
  bottom: 0;
}

/* ── Fixed vignette — sits above all layers, never moves ── */
.parallax__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(10,18,6,0.58) 0%, transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(16,22,12,0.24) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 50% 0%,   rgba(16,22,12,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 25% 80% at 0%   50%, rgba(16,22,12,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 25% 80% at 100% 50%, rgba(16,22,12,0.10) 0%, transparent 70%);
}

.hero {
  min-height: 100svh;
  background-color: var(--sage-light);  /* fallback only — layers handle visuals */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 92px var(--container-px) 60px;
  overflow: hidden;
}

/* -----------------------------------------------------------------
   12b. HERO — SPLIT LAYOUT (text left on cream, visual right)
   Activated by .hero--split modifier. Overrides centered defaults.
----------------------------------------------------------------- */
.hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  text-align: left;
  padding: 0;
  background-color: var(--white-warm);
  min-height: 100svh;
}

/* Left column: text */
.hero__text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 110px clamp(28px, 5vw, 72px) 64px clamp(28px, 5vw, 72px);
  background-color: var(--white-warm);
}

.hero__text-inner {
  max-width: 560px;
  width: 100%;
}

/* Eyebrow on cream — switch to gold-dim for legibility */
.hero--split .hero__eyebrow {
  color: var(--gold-dim);
  opacity: 1;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  text-shadow: none;
  margin-bottom: 22px;
}

/* Headline */
.hero__headline {
  color: var(--text-on-cream);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  letter-spacing: 0.005em;
  line-height: 1.08;
  margin: 0 0 0;
  text-shadow: none;
}

.hero__headline-accent {
  color: var(--text-on-cream);
  font-style: italic;
  font-weight: 300;
}

/* Gold rule (left-aligned in split layout) */
.hero--split .hero__rule {
  margin: 26px 0 22px 0;
  width: 56px;
  background: var(--gold);
  opacity: 0.85;
}

/* Subtitle (practitioner credentials) */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted-c);
  margin: 0 0 28px 0;
  text-shadow: none;
}

/* Body paragraphs */
.hero__body p {
  color: var(--text-muted-c);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  margin: 0 0 16px 0;
  text-shadow: none;
}

.hero__body p:last-child { margin-bottom: 0; }

/* Closing prompt before CTA */
.hero__closing {
  color: var(--text-on-cream);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  margin: 28px 0 24px 0;
  letter-spacing: 0.005em;
  text-shadow: none;
}

/* Right column: visual (parallax placeholder until real photo lands) */
.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background-color: var(--sage-light);
}

/* Mobile: stack — visual on top, text below */
@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__visual {
    min-height: 56svh;
    order: -1;
  }
  .hero__text {
    padding: 48px 24px 56px;
    justify-content: flex-start;
  }
  .hero__text-inner { max-width: none; }
  .hero--split .hero__rule { margin: 22px 0 18px 0; }
}

@media (max-width: 600px) {
  .hero__visual { min-height: 48svh; }
  .hero__text { padding: 40px 20px 48px; }
  .hero--split .hero__eyebrow { font-size: 0.66rem; letter-spacing: 0.26em; margin-bottom: 16px; }
  .hero__subtitle { font-size: 0.76rem; letter-spacing: 0.16em; margin-bottom: 22px; }
  .hero__body p { font-size: 1rem; }
}

.hero__inner {
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 3;
}

/* Soft spotlight halo behind hero content — boosts text contrast on busy parallax bg.
   Pseudo extends well past content so gradient falloff is never visible as a hard edge. */
.hero__inner::before {
  content: '';
  position: absolute;
  inset: -260px -300px;
  background: radial-gradient(ellipse at center,
              rgba(10,18,6,0.62) 0%,
              rgba(10,18,6,0.42) 22%,
              rgba(10,18,6,0.20) 42%,
              rgba(10,18,6,0.08) 60%,
              transparent 78%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 600px) {
  .hero__inner::before { inset: -200px -160px; }
}

@media (max-width: 360px) {
  .hero__inner::before { inset: -160px -120px; }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.92;
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(10,18,6,0.80);
}

.hero__name {
  color: var(--text-on-sage);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0;
  text-shadow:
    0 2px 8px rgba(10,18,6,0.75),
    0 4px 32px rgba(10,18,6,0.45);
}

.hero__name-accent {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}

/* Thin gold rule under name — signature divider */
.hero__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 28px auto 22px;
  background: var(--gold);
  opacity: 0.75;
}

.hero__location {
  font-size: 0.92rem;
  color: var(--cream);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(10,18,6,0.90);
}

.hero__tagline {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--text-on-sage);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4;
  opacity: 0.96;
  margin-bottom: 40px;
  max-width: 540px;
  margin-inline: auto;
  text-shadow:
    0 1px 8px rgba(10,18,6,0.90),
    0 4px 32px rgba(10,18,6,0.45);
}

/* -----------------------------------------------------------------
   13. BUTTON
----------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 15px 48px;
  cursor: pointer;
  border: none;
  transition: all 0.28s ease;
  /* 44 px touch target */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  color: var(--cream);
  background-color: var(--green-ink);
  border: 1px solid var(--green-ink);
  position: relative;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(36, 46, 30, 0.18);
  transition: background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.22s ease;
}

.btn--primary:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(36, 46, 30, 0.28);
}

/* Hero CTA — solid gold, refined and flat (no inset ring, no heavy glow) */
#hero .btn--primary {
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: var(--green-ink);
  text-shadow: none;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 17px 52px;
  box-shadow: 0 6px 20px rgba(18,20,12,0.28);
}

#hero .btn--primary::before { display: none; }

#hero .btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18,20,12,0.34);
}

/* -----------------------------------------------------------------
   14. REVIEWS — ink-night parallax mist layers
----------------------------------------------------------------- */

/* Shared layer properties */
.reviews__mist {
  position: absolute;
  inset: 0;
  height: 140%;
  will-change: transform;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

/* Layer 1 — slow drift, wide gold mist pools */
.reviews__mist-1 {
  background-image:
    radial-gradient(ellipse 72% 38% at 14% 54%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 55% 28% at 84% 32%, rgba(236,229,200,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 22% at 56% 82%, rgba(201,169,110,0.05) 0%, transparent 62%);
}

/* Layer 2 — faster drift, horizontal mist band + smaller accent pockets */
.reviews__mist-2 {
  background-image:
    radial-gradient(ellipse 95% 16% at 50% 46%, rgba(236,229,200,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 36% 26% at 24% 26%, rgba(201,169,110,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 44% 24% at 74% 74%, rgba(201,169,110,0.05) 0%, transparent 62%);
}

/* -----------------------------------------------------------------
   14b. REVIEWS — carousel
----------------------------------------------------------------- */
.reviews__summary {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--green-body);
}

.reviews__stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* Carousel wrapper: arrow | track | arrow */
.reviews__carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 48px 0 20px;
}

.reviews__track {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar { display: none; }

/* Each card occupies exactly the full track width */
.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--white-warm);
  border: 1px solid rgba(42,58,36,0.10);
  border-radius: 4px;
  padding: 44px 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 18px 40px rgba(36, 46, 30, 0.14),
    0 4px 12px rgba(36, 46, 30, 0.06);
}

/* Large decorative opening quote */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 130px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.review-card > * { position: relative; z-index: 1; }

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--green-body);
  font-style: italic;
  flex: 1;
}

.review-card__author {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-dim);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-top: 16px;
  position: relative;
  align-self: flex-start;
}

.review-card__author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Prev / Next arrow buttons — hidden on mobile, shown on wider screens */
.reviews__nav {
  display: none;
}

@media (min-width: 641px) {
  .reviews__nav {
    display: block;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 3rem;
    line-height: 1;
    color: var(--gold);
    padding: 4px 10px;
    opacity: 0.65;
    transition: opacity 0.2s;
    user-select: none;
  }

  .reviews__nav:hover:not(:disabled) { opacity: 1; }
  .reviews__nav:disabled              { opacity: 0.18; cursor: default; }
}

/* Dot indicators */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(42,58,36,0.20);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews__dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

.reviews__cta {
  text-align: center;
  margin-bottom: 40px;
}

/* Reviews on medium-sage bg — light card, dark text */
.bg-dark .section-eyebrow          { color: var(--green-ink); opacity: 0.70; }
.bg-dark .review-card               { background: rgba(255,253,248,0.88); border-color: rgba(42,58,36,0.14); }
.bg-dark .review-card__text         { color: var(--green-body); }
.bg-dark .review-card__author       { color: var(--green-ink); }
.bg-dark .reviews__summary          { color: var(--green-body); }
.bg-dark .reviews__dot              { background: rgba(42,58,36,0.25); }
.bg-dark .reviews__dot.is-active    { background: var(--gold-dim); }

/* -----------------------------------------------------------------
   15. ABOUT
----------------------------------------------------------------- */
.about {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 265px;
  gap: 72px;
  align-items: start;
}

.about__photo-col {
  position: sticky;
  top: 88px;
}

/* Arch photo frame */
.photo-frame {
  width: 100%;
  border-radius: 100px 100px 0 0;
  aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(201,169,110,0.45);
  background: linear-gradient(to bottom, var(--sage-light) 0%, var(--sage) 60%, var(--sage-dark) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px var(--shadow-dark),
    0  8px 24px var(--shadow-mid),
    0  0  40px  rgba(201,169,110,0.06);
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 12%;
  filter: sepia(0.18) saturate(0.70) brightness(1.08) contrast(1.04);
}

/* Gradient overlay — fades photo into the sage-dark frame at bottom */
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(18,22,12,0.75) 0%, transparent 65%),
    linear-gradient(to bottom,
      rgba(36,46,30,0.12) 0%,
      transparent         30%,
      rgba(18,22,12,0.50) 100%
    );
}

.photo-frame__placeholder {
  color: rgba(201,169,110,0.40);
  font-size: 0.76rem;
  text-align: center;
  padding: 0 20px 28px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Bottom corner ornaments */
.photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) 0    100% / 18px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0    100% / 2px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 100% / 18px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 100% / 2px 18px no-repeat;
  z-index: 2;
}

/* Credential pills */
.about__creds {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(42,58,36,0.18);
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--green-ink);
  line-height: 1.7;
}

.about__cta {
  margin-top: 56px;
  text-align: center;
}

@media (max-width: 600px) {
  .about__cta { margin-top: 40px; }
}

@media (max-width: 480px) {
  .about__creds { font-size: 0.86rem; letter-spacing: 0.04em; }
}

.lang-line {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-muted-c);
  letter-spacing: 0.05em;
}

.lang-line__text { color: var(--green-ink); }

/* -----------------------------------------------------------------
   15b. FAQ  (lives inside .section-frame on a bg-sage section)
----------------------------------------------------------------- */
.faq__list {
  border-top: 1px solid rgba(42,58,36,0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(42,58,36,0.16);
  position: relative;
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--green-ink);
  position: relative;
  transition: color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-item__q::-webkit-details-marker { display: none; }

/* Plus → minus indicator (gold-dim, matches eyebrow accents) */
.faq-item__q::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--gold-dim), var(--gold-dim)) center/14px 1.5px no-repeat,
    linear-gradient(var(--gold-dim), var(--gold-dim)) center/1.5px 14px no-repeat;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.28s ease, background 0.22s ease;
}

.faq-item[open] .faq-item__q::after {
  background:
    linear-gradient(var(--gold-dim), var(--gold-dim)) center/14px 1.5px no-repeat,
    linear-gradient(var(--gold-dim), var(--gold-dim)) center/1.5px 0 no-repeat;
  transform: translateY(-50%) rotate(180deg);
}

.faq-item__q:hover { color: var(--gold-dim); }

.faq-item__a { padding: 0 0 26px 0; }

.faq-item__a p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--green-body);
  margin: 0;
  max-width: 64ch;
}

.faq__cta {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 760px) {
  .faq-item__q   { font-size: 1.04rem; padding: 18px 36px 18px 0; }
  .faq-item__q::after { width: 12px; height: 12px; }
  .faq-item__a   { padding-bottom: 22px; }
  .faq-item__a p { font-size: 0.96rem; line-height: 1.7; }
  .faq__cta      { margin-top: 36px; }
}

@media (max-width: 480px) {
  .faq-item__q   { font-size: 1rem; padding: 16px 30px 16px 0; }
  .faq-item__a p { font-size: 0.92rem; }
}

/* -----------------------------------------------------------------
   16. CONTACT
----------------------------------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  background-color: var(--white-warm);
}

.contact__head { margin-bottom: 56px; }

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

.c-block { margin-bottom: 32px; }
.c-block:last-child { margin-bottom: 0; }

.c-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}

.c-block address,
.c-block p {
  font-size: 1.05rem;
  color: var(--text-muted-c);
  line-height: 1.78;
}

.c-block a { color: var(--text-on-cream); }
.c-block a:hover { color: var(--gold-dim); }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted-c);
  line-height: 1.78;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(138, 110, 64, 0.20);
}

.hours-list li:last-child { border-bottom: none; }

.hours-day  { color: var(--text-on-cream); font-weight: 500; }
.hours-time { color: var(--text-muted-c); font-variant-numeric: tabular-nums; }

@media (max-width: 480px) {
  .hours-list { font-size: 0.94rem; }
  .hours-list li { gap: 10px; }
}

.serving-areas {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--cream-mid);
}

.serving-areas p {
  color: var(--text-muted-c);
  font-size: 0.95rem;
  line-height: 1.78;
}

/* Map */
.map-wrap {
  position: relative;
  border: 1px solid var(--border-gold-c);
  box-shadow:
    0 20px 56px rgba(80,60,20,0.12),
    0  6px 20px rgba(80,60,20,0.08);
}

.map-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(var(--gold), var(--gold)) 0    0    / 18px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0    0    / 2px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 0    / 18px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 0    / 2px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0    100% / 18px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0    100% / 2px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 100% / 18px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 100% / 2px 18px no-repeat;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: sepia(0.22) saturate(0.85) contrast(1.06);
}

/* -----------------------------------------------------------------
   17. FOOTER
----------------------------------------------------------------- */
.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--sage-light);
  border-top: 1px solid rgba(201,169,110,0.20);
  padding: 56px var(--container-px) 44px;
  text-align: center;
  box-shadow: 0 -8px 40px rgba(12,14,8,0.18) inset;
}

.footer__divider { max-width: 160px; margin-bottom: 32px; }

.footer__nap {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--cream);
  line-height: 2.1;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(10,18,6,0.55);
}

.footer__nap-name { color: var(--gold-light); }
.footer__nap a    { color: var(--cream); }
.footer__nap a:hover { color: var(--gold-light); }

.footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__social-link {
  color: var(--cream);
  display: flex;
  align-items: center;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.footer__social-link:hover { color: var(--gold-light); }

.footer__copy {
  font-size: 0.78rem;
  color: var(--cream);
  letter-spacing: 0.09em;
  opacity: 0.78;
  text-shadow: 0 1px 4px rgba(10,18,6,0.55);
}

/* -----------------------------------------------------------------
   17. SECTION PARALLAX DEPTH BACKGROUNDS
   Each content section gets a .section-depth-bg as its first
   child. JS translates it via data-parallax-speed, producing a
   subtle depth-of-field shift as the page scrolls.
   top: -15% / height: 130% = 30% buffer (15% each direction)
   so the layer never shows a gap inside overflow: hidden.
----------------------------------------------------------------- */
.section-depth-bg {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  height: 130%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  background-size: auto, auto, 420px 220px;
}

/* Sage variant — services (I) and voice scan (III) */
.bg-sage > .section-depth-bg {
  background-color: var(--sage-tint);
  background-image:
    radial-gradient(ellipse at 20% 40%, rgba(140,170,130,0.35) 0%, transparent 65%),
    radial-gradient(ellipse at 85% 70%, rgba(90,120,80,0.25)   0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220' viewBox='0 0 420 220'%3E%3Cg fill='none' stroke='rgba(236,229,200,0.13)' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M48,152 Q48,134 64,130 Q66,116 86,118 Q88,104 110,110 Q126,102 130,116 Q146,112 146,128 Q160,130 154,144 Q160,158 146,160 L48,160 Q34,158 48,152Z'/%3E%3Cpath d='M66,160 Q56,176 40,168 Q28,160 40,152'/%3E%3Cpath d='M128,160 Q140,178 156,168 Q166,158 154,150'/%3E%3Cpath d='M268,68 Q268,54 280,51 Q282,40 298,43 Q310,36 316,48 Q328,44 324,58 Q336,58 330,70 Q336,80 324,82 L268,82 Q258,80 268,68Z'/%3E%3Cpath d='M312,82 Q320,94 332,86 Q340,78 330,72'/%3E%3Ccircle cx='196' cy='28' r='2.5'/%3E%3Ccircle cx='216' cy='50' r='1.8'/%3E%3Ccircle cx='174' cy='64' r='1.8'/%3E%3Ccircle cx='358' cy='162' r='2'/%3E%3Ccircle cx='28' cy='96' r='1.8'/%3E%3Ccircle cx='388' cy='48' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* Paper variant — herbal medicine (II) and applied kinesiology (IV) */
.bg-paper > .section-depth-bg {
  background-color: var(--white-warm);
  background-image:
    radial-gradient(ellipse at 75% 30%, rgba(255,252,245,0.80) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(210,198,175,0.35) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220' viewBox='0 0 420 220'%3E%3Cg fill='none' stroke='rgba(138,110,64,0.10)' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M48,152 Q48,134 64,130 Q66,116 86,118 Q88,104 110,110 Q126,102 130,116 Q146,112 146,128 Q160,130 154,144 Q160,158 146,160 L48,160 Q34,158 48,152Z'/%3E%3Cpath d='M66,160 Q56,176 40,168 Q28,160 40,152'/%3E%3Cpath d='M128,160 Q140,178 156,168 Q166,158 154,150'/%3E%3Cpath d='M268,68 Q268,54 280,51 Q282,40 298,43 Q310,36 316,48 Q328,44 324,58 Q336,58 330,70 Q336,80 324,82 L268,82 Q258,80 268,68Z'/%3E%3Ccircle cx='196' cy='28' r='2'/%3E%3Ccircle cx='360' cy='162' r='1.8'/%3E%3C/g%3E%3C/svg%3E");
}

/* About variant */
.about > .section-depth-bg {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(255,250,235,0.70) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(200,184,152,0.50) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220' viewBox='0 0 420 220'%3E%3Cg fill='none' stroke='rgba(236,229,200,0.13)' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M48,152 Q48,134 64,130 Q66,116 86,118 Q88,104 110,110 Q126,102 130,116 Q146,112 146,128 Q160,130 154,144 Q160,158 146,160 L48,160 Q34,158 48,152Z'/%3E%3Cpath d='M66,160 Q56,176 40,168 Q28,160 40,152'/%3E%3Cpath d='M128,160 Q140,178 156,168 Q166,158 154,150'/%3E%3Cpath d='M268,68 Q268,54 280,51 Q282,40 298,43 Q310,36 316,48 Q328,44 324,58 Q336,58 330,70 Q336,80 324,82 L268,82 Q258,80 268,68Z'/%3E%3Ccircle cx='196' cy='28' r='2.5'/%3E%3Ccircle cx='28' cy='96' r='1.8'/%3E%3C/g%3E%3C/svg%3E");
}

/* Contact variant */
.contact > .section-depth-bg {
  background-color: var(--white-warm);
  background-image:
    radial-gradient(ellipse at 70% 20%, rgba(255,252,240,0.80) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(200,184,152,0.60) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220' viewBox='0 0 420 220'%3E%3Cg fill='none' stroke='rgba(138,110,64,0.10)' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M48,152 Q48,134 64,130 Q66,116 86,118 Q88,104 110,110 Q126,102 130,116 Q146,112 146,128 Q160,130 154,144 Q160,158 146,160 L48,160 Q34,158 48,152Z'/%3E%3Cpath d='M66,160 Q56,176 40,168 Q28,160 40,152'/%3E%3Cpath d='M128,160 Q140,178 156,168 Q166,158 154,150'/%3E%3Cpath d='M268,68 Q268,54 280,51 Q282,40 298,43 Q310,36 316,48 Q328,44 324,58 Q336,58 330,70 Q336,80 324,82 L268,82 Q258,80 268,68Z'/%3E%3Ccircle cx='196' cy='28' r='2'/%3E%3Ccircle cx='360' cy='162' r='1.8'/%3E%3C/g%3E%3C/svg%3E");
}

/* Footer variant */
.footer > .section-depth-bg {
  background-color: var(--sage-light);
  background-image:
    radial-gradient(ellipse at 50% 0%,   rgba(96,120,80,0.40) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(12,14,8,0.45)   0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220' viewBox='0 0 420 220'%3E%3Cg fill='none' stroke='rgba(236,229,200,0.10)' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M48,152 Q48,134 64,130 Q66,116 86,118 Q88,104 110,110 Q126,102 130,116 Q146,112 146,128 Q160,130 154,144 Q160,158 146,160 L48,160 Q34,158 48,152Z'/%3E%3Ccircle cx='196' cy='28' r='2.5'/%3E%3Ccircle cx='388' cy='48' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* -----------------------------------------------------------------
   18. SCROLL FADE-IN
----------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------------
   19. RESPONSIVE & MOBILE OPTIMISATION
----------------------------------------------------------------- */

/* ── Tablet ≤ 780 px ─────────────────────────────────────────── */
@media (max-width: 780px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo-col {
    position: static;
    max-width: 220px;
    margin-inline: auto;
  }

  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Burger nav ≤ 640 px ─────────────────────────────────────── */
@media (max-width: 640px) {
  .nav__burger { display: flex; }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(to bottom, var(--sage-light), rgba(36,46,30,0.98));
    border-bottom: 1px solid rgba(201,169,110,0.20);
    box-shadow: 0 12px 40px rgba(12,14,8,0.55);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav--open .nav__links {
    max-height: 240px;
  }

  /* Restore li as a block — overrides the desktop display:contents */
  .nav__links > li { display: block; }

  /* Separator between items (avoids last-child edge case with display:contents) */
  .nav__links > li + li {
    border-top: 1px solid rgba(201,169,110,0.10);
  }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-height: 56px;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 0.20em;
    color: rgba(236,229,200,0.65);
  }

  /* Reduce card padding at tablet/landscape-phone width */
  .review-card { padding: 32px 28px 24px; }
  .review-card::before { font-size: 90px; top: -6px; left: 14px; }
}

/* ── Phablet ≤ 600 px ────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav__brand-creds { display: none; }
  .section-frame { padding: 36px 28px; }
  .map-wrap iframe { height: 300px; }

  .hero { padding: 76px var(--container-px) 44px; }
  .hero__eyebrow       { margin-bottom: 18px; letter-spacing: 0.34em; }
  .hero__rule          { margin: 22px auto 18px; width: 48px; }
  .hero__location      { margin-bottom: 22px; font-size: 0.84rem; letter-spacing: 0.13em; }
  .hero__tagline       { margin-bottom: 30px; }
  #hero .btn--primary  { padding: 15px 42px; }
}

/* ── Mobile ≤ 560 px ─────────────────────────────────────────── */
@media (max-width: 560px) {
  .nav__brand { font-size: 0.82rem; }

  .reviews__carousel { margin-top: 28px; }

  .review-card {
    padding: 26px 20px 20px;
  }

  .review-card::before { font-size: 70px; top: -2px; left: 10px; }
  .review-card__text { font-size: 0.88rem; line-height: 1.6; }
  .review-card__author { font-size: 0.72rem; letter-spacing: 0.22em; padding-top: 12px; }
}

/* ── Small mobile ≤ 480 px ───────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-pad:  64px;
    --container-px: 20px;
  }

  .nav { padding-inline: 16px; }

  .hero { padding: 70px var(--container-px) 36px; }
  .hero__eyebrow       { font-size: 0.68rem; letter-spacing: 0.30em; margin-bottom: 14px; }
  .hero__rule          { margin: 18px auto 14px; width: 42px; }
  .hero__location      { margin-bottom: 18px; font-size: 0.78rem; letter-spacing: 0.10em; }
  .hero__tagline       { margin-bottom: 26px; }

  /* Tighter button padding on narrow screens */
  .btn--primary { padding-inline: 32px; }
  #hero .btn--primary  { padding: 14px 36px; }

  /* Further compress section frame */
  .section-frame { padding: 28px 20px; }

  /* Shorter map */
  .map-wrap iframe { height: 260px; }
}

/* ── Very small ≤ 360 px ─────────────────────────────────────── */
@media (max-width: 360px) {
  .nav__links { gap: 12px; }
  .nav__link  { font-size: 0.76rem; }

  .hero { padding: 64px var(--container-px) 28px; }
  .hero__rule          { margin: 16px auto 12px; width: 36px; }
  .hero__location      { font-size: 0.72rem; letter-spacing: 0.08em; margin-bottom: 16px; }
  .hero__tagline       { margin-bottom: 22px; }

  .map-wrap iframe { height: 220px; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
    scroll-behavior:           auto   !important;
  }

  /* Make fade-in sections instantly visible */
  .fade-in {
    opacity:    1 !important;
    transform:  none !important;
    transition: none !important;
  }

  /* Freeze all parallax layers in their natural position */
  .section-depth-bg,
  .parallax__layer {
    will-change: auto;
    transform:   none !important;
  }
}
