/* ==========================================================================
   Five Factor Health Solutions — v2 design system
   "Warm sage premium" — evolves the existing #3d6b52 brand green into a
   full earthy palette inspired by the highest-converting 2026 practice sites.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand greens */
  --sage-900: #1E2E24;
  --sage-800: #26382C;
  --sage-700: #2F4F3E;
  --sage-600: #3D6B52;   /* legacy brand green — preserved */
  --sage-500: #517F65;
  --sage-300: #A8C0B0;
  --sage-100: #DCE7DE;
  --sage-050: #EDF3EE;

  /* Warm neutrals */
  --cream:    #FBF8F3;
  --sand:     #F3EDE3;
  --sand-dk:  #E5DBCB;
  --white:    #FFFFFF;

  /* Accent — clay/terracotta for calls to action */
  --clay-700: #8F4526;
  --clay-600: #A9532E;
  --clay-500: #C0653B;
  --clay-100: #F6E4DA;

  /* Signals */
  --gold:     #C08A2B;
  --ink:      #1B2620;
  --body:     #46564D;
  --muted:    #6C7C72;
  --line:     #DFDACE;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Space + shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --arch: 240px 240px var(--r-lg) var(--r-lg);
  --shadow-sm: 0 1px 2px rgba(27, 38, 32, .06), 0 2px 6px rgba(27, 38, 32, .05);
  --shadow-md: 0 4px 12px rgba(27, 38, 32, .07), 0 12px 28px rgba(27, 38, 32, .07);
  --shadow-lg: 0 10px 24px rgba(27, 38, 32, .09), 0 28px 60px rgba(27, 38, 32, .10);
  --wrap: 1180px;
  --wrap-narrow: 760px;

  /* Fixed chrome heights */
  --bar-h: 38px;
  --nav-h: 72px;
}

/* ---------- 2. Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.28; }
h4 { font-size: 1.0625rem; line-height: 1.35; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a  { color: var(--sage-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-600); }
strong { color: var(--sage-800); font-weight: 650; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--sage-800); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- 3. Layout helpers ------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.narrow { max-width: var(--wrap-narrow); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--white { background: var(--white); }
.section--mist  { background: var(--sage-050); }
.section--deep  { background: var(--sage-800); color: #D8E3DA; }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--deep strong { color: #fff; }
.section--deep a { color: #CFE0D4; }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 1rem;
}
.section--deep .eyebrow { color: var(--sage-300); }

.lede {
  font-size: clamp(1.075rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--body);
  max-width: 60ch;
}
.section--deep .lede { color: #C6D5CA; }

.grid { display: grid; gap: clamp(1.15rem, 2.4vw, 1.9rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* ---------- 4. Buttons -------------------------------------------------- */
.btn {
  --btn-bg: var(--clay-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--clay-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.075rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn--green { --btn-bg: var(--sage-600); }
.btn--green:hover { background: var(--sage-700); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--sage-800);
  border-color: var(--sage-300);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--sage-050); color: var(--sage-800); border-color: var(--sage-600); }
