/* Foundations Natural Health — The Practice (warm + structured natural doctor) */

:root {
  --bg: #FBF6EC;
  --bg-2: #F4EBD7;
  --bg-3: #EADFC9;
  --moss: #2F3F2A;
  --moss-2: #3F5238;
  --moss-soft: #C8D6BD;
  --sage: #7A8B6F;
  --coral: #9E4E2E;
  --coral-soft: #E4B79E;
  --ink: #1A1814;
  --muted: #6B5F4F;
  --line: #E4D9C0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
}
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; color: var(--coral); }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: var(--moss); letter-spacing: -0.025em; line-height: 1.1; }

.kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--coral);
}
.kicker.light { color: var(--coral-soft); }

.btn-primary {
  display: inline-block;
  background: var(--moss); color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 16px 26px; border-radius: 16px;
  letter-spacing: 0.01em;
  transition: background .25s, transform .15s;
}
.btn-primary:hover { background: var(--coral); transform: translateY(-1px); }
.btn-primary.big { font-size: 17px; padding: 20px 36px; }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--moss);
  border: 1.5px solid var(--moss);
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 16px;
  letter-spacing: 0.01em;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-secondary:hover { background: var(--moss); color: var(--bg); }

.nav-wrap { background: rgba(251, 246, 236, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; justify-content: space-between; align-items: center; max-width: 1320px; margin: 0 auto; padding: 22px 32px; gap: 32px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; font-size: 14px; color: var(--ink); font-weight: 500; }
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }
.nav-cta {
  background: var(--moss); color: var(--bg);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  transition: background .2s;
}
.nav-cta:hover { background: var(--coral); }

/* ---- Nav links, dropdowns, hamburger ---- */
.nav-link { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--ink); background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 0; line-height: 1.2; }
.nav-link:hover, .nav-link.active { color: var(--coral); }
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-chevron { width: 11px; height: 11px; transition: transform .2s ease; }
.nav-item:hover .nav-chevron, .nav-item:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 18px 44px rgba(47,63,42,.13);
  padding: 8px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; z-index: 60;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-menu a { padding: 10px 14px; border-radius: 9px; font-size: 14px; color: var(--ink); white-space: nowrap; transition: background .15s, color .15s; }
.nav-menu a:hover { background: var(--bg-2); color: var(--coral); }
/* invisible bridge so the menu doesn't close in the gap below the trigger */
.nav-item.has-menu::after { content: ""; position: absolute; top: 100%; left: -8px; right: -8px; height: 18px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar { width: 22px; height: 2px; background: var(--moss); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HOMEPAGE HERO */
.hero { padding: 72px 0 100px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; max-width: 1320px; margin: 0 auto; padding: 0 32px; align-items: center; }
.hero-text .kicker { margin-bottom: 22px; }
.hero h1 { font-size: clamp(42px, 7.2vw, 88px); line-height: 1.0; margin-bottom: 24px; max-width: 14ch; font-weight: 500; letter-spacing: -0.035em; }
.lede { font-size: clamp(18px, 1.5vw, 21px); color: var(--muted); line-height: 1.55; max-width: 540px; margin-bottom: 36px; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 36px; margin-top: 12px; border-top: 1px solid var(--line); list-style: none; }
.trust { display: flex; flex-direction: column; }
.trust-num { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500; color: var(--moss); letter-spacing: -0.02em; line-height: 1; }
.trust-unit { font-size: 16px; color: var(--coral); font-weight: 500; margin-left: 2px; }
.trust-label { font-size: 12.5px; color: var(--muted); margin-top: 8px; line-height: 1.3; }

.hero-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 16px; background: var(--bg-3); box-shadow: 0 20px 60px rgba(47, 63, 42, .15); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-photo-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(251, 246, 236, .96); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.hpt-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--coral); font-weight: 600; }
.hpt-name { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; color: var(--moss); margin-top: 4px; }
.hpt-cred { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* BREADCRUMB BAR — light floating context above page hero */
.breadcrumb-bar { background: var(--bg); padding: 10px 0 0; }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* INNER PAGE HERO */
.page-hero { padding: 24px 0 80px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.page-hero.has-photo .page-hero-inner { max-width: 1280px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.page-hero-photo { aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: var(--bg-3); margin: 0; }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 28px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--muted); border-bottom: 1px dotted transparent; transition: color .2s, border-color .2s; }
.breadcrumb a:hover { color: var(--coral); border-color: var(--coral); }
.breadcrumb-sep { margin: 0 10px; color: var(--coral); }
.breadcrumb .current { color: var(--moss); font-weight: 500; }
.page-hero .kicker { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(36px, 5.6vw, 66px); line-height: 1.02; margin-bottom: 18px; max-width: 16ch; font-weight: 500; letter-spacing: -0.03em; }
.page-hero .lede { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 640px; margin-bottom: 28px; }
.page-hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* CONDITIONS MARQUEE */
.cond-marquee { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; gap: 18px; align-items: center; white-space: nowrap; animation: marquee-scroll 75s linear infinite; padding-right: 18px; }
.marquee-track span { font-family: 'Inter', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 500; flex-shrink: 0; }
.cm-sep { width: 11px; height: 11px; color: var(--coral); flex-shrink: 0; display: inline-block; opacity: .7; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ROUTER STRIP */
.router { padding: 80px 0 32px; background: var(--bg); }
.router-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.router-head { text-align: center; margin-bottom: 36px; }
.router-head .kicker { margin-bottom: 14px; }
.router-head h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 500; letter-spacing: -0.03em; }
.router-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.router-card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  background: var(--bg-2); padding: 20px 22px; border-radius: 14px;
  border: 1px solid var(--line); border-left: 3px solid var(--sage);
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
}
.router-card:hover { border-color: var(--coral); border-left-color: var(--coral); background: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47, 63, 42, .08); }
.rc-icon { width: 28px; height: 28px; color: var(--sage); transition: color .2s; }
.router-card:hover .rc-icon { color: var(--coral); }
.rc-label { font-family: 'Fraunces', serif; font-size: 18px; color: var(--moss); font-style: italic; font-weight: 500; line-height: 1.25; }
.rc-arrow { font-family: 'Fraunces', serif; color: var(--coral); font-size: 22px; transition: transform .2s; }
.router-card:hover .rc-arrow { transform: translateX(4px); }

