/* ============================================================
   BioHealthcare Resorts & Living — Homepage
   Longevity-club editorial aesthetic
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');
/* Satoshi via Fontshare */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&display=swap');

/* ---- Tokens ---- */
:root {
  --ivory:    #F4F0E8;
  --sand:     #E8E2D5;
  --stone:    #D4CDBD;
  --sage:     #8B9573;
  --forest:   #3C4733;
  --charcoal: #20261D;

  --ink:      #2B2D25;
  --ink-soft: #6E7164;
  --line:     rgba(40, 42, 34, 0.13);
  --line-strong: rgba(40, 42, 34, 0.22);

  /* tweakable accent family — [accent, accent-soft] */
  --accent:      #39442D;   /* olive-forest: buttons + feature bar */
  --accent-soft: #39442D;   /* sage: stats + side panels */
  --on-accent:   #F4F0E8;

  --maxw: 1280px;
  --gut: clamp(20px, 4.5vw, 64px);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

image-slot { display: block; width: 100%; height: 100%; filter: saturate(0.88); }

/* ---- Type primitives ---- */
.serif { font-family: var(--serif); }
.it { font-style: italic; font-family: var(--serif); }
.accent-word { font-family: var(--serif); font-style: italic; font-weight: 500;color: #7e945f; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow.on-dark { color: rgba(244, 240, 232, 0.62); }

.lede { color: var(--ink-soft); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.7; max-width: 46ch; }

/* ---- Buttons / links ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 28px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.btn:hover { background: var(--forest); transform: translateY(-1px); }
.btn.dark { background: var(--charcoal); }
.btn.dark:hover { background: #000; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  width: fit-content;
  transition: gap .25s ease, opacity .25s ease;
}
.tlink:hover { gap: 16px; opacity: .65; }
.tlink .arr { transition: transform .25s ease; }
.tlink:hover .arr { transform: translateX(3px); }
.tlink.on-dark { color: var(--ivory); }

/* ---- Layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(26px, 3.2vw, 44px); }
.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; padding-right: 8px; }
.hero-text .eyebrow { margin-bottom: 26px; }
.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero-h1 .it { display: block; }
.hero-text .lede { margin-bottom: 36px; }
.hero-actions { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

.hero-feature { min-height: clamp(420px, 56vh, 620px); }
.hero-feature image-slot { --radius: 2px; }

/* Hero video */
.hero-feature { position: relative; overflow: hidden; border-radius: 2px; background: var(--stone); }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .5s ease;
}
.hero-feature.has-video .hero-video { opacity: 1; }
/* Poster + play overlay shown until a real video source is supplied */
.hero-video-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  background:
    linear-gradient(rgba(30,32,26,0.18), rgba(30,32,26,0.45)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=72') center/cover no-repeat;
}
.hero-feature.has-video .hero-video-ph { display: none; }
.hero-video-ph .play { width: 56px; height: 56px; color: rgba(244,240,232,0.95); }
.hero-video-ph .play svg { width: 100%; height: 100%; }
.hero-video-ph .cap {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244, 240, 232, 0.88);
}

.hero-rail { display: flex; flex-direction: column; gap: clamp(18px, 1.8vw, 28px); }
.rail-text {}
.rail-text .eyebrow { margin-bottom: 18px; }
.rail-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.rail-text .lede { font-size: 14px; margin-bottom: 22px; max-width: none; }
.rail-img { flex: 1; min-height: 240px; }

/* ============================================================
   PILLARS BAR + MEMBERSHIP
   ============================================================ */
.band { padding-top: clamp(42px, 4.4vw, 74px); }
.band-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: clamp(20px, 2.2vw, 30px);
  margin-bottom: clamp(30px, 3.2vw, 50px);
  border-bottom: 1px solid var(--line);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.pillar {
  background: none;
	padding: 0;
}
.pillar .ic { width: 28px; height: 28px; color: var(--accent); margin-bottom: 22px; }
.pillar .ic svg { width: 100%; height: 100%; }
.pillar h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  margin-bottom: 14px;
  color: var(--ink);
}
.pillar p { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }

/* full-width image pair */
.band-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 1.8vw, 28px); margin-top: clamp(40px, 4.4vw, 72px); }
.band-imgs image-slot { height: clamp(220px, 24vw, 320px); }

/* ============================================================
   CARE TEAM + BIOBODYTRACK
   ============================================================ */