.section--deep .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.4); }
.section--deep .btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--sage-800); }
.btn--light:hover { background: var(--sand); color: var(--sage-900); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.center .btn-row { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 650; font-size: .96rem;
  color: var(--sage-700); text-decoration: none;
  border-bottom: 1.5px solid var(--sage-300);
  padding-bottom: 2px;
  transition: gap .18s ease, border-color .18s ease, color .18s ease;
}
.arrow-link:hover { gap: .7rem; color: var(--clay-600); border-color: var(--clay-500); }

@media (prefers-reduced-motion: reduce) {
  .btn, .arrow-link { transition: none; }
  .btn:hover { transform: none; }
}

/* ---------- 5. Top utility bar (new-patient offer) ---------------------- */
.offerbar {
  background: var(--sage-800);
  color: #E4EDE6;
  font-size: .855rem;
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
}
.offerbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .4rem;
}
.offerbar__offer {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 600; text-decoration: none;
}
.offerbar__offer:hover { color: #fff; }
.offerbar__offer .tag {
  background: var(--clay-500); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: var(--r-sm);
}
.offerbar__offer u { text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 3px; }
.offerbar__meta { display: flex; gap: 1.4rem; align-items: center; color: #B9CCBE; }
.offerbar__meta a { color: #fff; text-decoration: none; font-weight: 600; }
@media (max-width: 900px) { .offerbar__meta { display: none; } .offerbar .wrap { justify-content: center; } }

/* ---------- 6. Header / nav -------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header .wrap {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: var(--nav-h);
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__txt { display: none; }

.nav { margin-left: auto; display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-size: .95rem; font-weight: 550; color: var(--sage-800);
  text-decoration: none; padding: .5rem .68rem; border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav a:hover { background: var(--sage-050); color: var(--sage-900); }
.nav a[aria-current="page"] { color: var(--clay-700); font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: .6rem; margin-left: .6rem; }
.nav-tel {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: 1rem; color: var(--sage-800); text-decoration: none;
  white-space: nowrap;
}
.nav-tel:hover { color: var(--clay-600); }

.burger {
  display: none; margin-left: auto;
  background: none; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  width: 44px; height: 42px; cursor: pointer; align-items: center; justify-content: center;
  color: var(--sage-800);
}
.burger span { display: block; width: 20px; height: 2px; background: currentColor; position: relative; border-radius: 2px; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

@media (max-width: 1080px) {
  .nav, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1.15rem, 4vw, 2.5rem) 1.25rem;
    box-shadow: var(--shadow-md); margin: 0;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav.is-open a { padding: .85rem .25rem; border-bottom: 1px solid var(--sage-050); font-size: 1.05rem; }
  .nav.is-open .btn { margin-top: 1rem; }
}

/* ---------- 7. Sticky mobile action bar -------------------------------- */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: none; gap: 1px;
  background: var(--sage-800);
  box-shadow: 0 -6px 20px rgba(27,38,32,.16);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: 1rem .5rem; font-size: .97rem; font-weight: 700;
  text-decoration: none; color: #fff; background: var(--sage-700);
}
.actionbar a + a { background: var(--clay-600); }
@media (max-width: 860px) {
  .actionbar { display: flex; }
  body { padding-bottom: 62px; }
}

/* ---------- 8. Floating widgets (reviews badge + text us) --------------- */
.floaters {
  position: fixed; right: 18px; bottom: 20px; z-index: 110;
  display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
}
@media (max-width: 860px) { .floaters { display: none; } }

.revbadge {
  display: flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem .5rem .6rem; box-shadow: var(--shadow-md);
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.revbadge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--ink); }
.revbadge__g {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sage-050); color: var(--sage-700);
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
  font-family: var(--font-display);
}
.revbadge__n { font-size: .8rem; line-height: 1.25; }
.revbadge__n b { display: block; font-size: .95rem; color: var(--ink); }
.stars { color: var(--gold); letter-spacing: .04em; font-size: .82rem; }