/* PHILOSOPHY STRIP */
.strip { background: var(--moss); color: var(--bg); padding: 88px 32px; }
.strip-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; max-width: 1200px; margin: 0 auto; align-items: center; }
.strip-photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 16px; background: var(--moss-2); margin: 0; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.strip-text { display: flex; flex-direction: column; }
.strip-label { display: inline-block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--coral-soft); font-weight: 600; margin-bottom: 24px; }
.strip-quote { font-family: 'Fraunces', serif; font-size: clamp(24px, 3.2vw, 40px); line-height: 1.32; color: var(--bg); font-weight: 400; max-width: 600px; font-style: italic; letter-spacing: -0.01em; }
.strip-cta { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--coral-soft); padding: 10px 0; margin-top: 24px; border-bottom: 1px solid var(--coral-soft); transition: color .2s, border-color .2s; align-self: flex-start; }
.strip-cta:hover { color: var(--bg); border-color: var(--bg); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; padding: 0 32px; }
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(32px, 4.8vw, 58px); margin-bottom: 18px; font-weight: 500; letter-spacing: -0.03em; }
.section-lede { font-size: 17px; color: var(--muted); line-height: 1.6; }

/* HOW CARE WORKS */
.how { padding: 100px 0; background: var(--bg); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1320px; margin: 0 auto; padding: 0 32px; list-style: none; }
.how-card { background: var(--bg-2); border-radius: 18px; padding: 32px; position: relative; transition: transform .25s, box-shadow .25s; }
.how-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(47, 63, 42, .08); }
.how-num { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.how-num-mark { font-family: 'Fraunces', serif; font-style: italic; font-size: 56px; font-weight: 500; color: var(--coral); line-height: 1; letter-spacing: -0.03em; }
.how-num-label { font-family: 'Inter', sans-serif; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); font-weight: 600; }
.how-card h3 { font-size: 24px; margin-bottom: 12px; font-weight: 500; }
.how-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.how-list { list-style: none; padding: 0; margin-bottom: 22px; }
.how-list li { font-size: 14px; color: var(--ink); padding: 10px 0 10px 24px; border-top: 1px solid var(--line); position: relative; }
.how-list li:before { content: "✓"; position: absolute; left: 0; top: 10px; color: var(--coral); font-weight: 700; }
.how-cta { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--coral); padding: 8px 0; border-bottom: 1px solid var(--coral); transition: color .2s, border-color .2s; }
.how-cta:hover { color: var(--moss); border-color: var(--moss); }

.section-cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 1320px; margin: 48px auto 0; padding: 0 32px; text-align: center; }
.section-cta-aside { font-size: 13.5px; color: var(--muted); font-style: italic; }