.team {
  background: var(--sand);
  margin-top: clamp(42px, 4.4vw, 74px);
  padding-block: clamp(38px, 4vw, 64px);
}
.team-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 4.5vw, 80px);
  align-items: center;
}
.team-text { max-width: 38ch; }
.team-text .eyebrow { display: block; margin-bottom: 24px; }
.team-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.team-text .lede { margin-bottom: 28px; max-width: none; }
.bbt { color: var(--accent); font-weight: 500; white-space: nowrap; }
.team-text .lede strong { color: var(--ink); font-weight: 600; }
.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 44px);
  margin-top: clamp(34px, 3.8vw, 60px);
  padding-top: clamp(30px, 3.2vw, 48px);
  border-top: 1px solid var(--line-strong);
}
.ds-k {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  color: var(--accent);
  margin-bottom: 12px;
}
.ds-v { font-size: 13px; line-height: 1.5; color: var(--ink-soft); max-width: 24ch; }
.team-media { align-self: stretch; }
.team-media image-slot { width: 100%; height: 100%; min-height: clamp(280px, 32vw, 420px); }
.team-list-wrap { margin-top: clamp(36px, 4vw, 64px); }
.team-list-label { display: block; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line-strong); }
.team-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px clamp(24px, 2.4vw, 40px);
}
.team-list li {
  font-family: var(--serif);
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.35;
}
.team-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; background: var(--accent-soft); border-radius: 50%;
}

/* ============================================================
   KEY MEMBERSHIP BENEFITS
   ============================================================ */
.benefits-sec { padding-top: clamp(42px, 4.4vw, 74px); }
.benefits-head { max-width: 640px; margin-bottom: clamp(40px, 4vw, 64px); }
.benefits-head .eyebrow { display: block; margin-bottom: 22px; }
.benefits-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.benefits-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 4.5vw, 76px);
  align-items: start;
}
.benefits-media { display: grid; gap: clamp(14px, 1.6vw, 22px); }
.benefits-media image-slot { width: 100%; height: clamp(220px, 25vw, 318px); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(30px, 3.4vw, 56px);
  row-gap: clamp(30px, 3.2vw, 48px);
}
.benefit { padding: 0; }
.benefit .bn {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.benefit h4 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  line-height: 1.25;
  margin-bottom: 10px;
}
.benefit p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }

/* ============================================================
   WORLD-FIRST / PROBLEM IT SOLVES
   ============================================================ */
.problem { padding-top: clamp(42px, 4.4vw, 74px); }
.problem-head { max-width: 720px; margin-bottom: clamp(30px, 3.2vw, 48px); }
.problem-head .eyebrow { display: block; margin-bottom: 20px; }
.problem-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.comp { padding: clamp(28px, 2.8vw, 44px) clamp(26px, 2.4vw, 40px); }
.comp-old { background: var(--sand); }
.comp-new { background: var(--accent); color: var(--on-accent); }
.comp-tag {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  display: block; margin-bottom: 24px; padding-bottom: 18px;
}
.comp-old .comp-tag { color: var(--ink-soft); border-bottom: 1px solid var(--line-strong); }
.comp-new .comp-tag { color: rgba(244, 240, 232, 0.66); border-bottom: 1px solid rgba(244, 240, 232, 0.28); }
.comp ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.comp li {
  position: relative; padding-left: 30px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.4;
}
.comp-old li { color: var(--ink-soft); }
.comp-old li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 1.5px; background: var(--stone);
}
.comp-new li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-soft);
}

/* ============================================================
   STATEMENT (your wellbeing never pauses)
   ============================================================ */
.statement { padding-top: clamp(42px, 4.4vw, 74px); max-width: none; }
.statement-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 4vw, 80px);
  align-items: center;
}
.statement-text { max-width: 30ch; }
.statement-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.statement-text .lede { margin-bottom: 30px; max-width: none; }
.statement-img { height: clamp(360px, 42vw, 540px); }

/* ============================================================
   PROGRAMS + STATS
   ============================================================ */
.programs { padding-top: clamp(42px, 4.4vw, 74px); }
.programs-head { max-width: 660px; margin-bottom: clamp(26px, 2.8vw, 42px); }
.programs-head .eyebrow { display: block; margin-bottom: 20px; }
.programs-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.programs-head .lede { max-width: 54ch; }
.programs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.programs-main { padding: clamp(30px, 3vw, 48px) 0; }
.svc-label { display: block; margin-bottom: clamp(20px, 2vw, 30px); }
.programs-intro { max-width: 30ch; margin-bottom: clamp(36px, 3.4vw, 52px); }
.programs-intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.programs-intro .lede { margin-bottom: 28px; max-width: none; }

