/* ============================================================
   A Lyme Life — Christina Carter
   Design tokens + 3 toggleable directions
   ============================================================ */

/* ---------- Direction 1 · Sage Calm (default) ---------- */
:root,
[data-direction="sage"] {
  --bg: #faf7f0;
  --bg-alt: #f2ede1;
  --bg-deep: #2d3239;
  --surface: #ffffff;
  --ink: #2d3239;
  --ink-soft: #555b62;
  --ink-faint: #8b9097;
  --line: #e3ddd0;
  --green: #9dbe63;
  --green-deep: #6f8a42;
  --green-tint: #eef2e2;
  --accent: #c77b53;        /* clay / terracotta */
  --accent-tint: #f6e8df;
  --hero-overlay: linear-gradient(180deg, rgba(45,50,57,0) 0%, rgba(45,50,57,.55) 100%);

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --font-script: "Sacramento", cursive;
  --h-weight: 600;
  --h-spacing: -0.01em;
  --h-scale: 1;
  --btn-radius: 999px;
  --card-radius: 16px;
  --section-pad: 120px;
}

/* ---------- Direction 2 · Earthy Editorial ---------- */
[data-direction="earthy"] {
  --bg: #f4eee2;
  --bg-alt: #e9e0cf;
  --bg-deep: #353026;
  --surface: #fbf8f1;
  --ink: #353026;
  --ink-soft: #5e574a;
  --ink-faint: #938b78;
  --line: #ddd2bc;
  --green: #7e944b;
  --green-deep: #5d6e36;
  --green-tint: #e7e6cf;
  --accent: #bb6b43;
  --accent-tint: #f0ddcf;
  --hero-overlay: linear-gradient(180deg, rgba(53,48,38,.05) 0%, rgba(53,48,38,.6) 100%);

  --font-head: "Newsreader", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --font-script: "Sacramento", cursive;
  --h-weight: 500;
  --h-spacing: -0.02em;
  --h-scale: 1.04;
  --btn-radius: 4px;
  --card-radius: 6px;
  --section-pad: 128px;
}

/* ---------- Direction 3 · Warm Modern ---------- */
[data-direction="modern"] {
  --bg: #f7f5f1;
  --bg-alt: #ecefe6;
  --bg-deep: #21302a;
  --surface: #ffffff;
  --ink: #232a26;
  --ink-soft: #4f5852;
  --ink-faint: #868e88;
  --line: #e4e3dc;
  --green: #6fae5f;
  --green-deep: #4e8a45;
  --green-tint: #e6f0e0;
  --accent: #d98b54;
  --accent-tint: #f7e7d8;
  --hero-overlay: linear-gradient(180deg, rgba(33,48,42,0) 0%, rgba(33,48,42,.5) 100%);

  --font-head: "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-script: "Sacramento", cursive;
  --h-weight: 700;
  --h-spacing: -0.03em;
  --h-scale: 0.98;
  --btn-radius: 14px;
  --card-radius: 22px;
  --section-pad: 116px;
}

/* ============================================================
   Reset / base
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--h-weight);
  letter-spacing: var(--h-spacing);
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}

.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.narrow { width: min(760px, 92vw); margin: 0 auto; }

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
}
.eyebrow.center { justify-content: center; }

.lede { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.7; }
.script { font-family: var(--font-script); color: var(--green-deep); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--btn-radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(111,138,66,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(111,138,66,.85); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 52px; width: auto; transition: height .3s ease; }
.site-header.scrolled .nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: 168px;
  padding-bottom: 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  margin: 22px 0 24px;
}
.hero h1 em { font-style: normal; color: var(--green-deep); }
.hero .lede { max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-reassure {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-faint);
  font-weight: 600;
}
.hero-reassure .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.hero-media { position: relative; }
.hero-media image-slot {
  width: 100%;
  height: 540px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(45,50,57,.45);
}
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 38px;
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 18px 22px;
  box-shadow: 0 24px 50px -24px rgba(45,50,57,.4);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-badge .big { font-family: var(--font-head); font-size: 2.2rem; color: var(--green-deep); line-height: 1; font-weight: 700; }
.hero-badge .lbl { font-size: 13px; color: var(--ink-soft); font-weight: 600; line-height: 1.3; }

/* ============================================================
   Trust / affiliations strip
   ============================================================ */
.trust { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trust .wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust-label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); max-width: 180px; }
.trust-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.logo-chip {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: .8;
  transition: opacity .2s ease, color .2s ease;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-chip span { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.logo-chip:hover { opacity: 1; color: var(--green-deep); }

/* ============================================================
   Lite YouTube embed (click-to-play, plays inside the page)
   ============================================================ */
.yt {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg-deep);
  overflow: hidden;
}
.yt .yt-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .3s ease;
}
.yt:hover .yt-thumb { transform: scale(1.05); filter: brightness(.92); }
.yt .yt-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease;
}
.yt .yt-play .yt-play-bg { fill: #212121; opacity: .82; transition: fill .2s ease, opacity .2s ease; }
.yt:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); }
.yt:hover .yt-play .yt-play-bg { fill: var(--green-deep); opacity: 1; }
.yt iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ============================================================
   Stats band
   ============================================================ */