/* SERVICES */
.services { padding: 100px 0; background: var(--bg-2); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.svc { background: var(--bg); border-radius: 18px; padding: 32px; transition: transform .2s, box-shadow .2s; border: 1px solid var(--line); display: flex; flex-direction: column; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(47, 63, 42, .10); border-color: var(--moss-soft); }
.svc-icon { width: 44px; height: 44px; color: var(--sage); margin-bottom: 18px; display: block; }
.svc h2, .svc h3 { font-size: 21px; margin-bottom: 10px; font-weight: 500; }
.svc p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.svc-cta { display: inline-flex; align-items: center; font-size: 13.5px; font-weight: 500; color: var(--coral); margin-top: auto; padding-bottom: 2px; border-bottom: 1px solid var(--coral); align-self: flex-start; transition: color .2s, border-color .2s; }
.svc-cta:hover { color: var(--moss); border-color: var(--moss); }

/* TESTING SECTION */
.testing { background: var(--moss); color: var(--bg); padding: 100px 0; }
.testing-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; max-width: 1320px; margin: 0 auto; padding: 0 32px; align-items: center; }
.testing-media { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
.testing-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.testing-photo { margin: 0 0 32px; aspect-ratio: 4/3; border-radius: 16px; border: 1.5px dashed rgba(251, 246, 236, .35); background: rgba(251, 246, 236, .04); display: flex; align-items: center; justify-content: center; max-width: 440px; }
.testing-photo .tp-frame { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; text-align: center; }
.testing-photo svg { width: 56px; height: 56px; color: var(--coral-soft); margin-bottom: 6px; }
.testing-photo .tp-label { font-family: 'Fraunces', serif; font-size: 17px; color: var(--bg); font-weight: 500; }
.testing-photo .tp-sub { font-size: 12.5px; color: rgba(251, 246, 236, .58); font-style: italic; line-height: 1.5; }
.testing-photo.has-photo { border: none; background: none; padding: 0; overflow: hidden; }
.testing-photo.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.testing-text .kicker { margin-bottom: 16px; }
.testing-text h2 { color: var(--bg); font-size: 40px; margin-bottom: 18px; font-weight: 500; }
.testing-text h2 em { color: var(--coral-soft); }
.testing-text p { color: rgba(251, 246, 236, .88); font-size: 16px; line-height: 1.7; margin-bottom: 16px; max-width: 480px; }
.testing-text .muted { color: rgba(251, 246, 236, .58); font-size: 14px; }
.testing--media .testing-text .testing-grid { margin-top: 30px; }
@media (min-width: 901px) {
  .testing--media .testing-inner { grid-template-columns: 0.82fr 1.18fr; align-items: start; }
}
.testing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; padding: 0; }
.test-tile { background: rgba(251, 246, 236, .06); border: 1px solid rgba(251, 246, 236, .12); border-radius: 12px; padding: 18px 22px; display: flex; align-items: baseline; gap: 14px; transition: background .2s, border-color .2s; }
.test-tile:hover { border-color: var(--coral-soft); background: rgba(251, 246, 236, .10); }
.test-num { font-family: 'Fraunces', serif; font-style: italic; color: var(--coral-soft); font-size: 16px; font-weight: 500; }
.test-name { font-size: 14.5px; color: var(--bg); font-weight: 500; }
.testing-cta { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--coral-soft); padding: 10px 0; margin-top: 24px; border-bottom: 1px solid var(--coral-soft); transition: color .2s, border-color .2s; }
.testing-cta:hover { color: var(--bg); border-color: var(--bg); }

/* DOCTOR SECTION */
.doctor { padding: 100px 0; background: var(--bg); }
.doctor-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; max-width: 1200px; margin: 0 auto; padding: 0 32px; align-items: center; }
.doctor-photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 16px; background: var(--bg-3); }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.doctor-text .kicker { margin-bottom: 14px; }
.doctor-text h2 { font-size: 48px; margin-bottom: 24px; font-weight: 500; }
.doctor-text p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 16px; max-width: 520px; }
.doctor-creds { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 16px; }
.cred { display: grid; grid-template-columns: 130px 1fr; gap: 16px; font-size: 14px; }
.cred-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 600; padding-top: 2px; }
.cred-value { color: var(--ink); font-weight: 500; }