/* wraparound benefits strip */
.includes { border-top: 1px solid var(--line); padding-top: clamp(30px, 3.2vw, 48px); }
.includes-label { display: block; margin-bottom: clamp(24px, 2.6vw, 38px); }
.includes-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2vw, 38px);
}
.includes-list h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.22;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.includes-list p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.4vw, 22px); }
.card {
  border: 1px solid var(--line);
  background: var(--sand);
  display: flex;
  flex-direction: column;
}
.card .card-img { height: clamp(150px, 13vw, 190px); }
.card .card-body { padding: 22px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card p { font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 20px; }
.card .plus {
  margin-top: auto;
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.card:hover .plus { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.stats {
  background: var(--forest);
  color: var(--ivory);
  padding: clamp(32px, 3.2vw, 48px) clamp(26px, 2.2vw, 38px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  order: -1;
}
.stat {
  padding: clamp(20px, 2vw, 32px) clamp(24px, 2.4vw, 40px);
  border-right: 1px solid rgba(244, 240, 232, 0.15);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.stat .num.word { font-size: clamp(26px, 2.4vw, 36px); }
.stat .lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.62);
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================================
   SCIENCE NATURE HUMANITY
   ============================================================ */
.snh { margin-top: clamp(42px, 4.4vw, 74px); background: var(--charcoal); color: var(--ivory); }
.snh-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.7fr 0.5fr;
}
.snh-text { padding: clamp(48px, 5vw, 80px) clamp(36px, 3.4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.snh-text .eyebrow { margin-bottom: 26px; }
.snh-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.05;
  margin-bottom: 26px;
}
.snh-h .it { display: block; color: #7e945f; }
.snh-text p { font-size: 14px; line-height: 1.7; color: rgba(244, 240, 232, 0.72); margin-bottom: 32px; max-width: 38ch; }
.dest-list {
  list-style: none; margin: 0 0 34px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px;
  max-width: 38ch;
}
.dest-list li {
  font-size: 13px; color: rgba(244, 240, 232, 0.82);
  padding-left: 18px; position: relative; line-height: 1.4;
}
.dest-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border: 1px solid var(--accent-soft); border-radius: 50%;
}
.snh-imgs { display: grid; grid-template-columns: repeat(3, 1fr); }
.snh-imgs image-slot { height: 100%; min-height: clamp(360px, 40vw, 520px); }
.snh-sage { background: var(--accent-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ivory); padding-top: clamp(40px, 4.2vw, 64px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.footer-brand .name { font-family: var(--serif); font-size: 21px; font-weight: 500; margin-bottom: 18px; }
.footer-brand .name b { font-weight: 600; }
.footer-brand p { font-size: 13px; line-height: 1.65; color: var(--ink-soft); max-width: 34ch; margin-bottom: 24px; }
.socials { display: flex; gap: 14px; }
.socials a { width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: background .2s, color .2s; }
.socials a:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.socials svg { width: 15px; height: 15px; }
.fcol h5 { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.fcol a { font-size: 13.5px; color: var(--ink); transition: opacity .2s; }
.fcol a:hover { opacity: .55; }
.fcol p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.subscribe { display: flex; border-bottom: 1px solid var(--line-strong); max-width: 280px; }
.subscribe input { flex: 1; border: none; background: none; font-family: var(--sans); font-size: 13.5px; padding: 10px 0; color: var(--ink); outline: none; }
.subscribe input::placeholder { color: var(--ink-soft); }
.subscribe button { background: none; border: none; cursor: pointer; padding: 0 8px; color: var(--ink); font-size: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 26px clamp(36px, 4vw, 56px); }
.footer-bottom .copy { font-size: 12px; color: var(--ink-soft); }
.footer-bottom .legal { display: flex; gap: 28px; }
.footer-bottom .legal a { font-size: 12px; color: var(--ink-soft); }
.footer-bottom .legal a:hover { color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-rail { grid-column: 1 / -1; flex-direction: row; }
  .rail-img { min-height: 220px; }
  .band-grid { grid-template-columns: 1fr; }
  .programs-grid { display: flex; flex-direction: column; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(244, 240, 232, 0.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(244, 240, 232, 0.15); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .snh-grid { grid-template-columns: 1fr; }
  .snh-sage { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-layout { grid-template-columns: 1fr; }
  .benefits-media { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-list { grid-template-columns: repeat(3, 1fr); }
  .includes-list { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
}
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-feature { min-height: 360px; }
  .hero-rail { flex-direction: column; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .statement-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .statement-img { height: 320px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .snh-imgs { grid-template-columns: 1fr 1fr; }
  .team-list { grid-template-columns: 1fr 1fr; }
  .includes-list { grid-template-columns: 1fr 1fr; }
  .doctor-stats { grid-template-columns: 1fr; gap: 22px; }
  .header-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 460px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-media { grid-template-columns: 1fr; }
  .team-list { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr; }
}

/* ============================================================
   ELITE MEMBERSHIP JOURNEY — added sections
   (ethos · journey · biobodytrack signals · closing + reveals)
   ============================================================ */

/* ---- Reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   OPENING / ETHOS
   ============================================================ */
.ethos { padding-top: clamp(48px, 5vw, 88px); }
.ethos-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 92px);
  align-items: start;
  padding-bottom: clamp(44px, 4.6vw, 76px);
  border-bottom: 1px solid var(--line);
}
.ethos-mark .eyebrow { display: block; margin-bottom: clamp(20px, 2vw, 30px); }
.ethos-line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ethos-line--accent { font-style: italic; color: #7e945f; }
.ethos-body { display: flex; flex-direction: column; gap: 22px; padding-top: 6px; }
.ethos-body .lede { max-width: 52ch; font-size: clamp(15px, 1.15vw, 18px); }

/* ============================================================
   THE MEMBERSHIP JOURNEY (7 stages)
   ============================================================ */
.journey { padding-top: clamp(42px, 4.4vw, 74px); }
.journey-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 60px); }
.journey-head .eyebrow { display: block; margin-bottom: 20px; }
.journey-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.journey-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 76px);
  padding: clamp(30px, 3.4vw, 58px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.step-content {
  display: grid;
  grid-template-columns: clamp(54px, 6vw, 108px) 1fr;
  gap: clamp(16px, 2.2vw, 40px);
  align-items: start;
}
/* alternate the image side down the list for editorial rhythm */
.step:nth-child(even) .step-content { order: 2; }
.step-media { align-self: stretch; overflow: hidden; border-radius: 2px; }
.step-media image-slot {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 24vw, 340px);
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.step:hover .step-media image-slot { transform: scale(1.03); }
.step-num {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: 1;
  color: var(--sage);
  letter-spacing: -0.02em;
}
.step-body { max-width: 52ch; }
.step-body .eyebrow { display: block; margin-bottom: 14px; }
.step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}
.step-body p { font-size: clamp(14px, 1.05vw, 16px); line-height: 1.7; color: var(--ink-soft); }
.step:hover .step-num { color: var(--accent); transition: color .3s ease; }

/* ============================================================
   BIOBODYTRACK — SIGNALS MONITORED (dark band)
   ============================================================ */
.signals {
  margin-top: clamp(42px, 4.4vw, 74px);
  background: var(--forest);
  color: var(--ivory);
  padding-block: clamp(48px, 5vw, 86px);
}
.signals-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
}
.signals-text .eyebrow.on-dark { display: block; margin-bottom: 24px; }
.signals-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.signals-h .it { display: block; color: #c2cda6; }
.signals-text p { font-size: 14.5px; line-height: 1.7; color: rgba(244,240,232,.72); max-width: 42ch; margin-bottom: 24px; }
.signals-claim { display: flex; flex-direction: column; gap: 4px; }
.signals-claim span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--ivory);
  line-height: 1.3;
}
.signals-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(244,240,232,.16);
  border-left: 1px solid rgba(244,240,232,.16);
}
.signals-list li {
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 19px);
  color: var(--ivory);
  padding: clamp(16px, 1.8vw, 24px) clamp(14px, 1.6vw, 22px);
  border-bottom: 1px solid rgba(244,240,232,.16);
  border-right: 1px solid rgba(244,240,232,.16);
  position: relative;
  line-height: 1.3;
  transition: background .25s ease;
}
.signals-list li::before {
  content: ""; position: absolute; left: clamp(14px,1.6vw,22px); top: clamp(16px,1.8vw,24px);
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
  transform: translateY(2px);
}
.signals-list li { padding-left: calc(clamp(14px,1.6vw,22px) + 20px); }
.signals-list li:hover { background: rgba(244,240,232,.05); }

/* ============================================================
   CLOSING / ENQUIRE
   ============================================================ */
.closing {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding-block: clamp(64px, 7vw, 120px);
}
.closing-eyebrow { display: block; margin-bottom: clamp(22px, 2.4vw, 34px); }
.closing-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: clamp(22px, 2.4vw, 32px);
}
.closing-h .it { display: block; color: #c2cda6; }
.closing-sub {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: rgba(244,240,232,.72);
  max-width: 54ch;
  margin: 0 auto clamp(32px, 3.4vw, 46px);
}
.closing .cta { margin-inline: auto; }

/* ============================================================
   RESPONSIVE — added sections
   ============================================================ */
@media (max-width: 1040px) {
  .ethos-grid { grid-template-columns: 1fr; gap: 32px; }
  .signals-grid { grid-template-columns: 1fr; gap: 40px; }
  .step { gap: clamp(20px, 3vw, 40px); }
  .step-media image-slot { min-height: clamp(200px, 30vw, 280px); }
}
@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; gap: clamp(18px, 5vw, 26px); padding: 30px 0; }
  /* on mobile every image sits below its text, in source order */
  .step:nth-child(even) .step-content { order: 0; }
  .step-content { gap: 16px; }
  .step-num { font-size: 30px; }
  .step-media image-slot { min-height: 210px; }
  .signals-list { grid-template-columns: 1fr; }
}
