/* ============================================================
   ASPEN FALLS WELLNESS — ALL-INCLUSIVE BRAND LANDING PAGE
   Palette: warm ivory, cream, antique gold — high-end med spa
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  /* Type */
  --tx-xs:   clamp(0.72rem,  0.68rem + 0.2vw,  0.85rem);
  --tx-sm:   clamp(0.875rem, 0.82rem + 0.27vw, 1rem);
  --tx-base: clamp(1rem,     0.94rem + 0.22vw, 1.125rem);
  --tx-lg:   clamp(1.1rem,   0.95rem + 0.65vw, 1.45rem);
  --tx-xl:   clamp(1.4rem,   1.05rem + 1.1vw,  2.1rem);
  --tx-2xl:  clamp(1.9rem,   1rem    + 2.3vw,  3.4rem);
  --tx-3xl:  clamp(2.4rem,   0.8rem  + 4vw,    5rem);

  /* Space */
  --s1:  0.25rem;  --s2:  0.5rem;  --s3:  0.75rem;
  --s4:  1rem;     --s5:  1.25rem; --s6:  1.5rem;
  --s8:  2rem;     --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;     --s20: 5rem;    --s24: 6rem;

  /* Brand palette — warm ivory med-spa */
  --bg:          #faf8f5;
  --cream:       #f4efe5;
  --white:       #ffffff;
  --surface:     #ede8de;
  --border:      #ddd5c8;
  --divider:     #e8e0d3;

  /* Text */
  --ink:         #28201a;
  --ink-mid:     #5a4e44;
  --ink-muted:   #8a7c70;
  --ink-faint:   #b5a89e;

  /* Gold accent */
  --gold:        #9e7540;
  --gold-h:      #855e2c;
  --gold-lt:     #f2e8d5;
  --gold-border: rgba(158,117,64,0.22);

  /* Teal accent (MLS) */
  --teal:        #4e8f9a;
  --teal-lt:     #e5f3f5;
  --teal-border: rgba(78,143,154,0.22);

  /* Radius */
  --r-sm: 0.375rem; --r-md: 0.625rem;
  --r-lg: 1rem;     --r-xl: 1.5rem;  --r-full: 9999px;

  /* Shadow — warm-toned */
  --sh-xs: 0 1px 4px rgba(50,35,15,0.07);
  --sh-sm: 0 2px 10px rgba(50,35,15,0.09);
  --sh-md: 0 6px 28px rgba(50,35,15,0.10);
  --sh-lg: 0 16px 52px rgba(50,35,15,0.12);

  /* Layout */
  --w-wide: 1200px;
  --ease:   220ms cubic-bezier(0.16,1,0.3,1);

  /* Fonts */
  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Jost', 'Helvetica Neue', sans-serif;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
}
body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-b);
  font-size: var(--tx-base);
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-d); text-wrap: balance; line-height: 1.12; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── Utilities ───────────────────────────────────────────── */
.container { max-width: var(--w-wide); margin-inline: auto; padding-inline: clamp(var(--s5),4vw,var(--s12)); }
.section { padding-block: clamp(var(--s16),7vw,var(--s24)); }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }

.eyebrow {
  font-family: var(--ff-b); font-size: var(--tx-xs); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--s4);
}
.light-eyebrow { color: rgba(230,205,160,0.9); }

.sec-title { font-size: var(--tx-2xl); font-weight: 600; color: var(--ink); margin-bottom: var(--s4); letter-spacing: -0.01em; }
.light-title { color: #fff; }
.sec-body { font-size: var(--tx-base); color: var(--ink-mid); line-height: 1.75; max-width: 60ch; margin-bottom: var(--s5); }
.sec-lead { font-size: var(--tx-base); color: var(--ink-muted); max-width: 68ch; margin-bottom: clamp(var(--s10),4vw,var(--s16)); line-height: 1.72; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 0.78em 1.6em; border-radius: var(--r-full);
  font-family: var(--ff-b); font-size: var(--tx-sm); font-weight: 500;
  letter-spacing: 0.04em; border: 1.5px solid transparent;
  transition: all var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--gold-h); border-color: var(--gold-h); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(158,117,64,.32); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.65); transform: translateY(-1px); }
