/* =====================================================================
   ACTIVE LIFESTYLE MEDICAL — Design System
   Sterling, VA  •  Chiropractic & Wellness
   Tokens → Base → Layout → Components → Sections → Motion → Responsive
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. DESIGN TOKENS                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Brand palette — strict 4-color system */
  --light:      #FAFAF3;   /* Background */
  --primary:    #31446C;   /* Navy — dominant brand blue */
  --secondary:  #A5B278;   /* Primary — sage green */
  --accent:     #5D6E52;   /* Secondary Green — olive, for CTAs */
  --dark:       #31446C;   /* Dark sections use Navy (was #0E1E3A) */
  --dark-2:     #31446C;   /* Alias — same Navy */

  /* Derived / neutrals — tints of brand tokens only */
  --ink:        #31446C;                         /* Navy for body copy on light */
  --ink-soft:   rgba(49, 68, 108, 0.72);         /* Navy at 72% opacity */
  --line:       rgba(49, 68, 108, 0.12);         /* Navy at 12% for hairlines */
  --line-dark:  rgba(255, 255, 255, 0.14);
  --white:      #FFFFFF;
  --cream-card: #FAFAF3;
  --accent-hover: #48583F;                       /* darker Secondary Green for hover */
  --secondary-tint: rgba(165, 178, 120, 0.18);   /* Primary at 18% for chip bg */

  /* Typography */
  --font-head: "STIX Two Text", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: .78rem;
  --fs-body:    1rem;
  --fs-lead:    clamp(1.02rem, .98rem + .4vw, 1.18rem);
  --fs-h4:      clamp(1.1rem, 1rem + .5vw, 1.35rem);
  --fs-h3:      clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.8vw, 3.5rem);
  --fs-h1:      clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
  --fs-display: clamp(2.4rem, 1.5rem + 4vw, 4.25rem);
  --fs-card-title:    1.08rem;   /* dense icon-utility card grids */
  --fs-card-title-lg: 1.3rem;    /* spacious/media feature cards */

  /* Spacing scale */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* Section rhythm */
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --section-y-inner: clamp(4rem, 3rem + 4vw, 6rem); /* Service/Condition inner-page sections */

  /* Radius */
  --r-xs: 8px;  --r-sm: 12px;  --r-md: 18px;  --r-lg: 26px;  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(20,30,55,.06);
  --sh-md: 0 12px 30px -12px rgba(20,30,55,.18);
  --sh-lg: 0 30px 60px -24px rgba(20,30,55,.30);
  --sh-cta: 0 14px 26px -12px rgba(93,110,82,.6);
  --sh-cta-blue: 0 14px 26px -12px rgba(49,68,108,.55);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.15rem, .6rem + 2.5vw, 3.25rem);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .5s;

  --header-h: 84px;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

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

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 500; line-height: 1.08; color: var(--primary); letter-spacing: -.01em; }
.accent-italic { font-style: italic; color: var(--accent); }
/* On dark/navy backgrounds, swap to the brighter sage for contrast — single source of truth */
.reviews .accent-italic,
.path .accent-italic,
.svc-hero .accent-italic,
.why-split .accent-italic,
.section--dark .accent-italic,
.sec-head.on-dark .accent-italic {
  color: var(--secondary);
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary); color: #fff; padding: .7rem 1.1rem; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------------ */
/* 3. LAYOUT PRIMITIVES                                                */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1440px; }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: var(--fs-eyebrow); letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-4);
}
.eyebrow.on-dark { color: var(--secondary); }
/* Line-prefixed variant — used on dark, image-backed hero banners */
.eyebrow.eyebrow--line { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.eyebrow.eyebrow--line::before { content: ""; width: 34px; height: 1px; background: currentColor; display: block; flex: none; }

.section-title { font-size: var(--fs-h2); }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 62ch; }
.rule { width: 64px; height: 3px; background: var(--secondary); border-radius: 3px; margin: var(--sp-4) 0 var(--sp-5); }
.rule.center-rule { margin-inline: auto; }

/* Consistent rhythm: eyebrow → heading → body → CTA */
.section h2 { text-wrap: balance; }
.section h1 { text-wrap: balance; }
.section p { max-width: 62ch; }
.section .center p { margin-inline: auto; }
.section .btn { margin-top: 2rem; }