.textus {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sage-700); color: #fff; border-radius: 999px;
  padding: .75rem 1.15rem; font-weight: 650; font-size: .95rem;
  text-decoration: none; box-shadow: var(--shadow-md);
  transition: transform .18s ease, background .18s ease;
}
.textus:hover { background: var(--sage-800); color: #fff; transform: translateY(-2px); }

/* ---------- 9. Hero ----------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::after {
  content: ""; position: absolute; inset: auto -10% -45% 45%;
  height: 70%; background: radial-gradient(closest-side, rgba(61,107,82,.10), transparent 72%);
  pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(2.75rem, 6vw, 5.5rem);
}
.hero h1 { margin-bottom: .55em; }
.hero h1 em { font-style: normal; color: var(--sage-600); }
.hero__sub { font-size: clamp(1.075rem, 1.6vw, 1.28rem); color: var(--body); max-width: 46ch; margin-bottom: 1.9rem; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--arch);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; bottom: 22px; left: -18px;
  background: #fff; border-radius: var(--r-md); padding: .85rem 1.1rem;
  box-shadow: var(--shadow-lg); max-width: 240px;
  display: flex; gap: .7rem; align-items: center;
}
.hero__badge img { width: 52px; height: 52px; border-radius: 8px; aspect-ratio: 1; box-shadow: none; }
.hero__badge p { font-size: .82rem; line-height: 1.35; color: var(--body); margin: 0; }
.hero__badge b { color: var(--ink); display: block; font-size: .88rem; }

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero__media { order: -1; max-width: 460px; }
  .hero__media img { aspect-ratio: 5/4; border-radius: var(--r-xl); }
  .hero__badge { left: auto; right: -8px; bottom: -14px; }
  .hero__sub { max-width: none; }
}

/* Proof chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; padding: 0; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: .4rem; margin: 0;
  background: var(--white); border: 1px solid var(--sand-dk); border-radius: 999px;
  padding: .42rem .85rem; font-size: .855rem; font-weight: 600; color: var(--sage-800);
  box-shadow: var(--shadow-sm);
}
.chips .tick { color: var(--sage-600); font-weight: 800; }
.chips .stars { font-size: .8rem; }

/* ---------- 10. Offer band --------------------------------------------- */
.offerband {
  background: linear-gradient(105deg, var(--sage-800) 0%, var(--sage-700) 55%, var(--sage-600) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.offerband::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(192,101,59,.22);
}
.offerband .wrap {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.75rem; padding-block: clamp(2rem, 4vw, 3.1rem);
}
.offerband__price {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1; color: #fff; font-weight: 600;
}
.offerband__price span { font-size: .42em; letter-spacing: .02em; }
.offerband h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: .35em; }
.offerband p { color: #CEDDD3; max-width: 46ch; font-size: 1rem; }
.offerband__left { display: flex; gap: 1.5rem; align-items: center; flex: 1 1 460px; }
.offerband small { display: block; margin-top: .8rem; color: #A9BFB0; font-size: .78rem; max-width: 44ch; }
@media (max-width: 620px) { .offerband__left { flex-direction: column; align-items: flex-start; gap: .5rem; } }

/* ---------- 11. Cards -------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .975rem; color: var(--body); }
.card .arrow-link, .card .btn { margin-top: auto; align-self: flex-start; }
.card > *:not(:last-child) { margin-bottom: .9rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sage-050); color: var(--sage-700);
  display: grid; place-items: center; font-size: 1.25rem;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) { .card { transition: none; } .card--link:hover { transform: none; } }

/* Path selector (chiro vs functional medicine) */
.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.5rem; }
.path {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.path:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.path::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--sage-600); }
.path--fm::before { background: var(--clay-500); }
.path h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.path ul { list-style: none; padding: 0; margin: 1.1rem 0 1.5rem; }
.path li { position: relative; padding-left: 1.6rem; font-size: .96rem; margin-bottom: .55em; }
.path li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--sage-600); font-weight: 800;
}
.path--fm li::before { color: var(--clay-500); }
.path__who {
  font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .9rem;
}
@media (prefers-reduced-motion: reduce) { .path { transition: none; } .path:hover { transform: none; } }

/* ---------- 12. Five factors ------------------------------------------- */
.factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.factor {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem 1.6rem 1.6rem;
  overflow: hidden;
}
.factor__num {
  font-family: var(--font-display); font-size: 4.5rem; line-height: .8;
  color: var(--sage-050); position: absolute; top: .35rem; right: .8rem;
  font-weight: 700; pointer-events: none; user-select: none;
}
.factor h3 { position: relative; font-size: 1.22rem; margin-bottom: .5em; }
.factor p { font-size: .95rem; margin: 0; position: relative; }
.factor__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-600); display: block; margin-bottom: .5rem; position: relative;
}

/* ---------- 13. Steps / timeline --------------------------------------- */
.tabs { display: flex; gap: .4rem; background: var(--white); border: 1px solid var(--line);
        border-radius: 999px; padding: .35rem; margin-bottom: 2.25rem; width: fit-content; }