.btn-gold { background: #c8a86d; color: var(--ink); border-color: #c8a86d; font-weight: 600; }
.btn-gold:hover, .btn-gold:focus-visible { background: #b8944f; border-color: #b8944f; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(200,168,109,.35); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: rgba(255,255,255,.75); transform: translateY(-1px); }
.btn-sm  { padding: 0.48em 1.1em; font-size: var(--tx-xs); }
.btn-lg  { padding: 0.9em 2em; font-size: var(--tx-base); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}
.hdr.scrolled { box-shadow: var(--sh-sm); }
/* hdr.hidden removed — main nav stays fixed at all times */

.hdr-inner {
  max-width: var(--w-wide); margin-inline: auto;
  padding-inline: clamp(var(--s5),4vw,var(--s12));
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: var(--s6);
}
.hdr-logo { display: flex; }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.hdr-nav { display: flex; align-items: center; gap: var(--s8); }
.hdr-nav a { font-size: var(--tx-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mid); transition: color var(--ease); }
.hdr-nav a:hover { color: var(--gold); }

.hdr-actions { display: flex; align-items: center; gap: var(--s4); }
.hdr-tel { display: flex; align-items: center; gap: var(--s2); font-size: var(--tx-sm); font-weight: 500; color: var(--ink-mid); transition: color var(--ease); }
.hdr-tel:hover { color: var(--gold); }

@media (max-width: 900px) { .hdr-nav { display: none; } }
@media (max-width: 580px) { .hdr-tel { display: none; } }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 72px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(26,18,10,.85) 0%, rgba(26,18,10,.62) 55%, rgba(26,18,10,.42) 100%);
}
.hero-body { position: relative; z-index: 1; padding-top: clamp(var(--s12),8vw,var(--s20)); padding-bottom: clamp(var(--s20),10vw,var(--s24)); max-width: 780px; }

.hero-tag {
  display: inline-block; font-family: var(--ff-b); font-size: var(--tx-xs); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(225,198,148,.9);
  border: 1px solid rgba(225,198,148,.28); background: rgba(225,198,148,.08);
  padding: var(--s2) var(--s5); border-radius: var(--r-full); margin-bottom: var(--s6);
}
.hero-h1 { font-size: var(--tx-3xl); font-weight: 600; color: #fff; line-height: 1.07; letter-spacing: -.015em; margin-bottom: var(--s6); }
.hero-h1 em { font-style: italic; font-weight: 400; color: #e5c47a; }
.hero-lead { font-size: var(--tx-lg); font-weight: 300; color: rgba(255,255,255,.78); max-width: 56ch; line-height: 1.65; margin-bottom: var(--s10); }

.hero-stats { display: flex; align-items: center; gap: var(--s6); flex-wrap: wrap; padding: var(--s5) var(--s8); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); backdrop-filter: blur(8px); margin-bottom: var(--s10); }
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat-n { font-family: var(--ff-d); font-size: var(--tx-xl); font-weight: 700; color: #e5c47a; line-height: 1; }
.hstat-l { font-size: var(--tx-xs); color: rgba(255,255,255,.58); letter-spacing: .04em; max-width: 18ch; }
.hstat-sep { width: 1px; height: 44px; background: rgba(255,255,255,.14); flex-shrink: 0; }

.hero-ctas { display: flex; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s5); }
.hero-note { font-size: var(--tx-xs); color: rgba(255,255,255,.4); letter-spacing: .04em; }

@media (max-width: 600px) {
  .hero-stats { gap: var(--s4); padding: var(--s4) var(--s5); }
  .hstat-sep { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding-block: var(--s5); }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--s4) var(--s8); }
.trust-item { display: flex; align-items: center; gap: var(--s2); font-size: var(--tx-sm); font-weight: 500; color: var(--ink-mid); white-space: nowrap; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   APPROACH
═══════════════════════════════════════════════════════════ */
.approach-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s10),6vw,var(--s20)); align-items: start; }