/* ------------------------------------------------------------------ */
/* 4. BUTTONS                                                          */
/* ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--accent); --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  box-shadow: var(--sh-cta);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg, .btn .arrow { transition: transform .35s var(--ease-out); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -12px rgba(93,110,82,.7); background: var(--accent-hover); }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn-primary { --btn-bg: var(--accent); --btn-fg:#fff; }
/* On dark backgrounds — solid olive, white text, no colored glow */
.svc-hero .btn-primary,
.section--dark .btn-primary,
.why-split .btn-primary,
.stories .btn-primary {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  box-shadow: none;
}
.svc-hero .btn-primary:hover,
.section--dark .btn-primary:hover,
.why-split .btn-primary:hover,
.stories .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: none;
}
.btn-blue { --btn-bg: var(--primary); --btn-fg:#fff; box-shadow: var(--sh-cta-blue); }
.btn-blue:hover { background:#2a3a5d; box-shadow: 0 20px 34px -12px rgba(49,68,108,.6); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
  padding-block: calc(.95rem - 1.5px);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 18px 30px -12px rgba(49,68,108,.35);
}
.btn-ghost { background: transparent; color: var(--primary); box-shadow: none; padding-left: .4rem; }
.btn-ghost:hover { background: transparent; box-shadow: none; }
.btn-ghost .circle {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--primary);
  display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease), transform .35s var(--ease-out);
}
.btn-ghost:hover .circle { background: var(--primary); color: #fff; transform: translateX(4px); }
.btn-ghost.on-dark { color: #fff; }
.btn-ghost.on-dark .circle { border-color: rgba(255,255,255,.5); }
.btn-ghost.on-dark:hover .circle { background:#fff; color: var(--primary); }
.btn-block { width: 100%; justify-content: center; }

/* ------------------------------------------------------------------ */
/* 5. HEADER / NAV                                                     */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s var(--ease), height .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-sm); height: 72px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { height: 52px; width: auto; flex: none; display: block; transition: height .3s var(--ease); }
.site-header.scrolled .brand__mark { height: 44px; }

.nav { display: flex; align-items: center; gap: clamp(.85rem,1.5vw,1.6rem); }
.nav a { position: relative; white-space: nowrap; font-weight: 500; font-size: .92rem; color: var(--primary); padding: .3rem 0; transition: color .25s; }
.nav a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover::after, .nav a[aria-current="true"]::after { width: 100%; }

/* Phone number as primary nav action */
.nav-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: var(--r-pill);
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  white-space: nowrap; box-shadow: var(--sh-cta);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease);
}
.nav-phone:hover { transform: translateY(-2px); background: var(--accent-hover); box-shadow: 0 20px 34px -12px rgba(93,110,82,.7); }
.nav-phone svg { width: 18px; height: 18px; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.nav-toggle {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  display: none; place-items: center; background: rgba(255,255,255,.5); transition: background .3s, border-color .3s;
}
.nav-toggle:hover { background:#fff; border-color: var(--accent); }
.nav-toggle span { display:block; width: 18px; height: 2px; background: var(--primary); position: relative; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; width:18px; height:2px; background: var(--primary); transition: transform .3s var(--ease); }
.nav-toggle span::before { top:-6px; } .nav-toggle span::after { top:6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* 6. HERO                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + clamp(2rem, 4vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, var(--light) 0%, var(--light) 30%, rgba(250,250,243,.72) 42%, rgba(250,250,243,.15) 55%, rgba(250,250,243,0) 66%),
    linear-gradient(0deg, rgba(49,68,108,.10), rgba(49,68,108,.02));
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: var(--fs-h1);
  max-width: 24ch;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero h1 .line2 { display: block; }
.hero__sub {
  margin-top: 1.4rem;
  max-width: 48ch;
  font-size: var(--fs-lead);
  color: var(--ink);
  font-weight: 400;
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.2rem; }
.hero__cta .btn { min-width: 230px; justify-content: center; }
.hero__stats { display: flex; gap: clamp(1rem,3vw,2.6rem); margin-top: 3rem; }
.hero__stat { position: relative; padding-right: clamp(1rem,3vw,2.6rem); }
.hero__stat:not(:last-child)::after { content:""; position:absolute; right:0; top:6px; bottom:6px; width:1px; background: var(--line); }
.hero__stat b {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.1rem + .9vw, 1.85rem);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -.01em;
}
.hero__stat .stat-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: inherit;
  line-height: 1;
}
.hero__stat .stat-star {
  color: var(--secondary);
  flex: none;
  translate: 0 -1px;
}
.hero__stat span { font-size: .82rem; color: var(--ink-soft); }

/* Hero scroll indicator + side rail intentionally removed per revision */

/* ------------------------------------------------------------------ */
/* 7. ABOUT                                                            */
/* ------------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.about__media { position: relative; border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--sh-lg); }
.about__media img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about__media:hover img { transform: scale(1.05); }
.about h2 { font-size: var(--fs-h2); }
.about p { margin-top: 1.2rem; color: var(--ink-soft); max-width: 46ch; }
.about p strong { color: var(--primary); font-weight: 600; }
.about .btn { margin-top: 2rem; }

/* ------------------------------------------------------------------ */
/* 8. REVIEWS (dark)                                                   */
/* ------------------------------------------------------------------ */
.reviews {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 3.5vw, 4rem);
}
.reviews__intro.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}
.reviews__intro .eyebrow.on-dark { color: var(--secondary); }
.reviews h2 { color: #fff; font-size: var(--fs-h2); text-wrap: balance; }
.reviews__note {
  margin-top: 1.2rem;
  color: rgba(255,255,255,.75);
  max-width: 46ch;
  margin-inline: auto;
}
.reviews__strip { width: 100%; overflow: hidden; }

/* Reviews marquee — horizontal auto-scroll */
.reviews-marquee {
  overflow: hidden;
  padding: .6rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.reviews-marquee__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
  animation: reviewsScroll 75s linear infinite;
}
.reviews-marquee:hover .reviews-marquee__track,
.reviews-marquee:focus-within .reviews-marquee__track {
  animation-play-state: paused;
}
@keyframes reviewsScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track { animation: none; transform: none; }
  .reviews-marquee { mask-image: none; -webkit-mask-image: none; overflow-x: auto; scrollbar-width: none; }
  .reviews-marquee::-webkit-scrollbar { display: none; }
}

/* Individual review card */
.review-card {
  flex: 0 0 clamp(280px, 26vw, 340px);
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.28);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-height: 220px;
}
.review-card__head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: .8rem;
  align-items: center;
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}
.review-card__meta { min-width: 0; }
.review-card__name {
  margin: 0 0 .25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
  line-height: 1.2;
}
.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #F5B400; /* gold */
}
.review-card__stars svg {
  width: 14px; height: 14px;
  fill: currentColor;
  stroke: none;
}
.review-card__source {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  flex: none;
}
.review-card__source svg { width: 22px; height: 22px; }
.review-card__text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(38, 49, 74, 0.85);
  font-family: var(--font-body);
  text-wrap: pretty;
}
@media (max-width: 620px) {
  .review-card { flex-basis: clamp(240px, 78vw, 300px); }
}