.center .tabs { margin-inline: auto; }
.tabs button {
  border: 0; background: none; cursor: pointer; border-radius: 999px;
  padding: .65rem 1.35rem; font-family: var(--font-body); font-size: .95rem; font-weight: 650;
  color: var(--muted); transition: background .18s ease, color .18s ease;
}
.tabs button[aria-selected="true"] { background: var(--sage-700); color: #fff; }
@media (max-width: 520px) { .tabs { width: 100%; } .tabs button { flex: 1; padding: .65rem .5rem; font-size: .88rem; } }

.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps[hidden] { display: none; }
.steps li {
  position: relative; padding: 0 0 2rem 3.6rem; margin: 0;
  border-left: 2px solid var(--sage-100); margin-left: 1.1rem;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -1.15rem; top: -.15rem;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  background: var(--sage-700); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 650; font-size: 1.05rem;
}
.steps h3 { font-size: 1.2rem; margin-bottom: .3em; }
.steps p { font-size: .975rem; margin-bottom: .6em; }
.steps .dur {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--clay-700); background: var(--clay-100);
  padding: .28rem .7rem; border-radius: 999px;
}

/* ---------- 14. Reviews ------------------------------------------------ */
.rev-summary {
  display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 2rem; box-shadow: var(--shadow-sm); margin-bottom: 2.5rem;
}
.rev-summary__score { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--ink); }
.rev-summary .stars { font-size: 1.15rem; }