.approach-pillars { display: flex; flex-direction: column; gap: var(--s6); margin-top: var(--s8); }
.pillar { display: flex; gap: var(--s4); align-items: flex-start; }
.pillar-icon { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--gold-lt); border: 1px solid var(--gold-border); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar strong { display: block; font-family: var(--ff-d); font-size: var(--tx-lg); font-weight: 600; color: var(--ink); margin-bottom: var(--s1); }
.pillar p { font-size: var(--tx-sm); color: var(--ink-muted); line-height: 1.65; max-width: 46ch; }

.approach-gallery { display: flex; flex-direction: column; gap: var(--s3); position: sticky; top: 90px; }
.gallery-main { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.gallery-pair img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); transition: transform .5s ease; }
.gallery-pair img:hover { transform: scale(1.03); }

@media (max-width: 860px) {
  .approach-split { grid-template-columns: 1fr; }
  .approach-gallery { position: static; order: -1; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); margin-bottom: var(--s12); }

/* Featured cards span full width of column but are in 2-col grid = side by side */
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--gold-border); }

.svc-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--cream); }
.svc-img-short { aspect-ratio: 16/8; }
.svc-img-contain .svc-img { object-fit: contain; padding: var(--s6); background: var(--cream); }
.svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.svc-card:hover .svc-img { transform: scale(1.04); }