/* PRICING */
.pricing { padding: 100px 0; background: var(--bg-2); }
.price-list { max-width: 920px; margin: 0 auto; padding: 0; width: 100%; background: var(--bg); border-radius: 18px; overflow: hidden; border: 1px solid var(--line); margin-left: auto; margin-right: auto; max-width: 920px; }
.price-row { display: grid; grid-template-columns: 1.3fr 1.5fr 180px; gap: 24px; align-items: center; padding: 24px 32px; border-bottom: 1px solid var(--line); min-height: 80px; }
.price-row:last-child { border-bottom: 0; }
.price-name { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; color: var(--moss); line-height: 1.3; }
.price-meta { font-size: 14px; color: var(--muted); line-height: 1.45; }
.price-amount { font-family: 'Fraunces', serif; font-size: 18px; color: var(--coral); font-weight: 500; white-space: nowrap; text-align: right; line-height: 1.3; }
.price-amount.free { color: var(--sage); }
.price-amount.muted { color: var(--muted); font-size: 16px; font-style: italic; }
.price-tba { font-size: 14px; color: var(--muted); font-style: italic; }
.price-note { max-width: 880px; margin: 28px auto 0; padding: 0 32px; font-size: 13px; color: var(--muted); text-align: center; line-height: 1.7; font-style: italic; }

/* CONDITIONS GRID */
.conditions { padding: 100px 0; background: var(--bg); }
.cond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1100px; margin: 0 auto; padding: 0 32px; list-style: none; }
.cond { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 0; font-size: 14.5px; color: var(--ink); font-weight: 500; overflow: hidden; }
.cond > a, .cond { display: block; }
.cond a { padding: 16px 20px; color: inherit; transition: color .2s; }
.cond:not(:has(a)) { padding: 16px 20px; }
.cond:hover { border-color: var(--coral); background: var(--coral-soft); color: var(--moss); }
.cond a::after { content: " →"; opacity: 0; transition: opacity .2s; color: var(--coral); }
.cond:hover a::after { opacity: 1; }

/* EDUCATION / WEBINARS */
.education { padding: 100px 0; background: var(--bg); }
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 32px; list-style: none; }
.edu-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.edu-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(47, 63, 42, .08); }
.edu-card.placeholder { border-style: dashed; opacity: .92; }
.edu-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--moss-soft) 0%, var(--bg-3) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.edu-thumb::after { content: "▶"; position: absolute; width: 56px; height: 56px; border-radius: 999px; background: rgba(251, 246, 236, .92); color: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 18px; padding-left: 4px; }
.edu-thumb-label { position: absolute; bottom: 14px; left: 16px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--moss); background: rgba(251, 246, 236, .88); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.edu-body { padding: 22px 24px 24px; }
.edu-meta { font-family: 'Inter', sans-serif; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--coral); font-weight: 600; }
.edu-title { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; color: var(--moss); margin: 10px 0 8px; line-height: 1.25; }
.edu-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.edu-note { max-width: 760px; margin: 32px auto 0; padding: 0 32px; font-size: 12.5px; color: var(--muted); text-align: center; font-style: italic; line-height: 1.7; }

/* BOOKING EMBED PLACEHOLDER (dark on cta) — feels like a feature card */
.booking-embed { margin: 32px auto 0; max-width: 580px; padding: 28px 32px 32px; background: rgba(251, 246, 236, .04); border: 1px solid rgba(251, 246, 236, .14); border-radius: 14px; }
.booking-embed.placeholder .be-label { display: none; }
.booking-embed .be-name { display: none; }
.booking-embed .be-desc { font-size: 14.5px; color: rgba(251, 246, 236, .72); line-height: 1.55; margin-bottom: 22px; max-width: 460px; margin-left: auto; margin-right: auto; }
.booking-embed .btn-primary { background: var(--coral); color: var(--bg); }
.booking-embed .btn-primary:hover { background: var(--bg); color: var(--moss); }
.booking-embed .be-note { margin-top: 18px; font-size: 11.5px; color: rgba(251, 246, 236, .42); font-style: italic; letter-spacing: 0.02em; }