.stats { background: var(--bg); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 0 12px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -14px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.stat-num { font-family: var(--font-head); font-size: clamp(1.8rem, 2.6vw, 2.6rem); font-weight: 700; color: var(--green-deep); line-height: 1.05; }
.stat-lbl { font-size: 14px; color: var(--ink-soft); margin-top: 8px; font-weight: 600; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .stat + .stat::before { display: none; }
}

/* ============================================================
   Generic section heading
   ============================================================ */
.sec-head { max-width: 620px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 18px 0 18px; }
.sec-head p { color: var(--ink-soft); font-size: 1.12rem; }

/* ============================================================
   Story (timeline)
   ============================================================ */
.story { background: var(--surface); }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.story-photo { position: sticky; top: 110px; }
.story-photo image-slot { width: 100%; height: 600px; border-radius: var(--card-radius); overflow: hidden; box-shadow: 0 30px 60px -36px rgba(45,50,57,.5); }
.story-sig { font-family: var(--font-script); font-size: 2.4rem; color: var(--green-deep); margin-top: 18px; line-height: 1; }
.story-sig + .role { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: 6px; }

.timeline { position: relative; padding-left: 38px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, var(--line) 100%);
}
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--green);
}
.tl-year { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--green-deep); text-transform: uppercase; }
.tl-item h3 { font-size: 1.5rem; margin: 6px 0 8px; }
.tl-item p { color: var(--ink-soft); font-size: 1.02rem; }

/* ============================================================
   How it works
   ============================================================ */
.how { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 38px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 28px 50px -30px rgba(45,50,57,.4); }
.step-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 1.02rem; }
.how-note {
  margin-top: 40px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.how-note strong { color: var(--green-deep); }
.pill { background: var(--green-tint); color: var(--green-deep); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; letter-spacing: 0.04em; }

/* ============================================================
   Treatments
   ============================================================ */
.treat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.treat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 36px;
  transition: border-color .2s ease, transform .2s ease;
}
.treat-card:hover { border-color: var(--green); transform: translateY(-4px); }
.treat-card .tag { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.treat-card h3 { font-size: 1.7rem; margin: 10px 0 12px; }
.treat-card p { color: var(--ink-soft); font-size: 1.02rem; }
.treat-card .mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 1.3rem;
}

/* ============================================================
   Affiliations (detailed)
   ============================================================ */