.svc-badge {
  position: absolute; bottom: var(--s3); left: var(--s3);
  background: var(--gold); color: #fff;
  font-size: var(--tx-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: var(--s1) var(--s3); border-radius: var(--r-full);
}
.svc-badge-teal { background: var(--teal); }
.svc-badge-green { background: #3a7a4a; }

.svc-content { padding: var(--s8); display: flex; flex-direction: column; flex: 1; }
.svc-num { font-family: var(--ff-b); font-size: var(--tx-xs); font-weight: 700; letter-spacing: .12em; color: var(--gold); opacity: .7; margin-bottom: var(--s3); }
.svc-content h3 { font-size: var(--tx-xl); font-weight: 600; color: var(--ink); margin-bottom: var(--s3); }
.svc-content p { font-size: var(--tx-sm); color: var(--ink-muted); line-height: 1.72; margin-bottom: var(--s5); flex: 1; }

.svc-treats { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.svc-treats span {
  font-size: var(--tx-xs); font-weight: 500; letter-spacing: .06em;
  color: var(--ink-mid); background: var(--cream); border: 1px solid var(--border);
  padding: var(--s1) var(--s3); border-radius: var(--r-full);
}
.svc-link { font-size: var(--tx-sm); font-weight: 600; color: var(--gold); letter-spacing: .04em; transition: color var(--ease), gap var(--ease); margin-top: auto; }
.svc-link:hover { color: var(--gold-h); }

.services-cta { text-align: center; }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   PROPRIETARY PROTOCOL SECTION
═══════════════════════════════════════════════════════════ */
.prop-section { position: relative; overflow: hidden; }
.prop-bg { position: absolute; inset: 0; z-index: 0; }
.prop-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.prop-veil { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,12,5,.93) 0%, rgba(20,12,5,.82) 100%); }
.prop-body { position: relative; z-index: 1; padding-block: clamp(var(--s16),8vw,var(--s24)); }
.prop-inner { max-width: 1000px; }
.prop-lead { font-size: var(--tx-lg); font-weight: 300; color: rgba(255,255,255,.75); max-width: 62ch; line-height: 1.68; margin-bottom: var(--s12); }

.protocol-steps {
  display: flex; align-items: flex-start; gap: var(--s3); flex-wrap: wrap;
  margin-bottom: var(--s12);
}
.proto-step {
  flex: 1; min-width: 150px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: var(--s6); display: flex; flex-direction: column; gap: var(--s3);
}
.proto-n { font-family: var(--ff-b); font-size: var(--tx-xs); font-weight: 700; letter-spacing: .12em; color: #e5c47a; }
.proto-text strong { display: block; font-family: var(--ff-d); font-size: var(--tx-lg); font-weight: 600; color: #fff; margin-bottom: var(--s2); }
.proto-text p { font-size: var(--tx-xs); color: rgba(255,255,255,.6); line-height: 1.65; }
.proto-arrow { color: rgba(255,255,255,.2); font-size: 1.4rem; padding-top: var(--s5); flex-shrink: 0; align-self: center; }

@media (max-width: 900px) { .proto-arrow { display: none; } .protocol-steps { flex-direction: column; } }

/* ═══════════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════════ */
/* Team — strict 3×2 symmetrical grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); max-width: 900px; margin-left: auto; margin-right: auto; }
.team-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--ease), box-shadow var(--ease); }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

/* Photo wrap — fixed aspect, consistent framing */
.team-photo-wrap { aspect-ratio: 3/4; overflow: hidden; position: relative; background: #d9cfc2; }

/* Image treatment — desaturate + gentle contrast lift to unify varied backgrounds */
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .55s ease;
  filter: saturate(0.72) contrast(1.08) brightness(1.03) sepia(0.08);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); filter: saturate(0.82) contrast(1.06) brightness(1.04) sepia(0.05); }

/* Two-layer overlay:
   Layer 1 — warm mid-tone fill to match cream brand background
   Layer 2 — bottom vignette for depth */
.team-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(212,196,172,0.12) 0%,
      rgba(212,196,172,0.08) 50%,
      rgba(60,42,18,0.28) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Responsive: 3-col → 2-col mobile */
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: var(--s5); } }
@media (max-width: 380px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); } }
.team-info { padding: var(--s5) var(--s5) var(--s6); }
.team-name { font-family: var(--ff-d); font-size: var(--tx-base); font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.team-cred { font-size: var(--tx-xs); color: var(--gold); font-weight: 500; letter-spacing: .03em; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
/* Featured pull-quote hero — full-width banner above grid */
.review-hero { background: linear-gradient(135deg, var(--white) 0%, #fbf6ee 100%); border: 1px solid var(--gold-border); border-radius: var(--r-xl); padding: var(--s10) var(--s12); text-align: center; margin-bottom: var(--s8); box-shadow: var(--sh-sm); }
.review-hero-quote { font-size: 1.5rem; color: var(--gold); letter-spacing: .08em; margin-bottom: var(--s5); }
.review-hero-text { font-family: var(--ff-d); font-size: clamp(1.05rem, 2vw, 1.35rem); font-style: italic; color: var(--ink); line-height: 1.75; margin: 0 auto var(--s4); max-width: 800px; }
.review-hero-text strong { font-style: normal; color: #7a5828; }
.review-hero-cite { display: block; font-size: var(--tx-sm); font-weight: 500; color: var(--ink-muted); letter-spacing: .04em; }
@media (max-width: 680px) { .review-hero { padding: 1.75rem var(--s5); } .review-hero-text { font-size: 1rem; } }

/* Reviews grid — strict 3-col symmetrical layout */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); margin-bottom: var(--s8); }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 1.75rem;   /* generous inner breathing room */
  display: flex;
  flex-direction: column;
  gap: var(--s5);               /* more space between stars, quote, cite */
  transition: box-shadow var(--ease);
}
.review-card:hover { box-shadow: var(--sh-sm); }

.review-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: .1em; line-height: 1; }
.review-card blockquote {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.78;
  flex: 1;
  margin: 0;
}
.review-card blockquote strong { font-style: normal; color: var(--ink); }
.review-card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: .04em;
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
  margin-top: auto;
}
.review-card cite strong { color: var(--ink-mid); }

.review-source-line { display: flex; align-items: center; gap: var(--s3); font-size: var(--tx-sm); color: var(--ink-muted); }
.google-icon { height: 22px; width: auto; }