/* BOOKING EMBED — LIGHT (for /book-now/) */
.booking-embed.light { background: var(--bg-2); border: 1px solid var(--line); max-width: 640px; padding: 36px 40px; }
.booking-embed.light .be-label { display: inline-block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--coral); font-weight: 700; margin-bottom: 8px; }
.booking-embed.light .be-name { display: block; font-family: 'Fraunces', serif; font-size: 26px; color: var(--moss); margin-bottom: 14px; font-weight: 500; }
.booking-embed.light .be-desc { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.booking-embed.light .btn-primary { background: var(--moss); color: var(--bg); }
.booking-embed.light .btn-primary:hover { background: var(--coral); color: var(--bg); }
.booking-embed.light .be-note { color: var(--muted); font-size: 12.5px; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg-2); }
.faq-list { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.faq-item { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.faq-item > .faq-q { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--moss); list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 28px; margin: 0; }
.faq-item > .faq-q::-webkit-details-marker { display: none; }
.faq-item > .faq-q::after { content: "+"; font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 400; line-height: 1; color: var(--coral); flex-shrink: 0; }
.faq-item[open] > .faq-q::after { content: "\2212"; }
.faq-item > .faq-q:hover { color: var(--coral); }
.faq-item > .faq-a { font-size: 15px; color: var(--muted); line-height: 1.65; padding: 0 28px 22px; margin: 0; }
.faq-group { margin-bottom: 48px; }
.faq-group-label { font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; color: var(--moss); margin-bottom: 18px; padding-left: 4px; }

/* CTA SECTION — light, warm, ends the page on cream */
.cta { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); color: var(--ink); padding: 110px 32px; text-align: center; border-top: 1px solid var(--line); }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-inner .kicker, .cta-inner .kicker.light { color: var(--coral); margin-bottom: 18px; }
.cta h2 { color: var(--moss); font-size: 52px; margin: 0 0 22px; font-weight: 500; }
.cta h2 em { color: var(--coral); }
.cta p { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 580px; margin: 0 auto 36px; }
.cta .btn-primary { background: var(--moss); color: var(--bg); }
.cta .btn-primary:hover { background: var(--coral); color: var(--bg); }

/* Booking embed inside the now-light CTA — invert from dark default */
.cta .booking-embed { background: var(--bg); border: 1px solid var(--line); }
.cta .booking-embed .be-desc { color: var(--muted); }
.cta .booking-embed .be-note { color: var(--muted); opacity: .75; }
.cta .booking-embed .btn-primary { background: var(--moss); color: var(--bg); }
.cta .booking-embed .btn-primary:hover { background: var(--coral); }

/* COMPLIANCE + FOOTER */
.compliance { padding: 40px 0; background: var(--bg); border-top: 1px solid var(--line); }
.compliance-inner { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.compliance p { font-size: 12.5px; color: var(--muted); line-height: 1.7; font-style: italic; }

.footer { background: var(--bg-2); padding: 72px 0 32px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; max-width: 1320px; margin: 0 auto; padding: 0 32px 48px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-tag { font-size: 13.5px; color: var(--muted); line-height: 1.55; max-width: 280px; font-style: italic; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.footer-col a:hover { color: var(--coral); }
.footer-col-label { font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; font-weight: 500; color: var(--moss); margin-bottom: 8px; }
.footer-addr { line-height: 1.55; }
.footer-base { display: flex; justify-content: space-between; max-width: 1320px; margin: 0 auto; padding: 24px 32px 0; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.footer-base a { color: var(--moss); }
.footer-base a:hover { color: var(--coral); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--moss); transition: color .2s, border-color .2s; }
.footer-social a:hover { color: var(--coral); border-color: var(--coral); }
.footer-social svg { width: 18px; height: 18px; }

/* INNER PAGE — PROSE */
.prose-section { padding: 88px 0; background: var(--bg); }
.prose-section.alt { background: var(--bg-2); }
.prose-inner { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.prose-inner h2 { font-size: 34px; margin-bottom: 18px; font-weight: 500; }
.prose-inner h3 { font-size: 22px; margin: 32px 0 12px; font-weight: 500; }
.prose-inner p { font-size: 17px; color: var(--ink); line-height: 1.75; margin-bottom: 16px; }
.prose-inner p.muted { color: var(--muted); }
.prose-inner ul { padding-left: 22px; margin-bottom: 22px; }
.prose-inner li { font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 8px; }
.prose-inner .kicker { margin-bottom: 14px; }

/* SPLIT SECTION (image + text) */
.split { padding: 80px 0; background: var(--bg); }
.split.alt { background: var(--bg-2); }
.split.dark { background: var(--moss); color: var(--bg); }
.split.dark .kicker { color: var(--coral-soft); }
.split.dark h2 { color: var(--bg); }
.split.dark p { color: rgba(251, 246, 236, .82); }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1200px; margin: 0 auto; padding: 0 32px; align-items: center; }
.split.reverse .split-photo { order: 2; }
.split-photo { aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; background: var(--bg-3); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.split-photo.placeholder { border: 1.5px dashed var(--line); background: var(--bg-2); display: flex; align-items: center; justify-content: center; }
.split.dark .split-photo.placeholder { border-color: rgba(251, 246, 236, .35); background: rgba(251, 246, 236, .04); }
.split-photo.placeholder .sp-text { text-align: center; padding: 24px; max-width: 280px; }
.split-photo.placeholder svg { width: 48px; height: 48px; color: var(--sage); margin: 0 auto 12px; }
.split.dark .split-photo.placeholder svg { color: var(--coral-soft); }
.split-photo.placeholder .sp-title { font-family: 'Fraunces', serif; font-size: 17px; color: var(--moss); font-style: italic; }
.split.dark .split-photo.placeholder .sp-title { color: var(--bg); }
.split-photo.placeholder .sp-sub { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; line-height: 1.5; }
.split.dark .split-photo.placeholder .sp-sub { color: rgba(251, 246, 236, .58); }
.split-text .kicker { margin-bottom: 14px; }
.split-text h2 { font-size: 36px; margin-bottom: 18px; font-weight: 500; }
.split-text p { font-size: 16.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

/* PULL QUOTE — typography-only visual break between prose sections */
.pull-quote { padding: 72px 32px; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pull-quote blockquote { max-width: 820px; margin: 0 auto; font-family: 'Fraunces', serif; font-size: 30px; line-height: 1.35; color: var(--moss); font-weight: 400; font-style: italic; text-align: center; position: relative; }
.pull-quote blockquote::before { content: "\201C"; display: block; font-family: 'Fraunces', serif; font-style: normal; font-size: 68px; line-height: 0.5; color: var(--coral); margin-bottom: 24px; }
.pull-quote .pq-attr { display: block; margin-top: 22px; font-family: 'Inter', sans-serif; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); font-weight: 600; font-style: normal; }

/* INFO BOX */
.info-box { background: var(--bg-2); border-left: 3px solid var(--coral); padding: 22px 28px; border-radius: 0 12px 12px 0; margin: 28px 0; }
.info-box .ib-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 6px; display: block; }
.info-box p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink); }

/* CHECKLIST */
.check-list { list-style: none; padding: 0; margin: 16px 0 28px; }
.check-list li { font-size: 16px; color: var(--ink); padding: 8px 0 8px 28px; position: relative; line-height: 1.6; }
.check-list li:before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--coral); font-weight: 700; }