.affil { background: var(--bg-deep); color: #efeae0; }
.affil .eyebrow { color: var(--green); }
.affil .eyebrow::before { background: var(--green); }
.affil h2 { color: #fff; }
.affil .sec-head p { color: #c3bdb1; }
.affil-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.affil-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--card-radius);
  padding: 40px;
}
.affil-card .role-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.affil-card h3 { color: #fff; font-size: 1.9rem; margin: 12px 0 14px; }
.affil-card p { color: #c3bdb1; font-size: 1.02rem; margin-bottom: 22px; }
.affil-card a.link { color: #fff; font-weight: 700; font-size: 14px; border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.affil-card a.link:hover { color: var(--green); }

/* split partnership rows — half photo, half text */
.affil-rows { display: grid; gap: 26px; }
.affil-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.affil-split.reverse .affil-split-media { order: 2; }
/* contain variant — for a wide group photo / low-res image: show the WHOLE
   photo (no cropping) on a soft backing. Give the photo the WIDER column and a
   shorter height so a wide landscape group shot fits everyone and a low-res
   file isn't blown up too large. */
.affil-split.contain-media { grid-template-columns: 0.82fr 1.18fr; align-items: center; }
.affil-split.contain-media .affil-split-media {
  background: #f4f1ea;
  padding: 20px;
  min-height: 0;
  align-self: stretch;
}
.affil-split.contain-media .affil-split-media image-slot { border-radius: 10px; overflow: hidden; }
.affil-split-media {
  position: relative;
  min-height: 340px;
  background: rgba(0,0,0,.2);
}
.affil-split-media image-slot { width: 100%; height: 100%; }
.affil-split-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.affil-split-body .role-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.affil-split-body h3 { color: #fff; font-size: clamp(1.8rem, 2.6vw, 2.3rem); margin: 12px 0 14px; }
.affil-split-body p { color: #c3bdb1; font-size: 1.05rem; margin-bottom: 24px; }
.affil-split-body a.link { color: #fff; font-weight: 700; font-size: 14px; border-bottom: 2px solid var(--green); padding-bottom: 2px; align-self: flex-start; transition: color .2s ease; }
.affil-split-body a.link:hover { color: var(--green); }
@media (max-width: 860px) {
  .affil-split { grid-template-columns: 1fr; }
  .affil-split.reverse .affil-split-media { order: 0; }
  .affil-split-media { min-height: 240px; }
  .affil-split-body { padding: 34px; }
}

/* ============================================================
   Videos
   ============================================================ */
.videos { background: var(--bg); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 28px 50px -30px rgba(45,50,57,.4); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-deep);
  overflow: hidden;
}
.video-thumb image-slot { width: 100%; height: 100%; }
.video-thumb .play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-thumb .play span {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
}
.video-thumb .play svg { margin-left: 4px; }
.video-meta { padding: 22px 24px 26px; }
.video-meta .cat { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-deep); }
.video-meta h3 { font-size: 1.35rem; margin-top: 8px; }
.videos-cta { display: flex; gap: 16px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }

/* ============================================================
   Testimonials
   ============================================================ */
.testi { background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 38px 34px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.quote .mark { font-family: var(--font-head); font-size: 3.6rem; line-height: .6; color: var(--green); height: 28px; }
.quote p { color: var(--ink-soft); font-size: 1.06rem; margin: 12px 0 22px; flex: 1; }
.quote .who { font-weight: 700; color: var(--ink); font-size: 14px; }
.quote .who span { display: block; color: var(--ink-faint); font-weight: 600; font-size: 13px; }
.placeholder-note { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 22px; font-style: italic; }

/* ============================================================
   Final CTA + form
   ============================================================ */
.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 18px 0 18px; }
.contact .lede { margin-bottom: 26px; }
.contact-points { list-style: none; display: grid; gap: 14px; margin-top: 12px; }
.contact-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 1.04rem; }
.contact-points .ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-tint); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; margin-top: 2px;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--card-radius) + 6px);
  padding: 40px;
  box-shadow: 0 40px 80px -50px rgba(45,50,57,.5);
}
.form-row { display: grid; gap: 7px; margin-bottom: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
}
.form-row textarea { resize: vertical; min-height: 96px; }
.form-row .err { color: var(--accent); font-size: 12px; font-weight: 600; display: none; }
.form-row.invalid input, .form-row.invalid select { border-color: var(--accent); }
.form-row.invalid .err { display: block; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-fine { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 16px; line-height: 1.5; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .ico { width: 66px; height: 66px; border-radius: 50%; background: var(--green-tint); color: var(--green-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 30px; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }
form.sent .form-fields { display: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: var(--h-weight); color: var(--ink);
}
.faq-q .sign { flex: none; width: 30px; height: 30px; position: relative; transition: transform .25s ease; }
.faq-q .sign::before, .faq-q .sign::after { content: ""; position: absolute; background: var(--green-deep); border-radius: 2px; }
.faq-q .sign::before { top: 50%; left: 0; right: 0; height: 2.5px; transform: translateY(-50%); }
.faq-q .sign::after { left: 50%; top: 0; bottom: 0; width: 2.5px; transform: translateX(-50%); transition: opacity .25s ease; }
.faq-item.open .faq-q .sign::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 26px; color: var(--ink-soft); font-size: 1.06rem; max-width: 60em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--bg-deep); color: #cdc7ba; padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 56px; opacity: .95; margin-bottom: 18px; }
.footer-brand p { color: #b0a99b; font-size: .98rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: #b0a99b; font-size: .98rem; margin-bottom: 12px; transition: color .2s ease; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #8f897c; }
.footer-disclaimer { background: rgba(0,0,0,.18); border-radius: 12px; padding: 18px 22px; font-size: 12.5px; line-height: 1.6; color: #8f897c; margin-bottom: 30px; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Hidden state applies ONLY when JS is running (html.js-anim). If JS or the
     IntersectionObserver fails, content stays fully visible — never blank. */
  html.js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  html.js-anim .reveal.in { opacity: 1; transform: none; }
  /* Hard guarantee: once set by the JS failsafe, force the visible end-state with
     NO transition — so content shows even in runtimes where transitions never tick. */
  html.reveal-off .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  body { font-size: 17px; }
  :root, [data-direction] { --section-pad: 80px; }
  .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-photo { position: static; }
  .story-photo image-slot { height: 420px; }
  .steps, .video-grid, .testi-grid, .treat-grid, .affil-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); padding: 24px; gap: 18px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.3);
    border-top: 1px solid var(--line);
  }
  .hero-badge { left: 12px; }
}
@media (max-width: 560px) {
  .form-row.two { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .trust .wrap { justify-content: center; }
  .trust-logos { justify-content: center; gap: 28px; }
}