/* Reviews responsive: 3-col → 2-col → 1-col */
@media (max-width: 860px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   LOGISTICS GRID
═══════════════════════════════════════════════════════════ */
.logistics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--s6); }
.logistic-block { display: flex; flex-direction: column; gap: var(--s4); padding: var(--s8); background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-lg); transition: box-shadow var(--ease), transform var(--ease); }
.logistic-block:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }
.logistic-icon { width: 56px; height: 56px; background: var(--gold-lt); border: 1px solid var(--gold-border); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.logistic-block h3 { font-size: var(--tx-lg); font-weight: 600; color: var(--ink); }
.logistic-block p { font-size: var(--tx-sm); color: var(--ink-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.final-cta { position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-cta-veil { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,14,6,.9) 0%, rgba(22,14,6,.8) 100%); }
.final-cta-body { position: relative; z-index: 1; text-align: center; padding-block: clamp(var(--s16),8vw,var(--s24)); }
.final-cta-body .sec-lead { margin-inline: auto; color: rgba(255,255,255,.7); }
.final-cta-lead { font-size: var(--tx-base); color: rgba(255,255,255,.7); max-width: 60ch; margin-inline: auto; line-height: 1.72; margin-bottom: clamp(var(--s10),4vw,var(--s16)); }

.final-cta-panels { display: flex; align-items: stretch; max-width: 780px; margin-inline: auto; margin-bottom: var(--s10); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-xl); overflow: hidden; backdrop-filter: blur(12px); }
.cta-panel { flex: 1; padding: var(--s10) var(--s8); display: flex; flex-direction: column; align-items: center; gap: var(--s4); text-align: center; }
.cta-panel-icon { width: 52px; height: 52px; background: rgba(200,168,109,.14); border: 1px solid rgba(200,168,109,.28); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: #e5c47a; }
.cta-panel h3 { font-size: var(--tx-xl); font-weight: 600; color: #fff; }
.cta-panel p { font-size: var(--tx-sm); color: rgba(255,255,255,.6); max-width: 26ch; }
.phone-stack { display: flex; flex-direction: column; gap: var(--s3); width: 100%; }
.cta-or { width: 1px; background: rgba(255,255,255,.11); position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-or span { position: absolute; background: rgba(30,18,8,.92); border: 1px solid rgba(255,255,255,.13); padding: var(--s2) var(--s3); font-size: var(--tx-xs); color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; border-radius: var(--r-full); white-space: nowrap; }

.locations-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--s5); font-size: var(--tx-xs); color: rgba(255,255,255,.4); }
.loc-item { display: flex; align-items: center; gap: var(--s2); }
.loc-item svg { color: rgba(220,188,128,.55); flex-shrink: 0; }
.loc-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); }

@media (max-width: 620px) {
  .final-cta-panels { flex-direction: column; border-radius: var(--r-lg); }
  .cta-or { width: 100%; height: 1px; }
  .cta-or span { top: 50%; transform: translateY(-50%); }
  .loc-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE BAR
═══════════════════════════════════════════════════════════ */
.mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--white); border-top: 1px solid var(--border); padding: var(--s3) var(--s4); gap: var(--s3); box-shadow: 0 -4px 20px rgba(50,35,15,.12); }
.mob-call, .mob-book { flex: 1; display: flex; align-items: center; justify-content: center; gap: var(--s2); padding: var(--s4); border-radius: var(--r-full); font-weight: 500; font-size: var(--tx-sm); transition: all var(--ease); }
.mob-call { border: 1.5px solid var(--border); color: var(--ink-mid); }
.mob-call:hover { border-color: var(--gold); color: var(--gold); }
.mob-book { background: var(--gold); color: #fff; }
.mob-book:hover { background: var(--gold-h); }
@media (max-width: 768px) { .mob-bar { display: flex; } body { padding-bottom: 76px; } }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--cream); border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--s16); padding-block: var(--s16); align-items: start; }
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: var(--s5); }
.footer-brand p { font-size: var(--tx-sm); color: var(--ink-muted); max-width: 36ch; line-height: 1.65; margin-bottom: var(--s5); }
.footer-social { display: flex; gap: var(--s4); }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--r-full); color: var(--ink-muted); transition: all var(--ease); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-cols { display: flex; gap: var(--s12); }
.footer-cols > div { display: flex; flex-direction: column; gap: var(--s3); }
.footer-cols h4 { font-family: var(--ff-b); font-size: var(--tx-xs); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s2); }
.footer-cols ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer-cols a { font-size: var(--tx-sm); color: var(--ink-muted); transition: color var(--ease); }
.footer-cols a:hover { color: var(--gold); }
.footer-base { border-top: 1px solid var(--divider); padding-block: var(--s5); }
.footer-base-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s4); }
.footer-base-row p { font-size: var(--tx-xs); color: var(--ink-faint); }
.pplx-credit { font-size: var(--tx-xs); color: var(--ink-faint); transition: color var(--ease); }
.pplx-credit:hover { color: var(--ink-muted); }
.footer-trademark { font-size: var(--tx-xs); color: var(--ink-faint); }