/* ------------------------------------------------------------------ */
/* 9. SERVICES                                                         */
/* ------------------------------------------------------------------ */
.services {
  background: var(--light);
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* Header block — centered, spans full width */
.services__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(1.5rem, 2vw, 2rem);
}
.services__head .eyebrow { color: var(--accent); }
.services__head .rule { margin: .8rem auto 1.4rem; }
.services__head h2 {
  font-size: var(--fs-h2);
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 1rem;
}
.services__head p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

/* Body: 3-col — pills | image | pills */
.services-layout {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 44%) 1fr;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  align-items: center;
}

/* Center image w/ subtle circle backdrop */
.services__figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  margin-top: -0.5rem;
}
.services__figure::before {
  content: "";
  position: absolute;
  inset: auto 6% 6% 6%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(165,178,120,.14), rgba(165,178,120,0) 68%);
  z-index: 0;
}
.services__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

/* Pill columns */
.svc-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.svc-col--left  { align-items: stretch; }
.svc-col--right { align-items: stretch; }

/* Pill card */
.svc-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 68px;
  padding: .85rem 1.25rem .85rem .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: 0 12px 24px -14px rgba(49, 68, 108, .18);
  color: var(--primary);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.svc-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -14px rgba(49, 68, 108, .28);
  border-color: rgba(165, 178, 120, .55);
}
.svc-pill__icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
}
.svc-pill__icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-pill__label {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.25;
  color: var(--primary);
}
.svc-pill .chev {
  flex: none;
  width: 18px; height: 18px;
  color: var(--primary);
  opacity: .5;
  transition: transform .3s var(--ease), opacity .3s;
}
.svc-pill:hover .chev { transform: translateX(3px); opacity: 1; color: var(--accent); }

/* ------------------------------------------------------------------ */
/* 10. CONDITIONS                                                      */
/* ------------------------------------------------------------------ */
.conditions { background: #F1F0E4; }
.conditions__head { max-width: 46rem; margin-inline: auto; }
.conditions h2 { font-size: var(--fs-h2); }
.carousel { position: relative; margin-top: 3rem; overflow: visible; }
.carousel__viewport { overflow: hidden; border-radius: var(--r-lg); }
.carousel__track { display: flex; gap: 1.5rem; transition: transform .6s var(--ease-out); }
.cond-card {
  position: relative; flex: 0 0 calc((100% - 3rem)/3); border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--sh-md); isolation: isolate;
}
.cond-card img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.cond-card::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(14,30,58,.92) 6%, rgba(14,30,58,.55) 40%, rgba(14,30,58,.05) 75%); }
.cond-card:hover img { transform: scale(1.07); }
.cond-card__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.5rem; color: #fff; }
.cond-card__icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(165,178,120,.22); border:1px solid rgba(165,178,120,.5); color: var(--secondary); display:grid; place-items:center; margin-bottom: .8rem; }
.cond-card h3 { color: #fff; font-size: var(--fs-card-title-lg); margin-bottom: .4rem; }
.cond-card p { font-size: .84rem; color: rgba(255,255,255,.8); }
.cond-card__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .9rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .84rem;
  color: var(--secondary); letter-spacing: .02em;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.cond-card__cta svg { transition: transform .25s var(--ease); }
.cond-card__cta:hover { color: #fff; gap: .75rem; }
.cond-card__cta:hover svg { transform: translateX(3px); }
.carousel__nav {
  position:absolute; top:50%;
  width:56px; height:56px; border-radius:50%;
  border:1.5px solid var(--line); background: #fff;
  display:grid; place-items:center; color: var(--primary);
  box-shadow: 0 18px 38px -14px rgba(49,68,108,.35);
  transition: background .3s, transform .3s var(--ease), color .3s, border-color .3s, box-shadow .3s;
  z-index:5;
}
.carousel__nav:hover { background: var(--accent); color:#fff; border-color: var(--accent); }
.carousel__nav[disabled] { opacity:.35; cursor: not-allowed; }
/* Arrows break out of the image container — center sits on the image edge,
   half hangs outside the carousel, half overlaps the card. */
.carousel__nav.prev { left: 0;   transform: translate(-50%, -50%); }
.carousel__nav.next { right: 0;  transform: translate( 50%, -50%); }
.carousel__nav.prev:hover { transform: translate(-50%, -50%) scale(1.06); }
.carousel__nav.next:hover { transform: translate( 50%, -50%) scale(1.06); }
.carousel__dots { display:flex; gap:.5rem; justify-content:center; margin-top: 1.8rem; }
.carousel__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: width .3s var(--ease), background .3s; }
.carousel__dots button[aria-current="true"] { width: 26px; background: var(--accent); border-radius: var(--r-pill); }

/* ------------------------------------------------------------------ */
/* 11. OUR SOLUTIONS (dark)                                            */
/* ------------------------------------------------------------------ */
.solutions { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.solutions-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.solutions__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.08); }
.solutions__media img { width:100%; height:100%; object-fit: cover; }
.solutions h2 { color:#fff; font-size: var(--fs-h2); }
.solutions p { color: rgba(255,255,255,.74); margin-top: 1.3rem; max-width: 52ch; }
.solutions .rule { background: var(--secondary); }
/* Decorative dots removed per revision */
.feature-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
  margin-top: 2.5rem; border-top: 1px solid var(--line-dark); padding-top: 2rem;
  align-items: stretch;
}
.feature {
  display: flex; flex-direction: column; align-items: flex-start; gap: .7rem;
  text-align: left; min-height: 100%;
}
.feature__icon { width: 42px; height: 42px; color: var(--secondary); }
.feature b {
  display:block; font-family: var(--font-body);
  font-weight: 600; font-size: .95rem; color:#fff; line-height:1.35;
}

/* ------------------------------------------------------------------ */
/* 12. WHY CHOOSE (accordion + anatomy)                                */
/* ------------------------------------------------------------------ */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.why h2 { font-size: var(--fs-h2); }
.why p {
  color: var(--ink-soft);
  margin-top: 1rem;
}
.why__content p { max-width: 58ch; }
.why p strong { color: var(--primary); font-weight: 600; }
.why__panel {
  display: block;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--sh-sm);
}
.why__panel .accordion { width: 100%; }