.quotes { columns: 3 300px; column-gap: 1.5rem; }
.quote {
  break-inside: avoid; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.quote blockquote { margin: 0 0 1rem; font-size: .99rem; color: var(--body); }
.quote blockquote p:first-child::before { content: "\201C"; }
.quote blockquote p:last-child::after { content: "\201D"; }
.quote figcaption { font-size: .9rem; font-weight: 700; color: var(--sage-800); }
.quote .note { display: block; font-size: .78rem; font-weight: 400; color: var(--muted); margin-top: .3rem; }
.quote .stars { display: block; margin-bottom: .75rem; font-size: .95rem; }

/* ---------- 15. Conditions grid ---------------------------------------- */
.cond-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .8rem; }
.cond {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.15rem; text-decoration: none;
  font-weight: 600; font-size: .98rem; color: var(--sage-800);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.cond:hover { border-color: var(--sage-600); color: var(--sage-900); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cond span:last-child { color: var(--clay-500); font-weight: 800; }

/* ---------- 16. FAQ ---------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .35rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 400; color: var(--sage-600);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--sage-700); }
.faq .answer { padding: 0 2.5rem 1.4rem 0; font-size: .995rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- 17. Forms ------------------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .9rem; font-weight: 650; color: var(--sage-800); margin-bottom: .4rem; }
.field .req { color: var(--clay-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--sand-dk);
  border-radius: var(--r-sm); transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--sage-600); background: #fff; outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin: .35rem 0 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.hp { position: absolute; left: -9999px; }

.radios { display: flex; flex-wrap: wrap; gap: .55rem; }
.radios label {
  display: inline-flex; align-items: center; gap: .45rem; margin: 0;
  border: 1.5px solid var(--sand-dk); border-radius: 999px;
  padding: .55rem 1rem; cursor: pointer; font-weight: 600; font-size: .92rem;
  background: var(--cream); transition: border-color .15s ease, background .15s ease;
}
.radios label:hover { border-color: var(--sage-300); }
.radios input { width: auto; accent-color: var(--sage-600); }
.radios input:checked + span { color: var(--sage-800); }
.radios label:has(input:checked) { border-color: var(--sage-600); background: var(--sage-050); }

.notice {
  border-left: 4px solid var(--clay-500); background: var(--clay-100);
  padding: 1rem 1.15rem; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .93rem; color: #6E3A20; margin-bottom: 1.5rem;
}
.notice strong { color: #5C2F19; }
.notice a { color: #6E3A20; }

/* ---------- 18. Media / feature rows ----------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--narrow-media { grid-template-columns: 1.15fr .85fr; }
.split img { border-radius: var(--r-xl); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split figure { margin: 0; }
.split figcaption { font-size: .82rem; color: var(--muted); margin-top: .7rem; }
@media (max-width: 880px) {
  .split, .split--narrow-media { grid-template-columns: 1fr; }
  .split--flip > figure, .split--flip > .split__media { order: -1; }
}

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.25rem; }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--sage-600); line-height: 1; font-weight: 650; margin-bottom: .35rem;
}
.section--deep .stat b { color: #fff; }
.stat span { font-size: .89rem; color: var(--muted); }
.section--deep .stat span { color: #AEC3B4; }

/* ---------- 19. Logos ------------------------------------------------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.25rem); }
.logos img { height: 58px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .2s ease, opacity .2s ease; }
.logos img:hover { filter: none; opacity: 1; }

/* ---------- 20. Location ---------------------------------------------- */
.loc { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.loc__map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 320px; box-shadow: var(--shadow-sm); }
.loc__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.hours { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .96rem; margin: 0;
}
.hours li b { color: var(--sage-800); font-weight: 650; }
.hours li.is-today { color: var(--clay-700); }
.hours li.is-today b { color: var(--clay-700); }
@media (max-width: 880px) { .loc { grid-template-columns: 1fr; } }

/* ---------- 21. Page header (interior pages) --------------------------- */
.pagehead { background: var(--sage-800); color: #D4E1D8; position: relative; overflow: hidden; }
.pagehead::before {
  content: ""; position: absolute; right: -100px; bottom: -140px;
  width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.05);
}
.pagehead .wrap { position: relative; z-index: 1; padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.pagehead h1 { color: #fff; margin-bottom: .4em; }
.pagehead .lede { color: #C4D5C9; }
.pagehead .eyebrow { color: var(--sage-300); }
.crumbs { font-size: .85rem; color: #9FB7A6; margin-bottom: 1.25rem; }
.crumbs a { color: #C4D5C9; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span { margin-inline: .4rem; }

/* ---------- 22. Prose (article pages) --------------------------------- */
.prose h2 { margin-top: 2.25em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75em; }
.prose > ul li, .prose > ol li { font-size: 1.03rem; }
.prose .callout {
  background: var(--sage-050); border-radius: var(--r-md);
  padding: 1.25rem 1.4rem; margin: 1.75rem 0; font-size: .99rem;
  border: 1px solid var(--sage-100);
}
.prose .callout h3 { margin-bottom: .4em; color: var(--sage-800); }

/* ---------- 23. Final CTA --------------------------------------------- */
.endcta { background: var(--sage-900); color: #C9D9CE; text-align: center; position: relative; overflow: hidden; }
.endcta::before, .endcta::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.endcta::before { width: 420px; height: 420px; left: -140px; top: -180px; background: rgba(61,107,82,.35); }
.endcta::after { width: 320px; height: 320px; right: -110px; bottom: -160px; background: rgba(192,101,59,.18); }
.endcta .wrap { position: relative; z-index: 1; padding-block: clamp(3.25rem, 7vw, 5.5rem); }
.endcta h2 { color: #fff; }
.endcta .lede { color: #B7CBBE; margin-inline: auto; margin-bottom: 2rem; }

/* ---------- 24. Footer ------------------------------------------------ */
.site-footer { background: var(--sand); border-top: 1px solid var(--sand-dk); color: var(--body); }
.site-footer .wrap { padding-block: clamp(2.5rem, 5vw, 3.75rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.site-footer h2 {
  font-family: var(--font-body); font-size: .75rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sage-700); margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55em; }
.site-footer a { color: var(--body); text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--clay-700); text-decoration: underline; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.75; }
.site-footer .brand img { height: 52px; margin-bottom: 1rem; }
.footer-legal {
  border-top: 1px solid var(--sand-dk); margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: .82rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}
.footer-legal p { max-width: 66ch; margin: 0; }

/* ---------- 25. Dev banner (remove at launch) ------------------------- */
.devbanner {
  background: #4A2E12; color: #FFE7C9; font-size: .82rem; text-align: center;
  padding: .55rem 1rem; line-height: 1.45;
}
.devbanner b { color: #FFC97A; }
.devbanner a { color: #FFC97A; }

/* Verify markers — every unconfirmed claim is wrapped in .v so it is
   impossible to ship one by accident. Delete this rule at launch and any
   remaining marker becomes invisible, so remove the spans instead. */
.v {
  display: inline;
  background: #FFF3D6;
  border-bottom: 2px dotted #C08A2B;
  color: #6B4A05;
  font-style: normal;
  font-size: .95em;
  padding: 0 .15em;
  border-radius: 2px;
}
.v code { font-size: .95em; background: rgba(0,0,0,.06); padding: 0 .25em; border-radius: 3px; }

/* ---------- 26. Scroll reveal ---------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 27. Utilities -------------------------------------------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.25rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