/* Results disclaimers — intentionally understated, not a headline element */
.disclaimer {
  font-size: 0.62rem;
  color: var(--ink-faint);
  opacity: 0.75;
  letter-spacing: 0.01em;
  line-height: 1.4;
  font-style: italic;
}
.disclaimer-center { text-align: center; }
.outcome-disclaimer { margin-top: var(--s3); }
.review-disclaimer { margin-top: var(--s2); }
.svc-disclaimer { margin-top: var(--s2); display: block; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: var(--s10); } .footer-cols { flex-wrap: wrap; gap: var(--s8); } }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ═══════════════════════════════════════════════════════════
   HERO — CONVERSION UPDATES
═══════════════════════════════════════════════════════════ */
/* Replace lead with sublead for new copy */
.hero-sublead { font-size: var(--tx-base); font-weight: 300; color: rgba(255,255,255,.72); max-width: 62ch; line-height: 1.7; margin-bottom: var(--s8); }

/* CTA group with support copy under button */
.hero-cta-group { display: flex; flex-direction: column; gap: var(--s3); }
.hero-cta-note { font-size: var(--tx-xs); color: rgba(255,255,255,.48); letter-spacing: .02em; }

/* Trust badges row directly under CTAs */
.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--s3) var(--s6);
  margin-top: var(--s8);
  padding: var(--s4) var(--s6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.htrust-item { display: flex; align-items: center; gap: var(--s2); font-size: var(--tx-xs); font-weight: 500; color: rgba(255,255,255,.7); white-space: nowrap; }
.htrust-item svg { color: rgba(220,188,128,.8); flex-shrink: 0; }
.htrust-gicon { height: 16px; width: auto; opacity: .85; }
.htrust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.15); flex-shrink: 0; }
@media (max-width: 600px) {
  .htrust-sep { display: none; }
  .hero-trust { gap: var(--s3); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   PATIENT JOURNEY STEP TRACKER
═══════════════════════════════════════════════════════════ */
.journey-steps {
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  flex-wrap: wrap; margin-bottom: var(--s8);
}
.journey-step {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--tx-xs); font-weight: 500; letter-spacing: .02em;
  color: var(--ink-faint); white-space: nowrap; transition: color var(--ease);
}
.journey-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--surface); color: var(--ink-muted);
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
  transition: all var(--ease);
}
.journey-step-active { color: var(--gold); }
.journey-step-active .journey-num { background: var(--gold); color: var(--white); }
.journey-step-done { color: var(--ink-mid); }
.journey-step-done .journey-num { background: #3a7a4a; color: var(--white); }
.journey-arrow { color: var(--ink-faint); font-size: var(--tx-xs); }
@media (max-width: 700px) { .journey-steps { gap: var(--s2); } .journey-arrow { display: none; } .journey-step { font-size: 0.68rem; } }

/* ═══════════════════════════════════════════════════════════
   WHERE'S YOUR PAIN? STRIP
═══════════════════════════════════════════════════════════ */
.pain-strip { padding-block: clamp(var(--s12),5vw,var(--s20)); }
.pain-strip-head { text-align: center; margin-bottom: var(--s10); }
.sec-title-sm { font-size: var(--tx-xl); font-weight: 600; color: var(--ink); margin-bottom: var(--s4); }
.pain-strip-lead { font-size: var(--tx-sm); color: var(--ink-muted); max-width: 52ch; margin-inline: auto; line-height: 1.7; }

.pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4);
}
.pain-tile {
  display: flex; flex-direction: column; align-items: center; gap: var(--s3);
  padding: var(--s6) var(--s4); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); background: var(--bg);
  text-align: center; cursor: pointer;
  transition: all var(--ease);
}
.pain-tile:hover { border-color: var(--gold); background: var(--gold-lt); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.pain-icon { color: var(--gold); margin-bottom: var(--s1); }
.pain-label { font-family: var(--ff-d); font-size: var(--tx-base); font-weight: 600; color: var(--ink); }
.pain-sub { font-size: var(--tx-xs); color: var(--ink-muted); letter-spacing: .03em; }
.pain-tile-featured { border-color: var(--gold-border); background: var(--gold-lt); }
.pain-tile-featured .pain-label { color: var(--gold); }
.pain-tile-soft { border-color: var(--teal-border); background: var(--teal-lt); }
.pain-tile-soft .pain-icon { color: var(--teal); }
.pain-tile-soft .pain-label { color: var(--teal); }
.pain-tile-soft:hover { border-color: var(--teal); background: #d8eef1; }
@media (max-width: 860px) { .pain-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════════
   OUTCOME STRIP
═══════════════════════════════════════════════════════════ */
.outcome-strip {
  background: var(--ink);
  padding-block: var(--s6);
}
.outcome-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s4) var(--s8);
}
.outcome-item { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; justify-content: center; }
.outcome-stat { font-size: var(--tx-sm); color: rgba(255,255,255,.55); font-style: italic; font-family: var(--ff-d); }
.outcome-arrow { color: var(--gold); font-size: var(--tx-base); }
.outcome-result { font-size: var(--tx-sm); font-weight: 600; color: rgba(229,196,122,.9); letter-spacing: .02em; }
.outcome-sep { width: 1px; height: 28px; background: rgba(255,255,255,.1); flex-shrink: 0; }
@media (max-width: 680px) { .outcome-sep { display: none; } .outcome-strip-inner { gap: var(--s5); } }

/* ═══════════════════════════════════════════════════════════
   SERVICES — NEW CONVERSION ELEMENTS
═══════════════════════════════════════════════════════════ */
/* Outcome statement — plain-language lead sentence */
.svc-outcome {
  font-size: var(--tx-base); font-weight: 500; color: var(--ink);
  line-height: 1.6; margin-bottom: var(--s5);
  padding-bottom: var(--s5); border-bottom: 1px solid var(--border);
}

/* Best for row */
.svc-bestfor { display: flex; align-items: flex-start; gap: var(--s3); margin-bottom: var(--s5); flex-wrap: wrap; }
.svc-bestfor-label { font-size: var(--tx-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; padding-top: 3px; }

/* What to expect */
.svc-expect { margin-bottom: var(--s5); }
.svc-expect-title { font-size: var(--tx-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: var(--s3); }
.svc-steps { list-style: decimal; padding-left: var(--s5); display: flex; flex-direction: column; gap: var(--s2); }
.svc-steps li { font-size: var(--tx-sm); color: var(--ink-mid); line-height: 1.6; }

/* Inline mini review */
.svc-mini-review {
  display: flex; align-items: flex-start; gap: var(--s3);
  padding: var(--s4) var(--s5); border-radius: var(--r-md);
  background: var(--cream); border: 1px solid var(--border);
  margin-bottom: var(--s5); font-size: var(--tx-xs); color: var(--ink-muted);
  font-style: italic; line-height: 1.6;
}
.svc-stars { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.svc-mini-review em { font-style: normal; font-weight: 600; color: var(--ink-mid); }

/* Primary service link variant */
.svc-link-primary { display: inline-flex; align-items: center; gap: var(--s2); padding: 0.6em 1.4em; border-radius: var(--r-full); background: var(--gold); color: #fff; font-size: var(--tx-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: all var(--ease); margin-top: auto; }
.svc-link-primary:hover { background: var(--gold-h); transform: translateY(-1px); box-shadow: 0 3px 14px rgba(158,117,64,.28); }

/* Services bottom CTA note */
.services-cta { text-align: center; }
.services-cta-note { font-size: var(--tx-xs); color: var(--ink-muted); margin-top: var(--s3); letter-spacing: .02em; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; max-width: 860px; margin-inline: auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s6) var(--s8); text-align: left;
  font-family: var(--ff-d); font-size: var(--tx-lg); font-weight: 500; color: var(--ink);
  background: var(--white); cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.faq-q:hover { background: var(--bg); color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); background: var(--gold-lt); }

.faq-chevron { flex-shrink: 0; color: var(--gold); transition: transform var(--ease); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease;
  background: var(--bg);
}
.faq-a[aria-hidden="false"], .faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  padding: 0 var(--s8) 0;
  font-size: var(--tx-sm); color: var(--ink-mid); line-height: 1.78; max-width: 68ch;
  transition: padding var(--ease);
}
.faq-item.open .faq-a > p { padding: var(--s5) var(--s8) var(--s7); }

@media (max-width: 600px) {
  .faq-q { padding: var(--s5) var(--s5); font-size: var(--tx-base); }
  .faq-item.open .faq-a > p { padding: var(--s4) var(--s5) var(--s6); }
}

/* ═══════════════════════════════════════════════════════════
   LEAD CAPTURE SECTION
═══════════════════════════════════════════════════════════ */
.lead-section {
  background: var(--ink);
  padding-block: clamp(var(--s16),8vw,var(--s24));
}
.lead-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s12),6vw,var(--s20));
  align-items: start;
}
.lead-text .sec-title { color: #fff; }
.lead-body-text { font-size: var(--tx-base); color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: var(--s8); }
.lead-trust-items { display: flex; flex-direction: column; gap: var(--s3); }
.lead-trust-row { display: flex; align-items: center; gap: var(--s3); font-size: var(--tx-sm); color: rgba(255,255,255,.6); }
.lead-trust-row svg { color: rgba(229,196,122,.8); flex-shrink: 0; }

/* Lead section — direct call block */
.lead-call-direct {
  margin-top: var(--s8);
  padding-top: var(--s6);
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.lead-call-label {
  font-family: var(--font-body);
  font-size: var(--tx-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(229,196,122,.75);
  margin: 0;
}
.lead-call-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color var(--ease);
}
.lead-call-link:hover { color: rgba(229,196,122,1); }
.lead-call-link svg { color: rgba(229,196,122,.8); flex-shrink: 0; }

/* Form */
.lead-form {
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--s10) var(--s8); display: flex; flex-direction: column; gap: var(--s5);
  box-shadow: var(--sh-lg);
}
.form-row { display: flex; gap: var(--s4); }
.form-row-2 > .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group label { font-size: var(--tx-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.form-group input, .form-group select {
  padding: 0.7em 1em; border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: var(--tx-sm); color: var(--ink); background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(158,117,64,.12); outline: none; }
.form-group input::placeholder { color: var(--ink-faint); }
.form-submit-btn { margin-top: var(--s2); }
.form-note { font-size: var(--tx-xs); color: var(--ink-muted); text-align: center; line-height: 1.5; }

@media (max-width: 860px) { .lead-container { grid-template-columns: 1fr; } .lead-text { order: 1; } .lead-form { order: 0; } }
@media (max-width: 480px) { .form-row-2 { flex-direction: column; } .lead-form { padding: var(--s8) var(--s6); } }

/* ═══════════════════════════════════════════════════════════
   MOBILE BAR — 3-BUTTON EXPANDED
═══════════════════════════════════════════════════════════ */
/* Override previous 2-button layout */
.mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--white); border-top: 1px solid var(--border);
  padding: var(--s2) var(--s3);
  gap: var(--s2);
  box-shadow: 0 -4px 20px rgba(50,35,15,.12);
}
.mob-call, .mob-book {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: var(--s3) var(--s2);
  border-radius: var(--r-md);
  font-size: 0.68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  transition: all var(--ease);
}
.mob-call { border: 1.5px solid var(--border); color: var(--ink-mid); }
.mob-call svg { flex-shrink: 0; }
.mob-call:hover { border-color: var(--gold); color: var(--gold); }
.mob-book { background: var(--gold); color: #fff; flex: 1.5; border: none; font-size: 0.72rem; }
.mob-book:hover { background: var(--gold-h); }
@media (max-width: 768px) { .mob-bar { display: flex; } body { padding-bottom: 72px; } }