.accordion { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:last-child { border-bottom: 0; }
.acc-trigger { display: flex; align-items:center; justify-content: space-between; gap:1rem; width:100%; padding: 1rem .4rem; text-align:left; font-weight:500; color: var(--primary); }
.acc-trigger .ai { display:flex; align-items:center; gap:.7rem; }
.acc-trigger .ai svg { color: var(--accent); width:20px; height:20px; flex:none; }
.acc-plus { position: relative; width: 18px; height:18px; flex:none; }
.acc-plus::before, .acc-plus::after { content:""; position:absolute; background: var(--accent); border-radius:2px; transition: transform .3s var(--ease), opacity .3s; }
.acc-plus::before { left:0; top:8px; width:18px; height:2px; }
.acc-plus::after { left:8px; top:0; width:2px; height:18px; }
.acc-item.open .acc-plus::after { transform: scaleY(0); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.acc-panel p { padding: 0 .4rem 1rem; font-size: .86rem; color: var(--ink-soft); margin:0; }

.anatomy { position: relative; align-self: stretch; display:grid; place-items:center; min-height: 320px; }
.anatomy svg { width: 100%; max-width: 220px; height: auto; }
.ana-point { fill: var(--secondary); transform-origin: center; animation: pulse 2.4s var(--ease) infinite; }
.ana-point:nth-child(2){ animation-delay:.4s;} .ana-point:nth-child(3){animation-delay:.8s;}
.ana-point:nth-child(4){ animation-delay:1.2s;} .ana-point:nth-child(5){animation-delay:1.6s;}
@keyframes pulse { 0%,100%{ opacity:.55; r:5;} 50%{ opacity:1; r:8;} }

.cta-banner {
  display:flex; align-items:center; gap: 1.4rem; margin-top: 2.5rem;
  background: var(--dark); color:#fff; border-radius: var(--r-lg); padding: 1.8rem 2rem; box-shadow: var(--sh-md);
}
.cta-banner__icon { width: 60px; height:60px; border-radius:50%; background: var(--accent); color:#fff; display:grid; place-items:center; flex:none; }
.cta-banner p { color: rgba(255,255,255,.86); margin:0; max-width: 60ch; }
.cta-banner p a { color: var(--secondary); font-weight:600; }

/* ------------------------------------------------------------------ */
/* 13. PATH TO STRONG HEALTH — compact banner                          */
/* ------------------------------------------------------------------ */
.path {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(5rem, 8vw, 8rem);
  color: #fff;
}
.path__bg {
  position: absolute;
  left: 0; right: 0;
  top: -12%;
  height: 124%;
  width: 100%;
  z-index: 0;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .path__bg { top: 0; height: 100%; transform: none !important; }
}
.path__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(49,68,108,.55) 0%, rgba(49,68,108,.78) 60%, rgba(49,68,108,.85) 100%);
}
.path__inner {
  position: relative; z-index: 2;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.path .eyebrow { color: var(--secondary); }
.path__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.path__lede {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,.86);
  max-width: 58ch;
  margin: 0 auto 2rem;
}
.path__cta {
  display: inline-flex; flex-wrap: wrap;
  gap: .9rem;
  align-items: center; justify-content: center;
}
.path__cta .btn-glass {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 600; font-size: .95rem;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-out), background .3s var(--ease), border-color .3s;
  white-space: nowrap;
}
.path__cta .btn-glass:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.path__cta .btn-glass svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------------ */
/* 14. FAQ                                                             */
/* ------------------------------------------------------------------ */
.faq { background: var(--light); }
.faq__head { max-width: 44rem; margin-inline:auto; }
.faq h2 { font-size: var(--fs-h2); }
.faq__head p { max-width: 32rem; margin-inline: auto; }
.faq-list { max-width: 52rem; margin: 3rem auto 0; display:flex; flex-direction:column; gap: 1rem; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow:hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--sh-md); border-color: var(--secondary); }
.faq-item .acc-trigger { padding: 1.25rem 1.5rem; font-family: var(--font-head); font-size: 1.08rem; }
.faq-item .acc-panel p { padding: 0 1.5rem 1.4rem; }

/* ------------------------------------------------------------------ */
/* 15. PATIENT SUCCESS STORIES — navy marquee + dots                   */
/* ------------------------------------------------------------------ */
.stories {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}
.stories__head { text-align: center; max-width: 46rem; margin: 0 auto 3rem; }
.stories h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: .6rem; }
.stories__sub { color: rgba(255,255,255,.75); }

/* Marquee track */
.marquee {
  overflow: hidden;
  padding: .6rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 60s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Card — no frame, just the image + play icon */
.marquee .vid-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 17vw, 240px);
  aspect-ratio: 9/16;
  border-radius: var(--r-md);
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  isolation: isolate;
  transition: transform .4s var(--ease-out);
}
.marquee .vid-card:hover { transform: translateY(-6px); }
.marquee .vid-card img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.marquee .vid-card:hover img { transform: scale(1.06); }
.marquee .vid-card__play { position:absolute; inset:0; display:grid; place-items:center; z-index:2; }
.marquee .vid-card__play span {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--primary);
  display: grid; place-items: center;
  box-shadow: 0 14px 26px -10px rgba(0,0,0,.35);
  transition: transform .35s var(--ease-out), background .3s;
}
.marquee .vid-card:hover .vid-card__play span { transform: scale(1.1); background: #fff; }
.marquee .vid-card iframe { position:absolute; inset:0; width:100%; height:100%; border:0; z-index:3; background:#000; }

/* Pagination dots */
.stories__dots {
  display: flex; justify-content: center; align-items: center; gap: .55rem;
  margin-top: 2.2rem;
}
.stories__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.28);
  padding: 0; border: 0; cursor: pointer;
  transition: background .3s var(--ease), width .35s var(--ease), border-radius .35s var(--ease);
}
.stories__dots button:hover { background: rgba(255,255,255,.55); }
.stories__dots button[aria-current="true"] {
  background: var(--secondary);
  width: 26px;
  border-radius: var(--r-pill);
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; overflow-x: auto; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
}