/* RELATED SERVICES */
.related { padding: 80px 0; background: var(--bg-2); }
.related-head { text-align: center; margin-bottom: 36px; padding: 0 32px; }
.related-head .kicker { margin-bottom: 12px; }
.related-head h2 { font-size: 30px; font-weight: 500; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.related-card { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; transition: border-color .2s, transform .15s, box-shadow .2s; display: block; }
.related-card:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47, 63, 42, .08); }
.related-card .rl-name { font-family: 'Fraunces', serif; font-size: 18px; color: var(--moss); margin-bottom: 6px; font-weight: 500; }
.related-card .rl-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.related-card .rl-arrow { font-family: 'Fraunces', serif; color: var(--coral); font-size: 18px; }

/* LOCATION */
.location { padding: 80px 0; background: var(--bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 32px; align-items: start; }
.location-map { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; background: var(--bg-2); border: 1.5px dashed var(--line); display: flex; align-items: center; justify-content: center; }
.location-map .lm-text { text-align: center; padding: 24px; }
.location-map svg { width: 52px; height: 52px; color: var(--sage); margin-bottom: 12px; }
.location-map .lm-title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--moss); font-style: italic; }
.location-map .lm-sub { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-style: italic; }
.location-info dl { display: grid; gap: 22px; }
.location-info dt { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--coral); font-weight: 600; margin-bottom: 6px; }
.location-info dd { font-size: 16px; color: var(--ink); line-height: 1.6; }
.location-info dd a { color: var(--moss); border-bottom: 1px solid var(--line); }
.location-info dd a:hover { border-color: var(--coral); color: var(--coral); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-inner, .testing-inner, .doctor-inner, .footer-inner, .strip-grid, .split-inner, .location-grid, .page-hero.has-photo .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 40px 0 56px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-num { font-size: 26px; }
  .how-grid, .svc-grid { grid-template-columns: 1fr; }
  .router { padding: 56px 0 24px; }
  .router-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .testing-grid { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .price-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; min-height: 0; }
  .price-amount { text-align: left; }
  .testing-text h2, .doctor-text h2, .cta h2 { font-size: 32px; }
  .prose-inner h2, .split-text h2 { font-size: 26px; }
  .nav { padding: 14px 18px; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(47,63,42,.12);
    padding: 8px 18px 18px; max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-item { position: static; display: flex; flex-direction: column; align-items: stretch; }
  .nav-item.has-menu > .nav-link { width: 100%; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links > .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-item.has-menu::after { display: none; }
  .nav-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; background: transparent;
    min-width: 0; padding: 4px 0 10px 14px; display: none;
  }
  /* Tapping a menu button on touch devices fires :focus-within, which would
     otherwise re-apply the desktop translateX(-50%) and shove the submenu
     off the left edge. Keep it in place on mobile. */
  .nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { transform: none; left: auto; top: auto; }
  .nav-item.open .nav-menu { display: flex; }
  .nav-item.open .nav-chevron { transform: rotate(180deg); }
  .nav-cta { align-self: flex-start; margin-top: 14px; font-size: 13.5px; }
  .footer-cols { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .split.reverse .split-photo { order: 0; }
  /* Tighter vertical rhythm on mobile so pages don't feel infinite */
  .how, .services, .testing, .doctor, .pricing, .conditions, .education, .faq { padding: 64px 0; }
  .cta { padding: 72px 24px; }
  .strip { padding: 64px 24px; }
  .prose-section, .related { padding: 56px 0; }
  .pull-quote { padding: 48px 24px; }
  .pull-quote blockquote { font-size: 22px; }
  .pull-quote blockquote::before { font-size: 48px; margin-bottom: 16px; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 40px 0 64px; }
  /* Hero photo on mobile — cap height so it doesn't dominate */
  .hero-photo, .page-hero-photo { max-height: 480px; aspect-ratio: auto; }
  .hero-photo img, .page-hero-photo img { aspect-ratio: 4/5; }
  /* Conditions grid: single column on small screens */
}
@media (max-width: 600px) {
  .cond-grid, .router-grid { grid-template-columns: 1fr; }
  .breadcrumb { font-size: 11px; }
  .breadcrumb-sep { margin: 0 6px; }
}

/* Conditions index: 16 cards balance evenly at 4 columns (responsive) */
.cond-index-grid { grid-template-columns: repeat(4, 1fr); max-width: 1320px; }
@media (max-width: 1000px) { .cond-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cond-index-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Gentle motion + organic biophilic accents
   (all opt-in via .js-reveal; disabled under reduced-motion)
   ============================================================ */

/* Scroll reveal */
html.js-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); }
html.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

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

/* Organic ambient shapes — soft botanical glows behind key sections */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -150px; right: -130px;
  width: 480px; height: 480px; pointer-events: none; z-index: 0;
  border-radius: 42% 58% 63% 37% / 45% 38% 62% 55%;
  background: radial-gradient(circle at 38% 38%, rgba(122,139,111,.18), transparent 68%);
}
.hero::after {
  content: ""; position: absolute; bottom: -170px; left: -110px;
  width: 380px; height: 380px; pointer-events: none; z-index: 0;
  border-radius: 58% 42% 38% 62% / 52% 60% 40% 48%;
  background: radial-gradient(circle at 50% 50%, rgba(158,78,46,.09), transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }

.cta { position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 620px; height: 320px; pointer-events: none; z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(122,139,111,.16), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }

/* Micro-interaction polish */
.cond { transition: transform .2s ease, border-color .2s, background .2s, color .2s, box-shadow .2s; }
.cond:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.footer-social a:hover { transform: translateY(-2px); }

/* ---- Botanical pills: give every condition/symptom tag a leaf bullet + lift ---- */
.cond { background: #FFFCF6; position: relative; box-shadow: 0 1px 2px rgba(47,63,42,.03); }
.cond::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; z-index: 1; opacity: .7;
  transition: opacity .2s ease, transform .2s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6 6 6 13 12 22 18 13 18 6 12 2Z' fill='%237A8B6F'/%3E%3Cpath d='M12 4V20' stroke='%23ffffff' stroke-width='0.85' opacity='.6'/%3E%3C/svg%3E") no-repeat center / contain;
}
.cond:hover::before { opacity: 1; transform: translateY(-50%) rotate(-10deg); }
.cond:hover { background: var(--coral-soft); box-shadow: 0 8px 20px rgba(47,63,42,.10); }
.cond a { padding: 15px 20px 15px 44px; }
.cond:not(:has(a)) { padding: 15px 20px 15px 44px; }

/* ---- Organic icon chips on service + router cards ---- */
.svc-icon {
  width: 38px; height: 38px; color: var(--moss); box-sizing: content-box; padding: 13px;
  background: radial-gradient(circle at 32% 30%, var(--moss-soft), #DCE6D0);
  border-radius: 18px; margin-bottom: 20px;
  transition: transform .25s ease;
}
.svc:hover .svc-icon { transform: rotate(-4deg) scale(1.04); }
.rc-icon {
  width: 24px; height: 24px; color: var(--moss); box-sizing: content-box; padding: 9px;
  background: var(--moss-soft); border-radius: 12px;
  transition: color .2s, background .2s;
}
.router-card:hover .rc-icon { color: var(--coral); background: var(--coral-soft); }

/* ---- Faint botanical watermark to warm up large plain sections ---- */
.conditions, .pricing { position: relative; overflow: hidden; }
.conditions::after, .pricing::after {
  content: ""; position: absolute; right: -30px; bottom: -50px;
  width: 300px; height: 300px; pointer-events: none; opacity: .055;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%232F3F2A' stroke-width='0.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a10 10 0 1 0 20 0'/%3E%3Cpath d='M12 19a10 10 0 0 1 10 -10'/%3E%3Cpath d='M2 9a10 10 0 0 1 10 10'/%3E%3Cpath d='M12 4a9.7 9.7 0 0 1 2.99 7.5'/%3E%3Cpath d='M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}

/* ============================================================
   Editorial elevation: paper grain + signature statement
   ============================================================ */

/* Subtle paper-grain texture for tactile, crafted depth */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .38; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.4'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::before { opacity: .28; } }

/* Signature editorial statement moment */
.statement { background: var(--moss); color: var(--bg); padding: clamp(96px, 13vw, 184px) 32px; position: relative; overflow: hidden; }
.statement-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 2; }
.statement .kicker { margin-bottom: 30px; color: var(--coral-soft); }
.statement-quote { font-family: 'Fraunces', serif; font-weight: 400; color: var(--bg); font-size: clamp(38px, 6.8vw, 92px); line-height: 1.02; letter-spacing: -0.035em; max-width: 19ch; }
.statement-quote em { font-style: italic; color: var(--coral-soft); }
.statement-sub { font-size: clamp(17px, 1.4vw, 19px); color: rgba(251, 246, 236, .72); line-height: 1.6; max-width: 480px; margin-top: 32px; }
.statement::after {
  content: ""; position: absolute; right: -40px; bottom: -60px; z-index: 1; pointer-events: none; opacity: .11;
  width: clamp(260px, 34vw, 500px); height: clamp(260px, 34vw, 500px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23FBF6EC' stroke-width='0.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a10 10 0 1 0 20 0'/%3E%3Cpath d='M12 19a10 10 0 0 1 10 -10'/%3E%3Cpath d='M2 9a10 10 0 0 1 10 10'/%3E%3Cpath d='M12 4a9.7 9.7 0 0 1 2.99 7.5'/%3E%3Cpath d='M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}

/* Leaf-fan accent extended: FAQ sections + the booking sign-off on every page */
.faq { position: relative; overflow: hidden; }
.faq::after {
  content: ""; position: absolute; right: -34px; bottom: -46px; z-index: 0; pointer-events: none; opacity: .05;
  width: 300px; height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%232F3F2A' stroke-width='0.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a10 10 0 1 0 20 0'/%3E%3Cpath d='M12 19a10 10 0 0 1 10 -10'/%3E%3Cpath d='M2 9a10 10 0 0 1 10 10'/%3E%3Cpath d='M12 4a9.7 9.7 0 0 1 2.99 7.5'/%3E%3Cpath d='M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.faq .section-head, .faq-list { position: relative; z-index: 1; }
/* Homepage: keep the leaf only where it makes sense (statement band + booking sign-off) */
.home .conditions::after, .home .pricing::after, .home .faq::after { display: none; }
.cta::after {
  content: ""; position: absolute; left: -44px; bottom: -54px; z-index: 0; pointer-events: none; opacity: .10;
  width: clamp(220px, 26vw, 330px); height: clamp(220px, 26vw, 330px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23FBF6EC' stroke-width='0.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a10 10 0 1 0 20 0'/%3E%3Cpath d='M12 19a10 10 0 0 1 10 -10'/%3E%3Cpath d='M2 9a10 10 0 0 1 10 10'/%3E%3Cpath d='M12 4a9.7 9.7 0 0 1 2.99 7.5'/%3E%3Cpath d='M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