/* ------------------------------------------------------------------ */
/* 16. CONSULTATION FORM                                               */
/* ------------------------------------------------------------------ */
.consult {
  background: var(--light);
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* Image column — sticky on scroll; only focal point tweaked */
.consult__media {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.consult__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 25% 40%;
}

/* Form column — single vertical rhythm */
.consult__form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.consult__form h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.3rem, .95rem + .95vw, 1.55rem);
  line-height: 1.3;
  color: var(--primary);
  margin: 0;
  max-width: 100%;
  text-wrap: balance;
  letter-spacing: -0.005em;
}

/* Fields grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.field.col-2 { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .02em;
}
.field label .req { color: var(--accent); }

/* Unified input surface */
.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .95rem 1.1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.4;
  color: var(--ink);
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(49, 68, 108, 0.42); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(49, 68, 108, 0.28); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(165, 178, 120, 0.25);
}

/* Consistent select chevron */
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2331446C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 16px;
  cursor: pointer;
}

.field textarea { resize: vertical; min-height: 112px; }

/* Consent row */
.consent {
  grid-column: 1 / -1;
  display: flex; gap: .75rem;
  align-items: flex-start;
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: .25rem;
}
.consent input {
  flex: none;
  margin-top: .15rem;
  width: 18px; height: 18px;
  accent-color: var(--accent);
}

.form-msg {
  grid-column: 1 / -1;
  font-size: .86rem;
  font-weight: 600;
  color: var(--accent);
  min-height: 1.2em;
}

/* Submit — matches input radius, spans full width */
.consult__form .btn-block {
  width: 100%;
  margin: 0;
  padding: 1.05rem 1.4rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: var(--sh-cta-blue);
}
.consult__form .btn-block:hover {
  box-shadow: 0 20px 34px -12px rgba(49,68,108,.6);
}

/* Fine print (optional under button) */
.consult__form .form-fineprint {
  font-size: .82rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* 17. GET IN TOUCH — refreshed layout                                 */
/* ------------------------------------------------------------------ */
.touch {
  background: var(--light);
  padding-top: clamp(3.5rem, 5vw, 5rem);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 1.2rem;
  text-wrap: balance;
}
.contact__info > p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.contact__list {
  display: flex; flex-direction: column;
  gap: 1rem;
  margin: 0 0 2.4rem;
  padding: 0;
}
.contact__list li {
  display: flex; align-items: center; gap: .85rem;
  color: var(--primary);
  font-weight: 500;
  font-size: .96rem;
}
.contact__ic {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: var(--secondary-tint);
  color: var(--accent);
  display: grid; place-items: center;
}
.contact__ic svg { width: 18px; height: 18px; }
.contact__list a { color: inherit; transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--accent); }
.contact__hours { margin-bottom: 2rem; }
.contact__hours h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-card-title-lg);
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact__hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.contact__hours tr { border-bottom: 1px solid var(--line); }
.contact__hours tr:last-child { border-bottom: 0; }
.contact__hours th {
  text-align: left;
  padding: .65rem 0;
  font-weight: 600;
  color: var(--primary);
  width: 40%;
}
.contact__hours td {
  padding: .65rem 0;
  color: var(--ink-soft);
  font-weight: 500;
}
.reviews-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: #fff;
  font-weight: 600; font-size: .92rem;
  transition: transform .3s var(--ease-out), background .3s var(--ease), box-shadow .3s;
  box-shadow: var(--sh-cta-blue);
}
.reviews-btn:hover { transform: translateY(-2px); background: #2a3a5d; box-shadow: 0 20px 34px -12px rgba(49,68,108,.6); }
.reviews-btn .stars { color: var(--secondary); font-size: 1rem; letter-spacing: 1px; }
.contact__map {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
}
.map-embed iframe {
  width: 100%; height: 460px; border: 0; display: block;
}
.contact__note {
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.65;
  margin-top: 1.2rem;
  max-width: 56ch;
}

/* ------------------------------------------------------------------ */
/* 18. FOOTER                                                          */
/* ------------------------------------------------------------------ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding-top: var(--sp-9); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
.footer__logo { height: 68px !important; width: auto; }
.footer__about { margin-top: 1.4rem; font-size:.88rem; line-height:1.7; max-width: 42ch; }
.footer h4 { color:#fff; font-family: var(--font-body); font-weight:600; font-size:.95rem; letter-spacing:.02em; margin-bottom: 1.2rem; }
.footer ul li { margin-bottom:.7rem; }
.footer ul a { font-size:.88rem; color: rgba(255,255,255,.85); transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer__col--area a { color: rgba(255,255,255,.85); }
.footer__col--area a:hover { color: #fff; }
.social { display:flex; gap:.7rem; margin-top:1.6rem; }
.social a { width:40px; height:40px; border-radius:50%; border:1px solid var(--line-dark); display:grid; place-items:center; color:#fff; transition: background .3s, border-color .3s, transform .3s; }
.social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__bar { margin-top: var(--sp-8); border-top:1px solid var(--line-dark); padding: 1.6rem 0; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.footer__bar { border-top: 1px solid rgba(165,178,120,.4); }
.footer__bar p { font-size:.82rem; }
.footer__bar nav { display:flex; gap:1.6rem; }
.footer__bar a { font-size:.82rem; }
.footer__bar a:hover { color: var(--secondary); }

/* ------------------------------------------------------------------ */
/* 19. SCROLL REVEAL                                                   */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .btn, .cond-card img, .about__media img, .vid-card img { transition: none !important; }
  .hero__scroll .circle, .ana-point { animation: none !important; }
}

/* ------------------------------------------------------------------ */
/* 20. RESPONSIVE                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .cond-card { flex-basis: calc((100% - 1.5rem)/2); }
  .stories-grid { grid-template-columns: repeat(2,1fr); }
  .feature-row { grid-template-columns: repeat(2,1fr); row-gap: 1.6rem; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .brand__mark { height: 42px; }
  .site-header.scrolled .brand__mark { height: 38px; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: #FFFFFF; padding: 2rem var(--gutter); box-shadow: -20px 0 60px rgba(14,30,58,.2);
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 90;
  }
  body.menu-open .nav { transform: none; }
  .nav a { font-size: 1.2rem; font-family: var(--font-head); }
  .nav-toggle { display: grid; }
  .header-actions .nav-phone { display: none; }
  .nav-cta { display: inline-flex !important; margin-top: 1rem; }

  .about-grid, .reviews-grid, .solutions-grid, .why-grid, .consult-grid, .contact__grid { grid-template-columns: 1fr; }
  .contact__map { position: static; }
  .map-embed iframe { height: 360px; }
  .consult__media { position: static; aspect-ratio: 5 / 4; }
  .about__media, .solutions__media { aspect-ratio: 16/12; }
  .reviews-grid { gap: 2rem; }
  .services-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .services__figure {
    grid-column: 1 / -1;
    order: -1;
    min-height: 380px;
  }
  .services__figure img { max-height: 460px; }
  .why__panel { padding: 1.2rem 1.2rem; }
  .path__media, .consult__media { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  :root { --gutter: 1.15rem; }
  .cond-card { flex-basis: 100%; }
  .services-layout { grid-template-columns: 1fr; }
  .services__figure { min-height: 320px; }
  .services__figure img { max-height: 360px; }
  .svc-col { display: flex; }
  .stories-grid { grid-template-columns: 1fr 1fr; gap:.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hours { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1rem 1.4rem; }
  .cta-banner { flex-direction: column; text-align: center; align-items: center; }
  .footer__bar { flex-direction: column; }
  .hero__scroll { display: none; }
  /* Full-width mobile text needs a stronger, more even veil for legibility */
  .hero__media video, .hero__media img { object-position: 74% center; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(250,250,243,.95) 0%, rgba(250,250,243,.88) 44%, rgba(250,250,243,.55) 76%, rgba(250,250,243,.3) 100%);
  }
  .hero h1, .hero__sub { max-width: 100%; }
}
@media (max-width: 400px) {
  .svc-col { grid-template-columns: 1fr; }
}

/* ==================================================================== */
/* 21. SERVICE / CONDITION PAGE                                          */
/* ==================================================================== */

/* --- Hero --- */
.svc-hero {
  position: relative;
  background: var(--dark);
  padding: calc(var(--header-h) + clamp(3rem, 5vw, 5rem)) 0 var(--section-y-inner);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.svc-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 35%;
  opacity: .55;
}
.svc-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg, rgba(49,68,108,.96) 0%, rgba(49,68,108,.88) 44%, rgba(49,68,108,.5) 78%, rgba(49,68,108,.28) 100%),
    linear-gradient(180deg, rgba(49,68,108,.35) 0%, rgba(49,68,108,0) 40%, rgba(49,68,108,.55) 100%);
}
.svc-hero > .container { position: relative; z-index: 2; }

.breadcrumbs {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
}
.breadcrumbs a { color: inherit; transition: color .2s; }
.breadcrumbs a:hover { color: var(--secondary); }
.breadcrumbs [aria-current="page"] { color: #fff; }
.breadcrumbs .sep { opacity: .55; }

.svc-hero h1 {
  margin: 0 0 1.2rem;
  max-width: 22ch;
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
  font-size: var(--fs-h1);
  color: #fff;
  text-wrap: balance;
}
.svc-hero__lede {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin: 0;
  text-wrap: pretty;
}
.svc-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* --- Article + TOC grid --- */
.svc-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-block: var(--section-y-inner);
}
.svc-article__main { min-width: 0; }

/* Article sections */
.svc-sec { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.svc-sec + .svc-sec { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.svc-sec h2 {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.1;
  color: var(--primary);
  text-wrap: balance;
  letter-spacing: -.01em;
}
.svc-sec p {
  margin: 0 0 1.1rem;
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.svc-sec p:last-child { margin-bottom: 0; }
.svc-sec strong { color: var(--primary); font-weight: 600; }

.svc-callout {
  display: flex; gap: 1.1rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--r-lg);
  background: var(--secondary-tint);
  border: 1px solid rgba(165,178,120,.35);
  margin: 1.5rem 0;
}
.svc-callout::before {
  content: "";
  flex: none; width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}
.svc-callout p {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--primary);
}
.svc-callout cite {
  display: block;
  margin-top: .7rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
}

/* Conditions checklist */
.cond-check {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: .4rem 1.6rem;
  margin-top: .5rem;
}
.cond-check li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  line-height: 1.45;
  color: var(--primary);
}
.cond-check li svg {
  flex: none; margin-top: 3px;
  width: 17px; height: 17px;
  color: var(--accent);
  stroke: currentColor; fill: none;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

/* First-visit steps — vertical timeline with numbered circles + connector */
.visit-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.visit-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 0 1.75rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.visit-steps li:last-child { padding-bottom: 0; }

.visit-steps__num {
  position: relative;
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--secondary-tint);
  border: 1px solid rgba(93, 110, 82, 0.32);
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .875rem;
  color: var(--accent);
  line-height: 1;
}
/* connector line to next step */
.visit-steps li:not(:last-child) .visit-steps__num::after {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(1.75rem - 4px);
  background: rgba(93, 110, 82, 0.28);
}

.visit-steps__body {
  display: flex; flex-direction: column; gap: .35rem;
  padding-top: .35rem;
  min-width: 0;
}
.visit-steps h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-card-title);
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.visit-steps p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* -------------------------------------------------------------- */
/* Global outline icon style — clean, consistent stroke everywhere */
/* -------------------------------------------------------------- */
.svc-pill__icon svg,
.tech-card__ic svg,
.svc-related-card__ic svg,
.svc-related a .ic svg,
.visit-steps__ic svg,
.contact__ic svg,
.cta-banner__icon svg,
.svc-cta-card .phone svg,
.svc-cta-card .btn svg,
.svc-pill .chev,
.svc-related a .arr,
.btn svg.arrow,
.btn svg[class*="arrow"],
.feature__icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Techniques grid — 3 columns for harmonious 3×2 or 3×3 layouts */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tech-grid { grid-template-columns: 1fr; }
}
.tech-card {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.tech-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(165,178,120,.55); }
.tech-card__ic {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--secondary-tint);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: .3rem;
}
.tech-card__ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tech-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: var(--fs-card-title);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.tech-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Who-it's-right-for — two labeled cards, reference-style */
.candidates-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.candidates-card {
  padding: 1.75rem 1.75rem 1.6rem;
  border-radius: var(--r-lg);
  border: 1px solid;
  background-clip: padding-box;
}
.candidates-card--good {
  background: rgba(165, 178, 120, 0.14);
  border-color: rgba(93, 110, 82, 0.32);
}
.candidates-card--refer {
  background: rgba(49, 68, 108, 0.05);
  border-color: rgba(49, 68, 108, 0.16);
}
.candidates-card__label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.candidates-card--good .candidates-card__label { color: var(--accent); }
.candidates-card--refer .candidates-card__label { color: rgba(49, 68, 108, 0.7); }
.candidates-card__label svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.candidates-card ul {
  display: flex; flex-direction: column;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.candidates-card li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--primary);
  text-wrap: pretty;
}
.candidates-card li::before {
  content: "";
  position: absolute;
  left: .1rem;
  top: .58em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.candidates-card--refer li { color: rgba(49, 68, 108, 0.78); }

/* Sidebar TOC */
.svc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.svc-toc {
  padding: 1.5rem 1.4rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.svc-toc__label {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.svc-toc ol { display: flex; flex-direction: column; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.svc-toc a {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .8rem;
  border-radius: 10px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.svc-toc a::before {
  content: "";
  flex: none;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: rgba(49, 68, 108, 0.18);
  transition: background .25s var(--ease), height .25s var(--ease);
}
.svc-toc a:hover { background: var(--secondary-tint); color: var(--primary); }
.svc-toc a:hover::before { background: rgba(49, 68, 108, 0.45); height: 18px; }
.svc-toc a[aria-current="true"] {
  background: var(--primary);
  color: #fff;
}
.svc-toc a[aria-current="true"]::before {
  background: var(--secondary);
  height: 22px;
}

.svc-cta-card {
  padding: 1.5rem 1.4rem;
  border-radius: var(--r-lg);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--sh-md);
}
.svc-cta-card h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-head);
  font-size: var(--fs-card-title-lg);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.svc-cta-card p {
  margin: 0 0 1rem;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.svc-cta-card .btn { width: 100%; justify-content: center; }
.svc-cta-card .phone {
  display: flex; align-items: center; gap: .55rem;
  margin-top: .8rem; padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: var(--secondary);
  font-weight: 600;
  font-size: .95rem;
}
.svc-cta-card .phone:hover { color: #fff; }

/* Standalone logo (image already contains the wordmark) — same sizing as Home on every page */
.brand__mark { max-width: 210px; object-fit: contain; }

/* Inline CTA banner (between article sections) */
.inline-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(2.5rem, 4vw, 3.5rem) 0;
  padding: clamp(2rem, 3.5vw, 2.8rem) clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--r-lg);
  background: linear-gradient(115deg, #B8C58C 0%, #A5B278 45%, #8CA062 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 44px -22px rgba(93, 110, 82, 0.55);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.inline-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 60px -22px rgba(93, 110, 82, 0.6);
}
.inline-cta__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  mix-blend-mode: overlay;
}
.inline-cta::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -30%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 65%);
  z-index: -1;
  pointer-events: none;
}
.inline-cta::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -45%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 60%);
  z-index: -1;
  pointer-events: none;
}
.inline-cta__body {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: 34rem;
  min-width: 0;
}
.inline-cta__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.inline-cta__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.55rem, 1.15rem + 1.5vw, 2.15rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.inline-cta__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,.94);
  text-wrap: pretty;
}
.inline-cta__actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.35);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(0,0,0,.4);
}
.btn-white svg { width: 18px; height: 18px; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: calc(.95rem - 1.5px) 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.72);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: background .3s var(--ease), border-color .3s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
}

/* Related services — icon-title-body cards with "Read more" */
.svc-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.svc-related-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(49, 68, 108, 0.05);
  color: var(--primary);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.svc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -20px rgba(49, 68, 108, 0.22);
  border-color: rgba(165, 178, 120, 0.55);
}
.svc-related-card__ic {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--secondary-tint);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: .3rem;
}
.svc-related-card__ic svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-related-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-card-title-lg);
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.svc-related-card p {
  margin: 0;
  font-size: .93rem;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
  flex-grow: 1;
}
.svc-related-card__more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent);
  transition: gap .3s var(--ease);
}
.svc-related-card:hover .svc-related-card__more { gap: .7rem; }
.svc-related-card__more svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 720px) {
  .svc-related { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 960px) {
  .svc-article { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; order: -1; margin-bottom: 1.5rem; }
  .svc-toc { display: none; }  /* on mobile TOC is too much; keep the CTA card only */
  .candidates-2col { grid-template-columns: 1fr; }
}

/* ==================================================================== */
/* 22. CONDITION PAGE — split + why-split + full-width article layout   */
/* ==================================================================== */

/* Full-width article (no TOC sidebar) */
.cond-page main { background: var(--light); }

/* Split "What is..." pattern */
.split-sec {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-sec__body h2 {
  margin: .8rem 0 1.1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.08;
  color: var(--primary);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.split-sec__body p {
  margin: 0 0 1.1rem;
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.split-sec__body p strong { color: var(--primary); font-weight: 600; }
.split-sec__body .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.split-sec__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
}
.split-sec__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .split-sec { grid-template-columns: 1fr; }
  .split-sec__media { aspect-ratio: 16/11; }
}

/* Section header block (center variant) */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}
.sec-head h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.08;
  color: var(--primary);
  letter-spacing: -.01em;
  margin: .5rem 0 .8rem;
  text-wrap: balance;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}
.sec-head.on-dark h2 { color: #fff; }
.sec-head.on-dark p { color: rgba(255,255,255,.82); }
.sec-head.on-dark .eyebrow { color: var(--secondary); }

/* Section variants */
.section--alt { background: linear-gradient(180deg, var(--light), #F1F0E4); }
.section--dark { background: var(--primary); color: #fff; }

/* Why choose us — dark split w/ checklist */
.why-split {
  position: relative;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(4rem, 6vw, 6rem);
}
.why-split__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.why-split .eyebrow { color: var(--secondary); }
.why-split h2 {
  margin: .5rem 0 1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.why-split__lede {
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 46ch;
}
.check-list {
  display: flex; flex-direction: column;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  color: rgba(255,255,255,.94);
  font-size: 1rem;
  line-height: 1.5;
}
.check-list li svg {
  flex: none;
  margin-top: 3px;
  width: 22px; height: 22px;
  color: var(--secondary);
  fill: none; stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.why-split__grid { align-items: stretch; }
.why-split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  align-self: stretch;
  min-height: 100%;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.why-split__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .why-split__media { aspect-ratio: 16/11; min-height: 0; }
}
.check-list li { text-wrap: pretty; }
@media (max-width: 900px) {
  .why-split__grid { grid-template-columns: 1fr; }
  .why-split__media { aspect-ratio: 16/12; }
}

/* Condition-page inline CTA container (uses .inline-cta already) */
.section.cta-slim { padding-block: 0; margin-block: 0; }

/* Tall variant — CTAs stack under body, left-aligned, more height */
.inline-cta.inline-cta--tall {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  min-height: clamp(300px, 32vw, 380px);
}
.inline-cta.inline-cta--tall .inline-cta__body { max-width: 44rem; }

/* Uniform section rhythm on condition pages — matches .svc-article's rhythm on service pages */
.cond-page .section,
.cond-page .why-split {
  padding-block: var(--section-y-inner);
}
.cond-page .section.cta-slim { padding-block: 0; }

/* Tighten only the FAQ → Consult transition (form is the final section) */
.cond-page .faq { padding-bottom: clamp(2.5rem, 3.5vw, 4rem); }
.cond-page .consult {
  padding-top: clamp(2.5rem, 3.5vw, 4rem);
  padding-bottom: clamp(4.5rem, 6vw, 6.5rem);
}

/* ==================================================================== */
/* 23. CONDITION PAGE — dark carousel tiles + big CTA + media caption    */
/* ==================================================================== */

/* Dark-bg carousel section — slim tile items */
.section--dark { background: var(--primary); color: #fff; }
.section--dark .carousel { margin-top: clamp(2rem, 3vw, 3rem); }
.section--dark .carousel__nav {
  width: 52px; height: 52px;
  background: var(--secondary);
  border: 0;
  color: var(--primary);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.section--dark .carousel__nav.prev { left: -22px; }
.section--dark .carousel__nav.next { right: -22px; }
.section--dark .carousel__nav:hover {
  background: #B5C58C;
  transform: translateY(-50%) scale(1.05);
}
.section--dark .carousel__nav[disabled] {
  background: rgba(165, 178, 120, 0.35);
  color: rgba(49, 68, 108, 0.5);
}
.section--dark .carousel__dots button { background: rgba(255,255,255,.28); }
.section--dark .carousel__dots button[aria-current="true"] { background: var(--secondary); }
@media (max-width: 720px) {
  .section--dark .carousel__nav.prev { left: 4px; }
  .section--dark .carousel__nav.next { right: 4px; }
}

/* Tile-styled slide for dark carousel */
.cond-card.cond-card--tile {
  flex: 0 0 calc((100% - 3rem) / 3);
  aspect-ratio: auto;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  isolation: auto;
  box-shadow: none;
  overflow: visible;
}
.cond-card.cond-card--tile::after { display: none; }
.cond-card.cond-card--tile img { display: none; }
.cond-card--tile__ic {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgba(165, 178, 120, 0.16);
  border: 1px solid rgba(165, 178, 120, 0.32);
  color: var(--secondary);
  display: grid; place-items: center;
  margin-bottom: .3rem;
}
.cond-card--tile__ic svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.cond-card--tile h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-card-title);
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.cond-card--tile p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1080px) {
  .cond-card.cond-card--tile { flex-basis: calc((100% - 1.5rem)/2); }
}
@media (max-width: 620px) {
  .cond-card.cond-card--tile { flex-basis: 100%; }
}

/* Booking media caption overlay */
.consult__media-caption {
  position: absolute;
  left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  z-index: 3;
  padding: 1rem 1.2rem;
  background: rgba(49, 68, 108, 0.88);
  color: #fff;
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.consult__media-caption h3 {
  margin: 0 0 .15rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.25;
}
.consult__media-caption p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}
