/* ============================================================
   Regener8MD — Global Stylesheet
   Design: Cormorant Garamond + DM Sans | Warm Ivory + Earth Tones
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link{position:absolute;left:-9999em;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{position:fixed;left:6px;top:0;width:auto;height:auto;overflow:visible;background:#c9a84c;color:#0a1225;padding:8px 14px;font-size:.82rem;font-weight:700;border-radius:0 0 6px 6px;text-decoration:none;z-index:9999}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-warm:        #F8F4EF;
  --bg-white:       #FFFFFF;
  --bg-cream:       #F2EDE5;
  --bg-dark:        #141210;
  --bg-dark-mid:    #1E1B18;
  --bg-gold-wash:   #F7F1E8;

  /* Earth / Stone Palette (replaces clinical blue) */
  --charcoal:       #1C1A17;
  --charcoal-mid:   #3D3935;
  --charcoal-light: #F0EDE6;

  /* Legacy aliases — used by program pages */
  --blue-deep:      #1C1A17;
  --blue-mid:       #3D3935;
  --blue-light:     #F0EDE6;

  /* Gold */
  --gold:           #A07840;
  --gold-light:     #EDE3D4;
  --gold-mid:       #C49A5A;

  /* Text */
  --text-dark:      #1C1A17;
  --text-body:      #4A4540;
  --text-mid:       #6B6560;
  --text-muted:     #9A9590;
  --text-white:     #FFFFFF;
  --text-white-60:  rgba(255,255,255,0.60);
  --text-white-80:  rgba(255,255,255,0.82);

  /* Aliases used by program pages */
  --text-primary:   #1C1A17;
  --text-secondary: #6B6560;

  /* Borders */
  --border-light:   rgba(28,26,23,0.08);
  --border-mid:     rgba(28,26,23,0.14);
  --border-warm:    rgba(160,120,64,0.22);
  --border-white:   rgba(255,255,255,0.12);

  /* Alias for program pages */
  --border:         rgba(28,26,23,0.10);

  /* Shadows */
  --shadow-xs:      0 1px 4px rgba(28,26,23,0.06);
  --shadow-sm:      0 2px 16px rgba(28,26,23,0.08);
  --shadow-md:      0 4px 32px rgba(28,26,23,0.10);
  --shadow-lg:      0 8px 56px rgba(28,26,23,0.12);
  --shadow-xl:      0 16px 80px rgba(28,26,23,0.14);
  --shadow-gold:    0 4px 32px rgba(160,120,64,0.22);

  /* Typography */
  --font-heading:   'Cormorant Garamond', 'Georgia', serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;

  /* Spacing Scale */
  --s-xs:   8px;
  --s-sm:   16px;
  --s-md:   28px;
  --s-lg:   48px;
  --s-xl:   72px;
  --s-2xl:  100px;
  --s-3xl:  128px;

  /* Aliases for program pages */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   28px;
  --space-lg:   48px;
  --space-xl:   72px;
  --space-2xl:  100px;

  /* Layout */
  --container:    1200px;
  --nav-h:        80px;
  --nav-height:   80px;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 100px;

  /* Aliases for program pages */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Transitions */
  --ease:       0.28s cubic-bezier(0.4,0,0.2,1);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-body);
  background: var(--bg-warm);
  color: var(--text-body);
  line-height: 1.68;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) { html { font-size: 16px; } }
@media (max-width: 480px) { html { font-size: 15px; } }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.10;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4.8rem); font-weight: 400; }
h2 { font-size: clamp(1.55rem, 2.4vw, 2.4rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.75rem); font-weight: 500; }
h4 { font-size: clamp(1.05rem, 1.4vw, 1.28rem); font-weight: 600; }

p { color: var(--text-body); line-height: 1.78; }

.lead {
  font-size: 1.13rem;
  color: var(--text-mid);
  line-height: 1.82;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

@media (max-width: 768px) { .container { padding: 0 var(--s-md); } }
@media (max-width: 480px) { .container { padding: 0 var(--s-sm); } }

.section {
  padding: var(--s-3xl) 0;
}

@media (max-width: 900px) { .section { padding: var(--s-xl) 0; } }
@media (max-width: 480px)  { .section { padding: var(--s-lg) 0; } }

/* Background variants */
.bg-white  { background: var(--bg-white); }
.bg-warm   { background: var(--bg-warm); }
.bg-cream  { background: var(--bg-cream); }
.bg-dark   { background: var(--bg-dark); }

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--text-white); }
.bg-dark p  { color: var(--text-white-60); }
.bg-dark .eyebrow { color: var(--gold-mid); }
.bg-dark .lead { color: var(--text-white-80); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-lg); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); }

@media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.section-header { margin-bottom: var(--s-xl); }
.section-header.center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin-bottom: 20px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--charcoal);
  color: #FFFFFF;
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28,26,23,0.25);
}

.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #8A6632;
  border-color: #8A6632;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.80);
}

.btn-sm  { padding: 11px 24px; font-size: 0.72rem; }
.btn-lg  { padding: 19px 52px; font-size: 0.84rem; }


/* ============================================================
   INNER PAGE HERO — IMAGE PANEL
   ============================================================ */
.page-hero { position: relative; overflow: hidden; }

.page-hero-img-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  pointer-events: none;
}
.page-hero-img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blue-deep,#1C1A17) 0%, rgba(28,26,23,0.55) 35%, transparent 65%);
  z-index: 1;
}
.page-hero-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  display: block;
}
.page-hero-img-panel .page-hero-content { max-width: 58%; }
@media (max-width: 900px) { .page-hero-img-panel { display: none; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  transition: all var(--ease);
}

.nav.scrolled {
  background: rgba(20,18,16,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.30);
  border-bottom: 1px solid var(--border-white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--gold-mid);
}
.nav-logo-text span {
  color: var(--gold-mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color var(--ease);
}
.nav-link:hover, .nav-link.active { color: #FFFFFF; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.nav-phone {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-mid);
  letter-spacing: 0.04em;
  transition: color var(--ease);
}
.nav-phone:hover { color: #FFFFFF; }

.nav-item { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--border-white);
  border-radius: var(--r-md);
  padding: 16px 0 8px;
  min-width: 210px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.50);
  z-index: 2000;
}
.nav-item:hover .nav-dropdown,
.nav-item.dd-open .nav-dropdown { display: block; }
.nav-dropdown-divider { height: 1px; background: var(--border-white); margin: 6px 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  transition: all var(--ease);
}
.nav-dropdown a:hover { color: #FFFFFF; background: rgba(255,255,255,0.05); }
.nav-dropdown-sep { height: 1px; background: var(--border-white); margin: 6px 0; }
.nav-arrow { font-size: 0.55rem; margin-left: 3px; opacity: 0.55; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all var(--ease);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    padding: var(--s-lg);
    gap: var(--s-md);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-link { font-size: 1.1rem; color: rgba(255,255,255,0.80); }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border-white);
    background: transparent;
    padding: 4px 0 4px 16px;
    margin-top: 4px;
    min-width: unset;
    border-radius: 0;
  }
  .nav-dropdown a { padding: 8px 0; font-size: 0.85rem; }
  .nav-dropdown-sep { display: none; }
}

/* ============================================================
   HERO — Full Bleed
   ============================================================ */
.hero {
  min-height: 100dvh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-dark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.96) 0%,
    rgba(10,8,6,0.78) 30%,
    rgba(10,8,6,0.45) 60%,
    rgba(10,8,6,0.22) 85%,
    rgba(10,8,6,0.12) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--s-3xl);
  padding-top: calc(var(--nav-h) + var(--s-xl));
  max-width: 820px;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: var(--s-md);
  font-weight: 300;
  line-height: 1.06;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-mid);
  font-weight: 300;
}

.hero .lead {
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--s-lg);
  max-width: 580px;
  font-size: 1.16rem;
  line-height: 1.80;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: var(--s-xl);
}

.hero-phones {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: var(--s-lg);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-phone-item { display: flex; flex-direction: column; gap: 4px; }
.hero-phone-label {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-phone-num {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--gold-mid);
  transition: color var(--ease);
}
.hero-phone-num:hover { color: #FFFFFF; }

@media (max-width: 768px) {
  .hero { align-items: flex-end; }
  .hero-content { padding-bottom: var(--s-xl); }
}

/* ============================================================
   INTRO / PHILOSOPHY SECTION
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-3xl);
  align-items: start;
}
.intro-main h2 { margin-bottom: 24px; }
.intro-main .lead { margin-top: 0; }

.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
  padding-top: 12px;
}
.intro-pillar {
  padding-left: var(--s-md);
  border-left: 2px solid var(--gold-light);
}
.intro-pillar-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.intro-pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.intro-pillar p {
  font-size: 0.90rem;
  color: var(--text-mid);
  line-height: 1.74;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
}

/* ============================================================
   PILLAR CARDS
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-xl);
}
.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--s-lg) var(--s-md);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.pillar-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: -8px;
}
.pillar-card h3 { font-size: 1.38rem; color: var(--text-dark); margin-bottom: 14px; }
.pillar-card p { font-size: 0.91rem; color: var(--text-mid); line-height: 1.74; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAM BUCKET CARDS
   ============================================================ */
.bucket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--s-xl);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bucket-card {
  background: var(--bg-white);
  padding: var(--s-lg) var(--s-md);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.bucket-card:hover { background: var(--bg-gold-wash); }
.bucket-card:nth-child(3n) { border-right: none; }
.bucket-card:nth-child(n+4) { border-bottom: none; }

.bucket-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bucket-name {
  font-family: var(--font-heading);
  font-size: 1.52rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 14px;
}
.bucket-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.74;
  flex: 1;
  margin-bottom: var(--s-md);
}
.bucket-link {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--ease);
}
.bucket-link:hover { gap: 14px; }

@media (max-width: 1024px) {
  .bucket-grid { grid-template-columns: repeat(2, 1fr); }
  .bucket-card:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .bucket-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .bucket-grid { grid-template-columns: 1fr; }
  .bucket-card { border-right: none; }
  .bucket-card:last-child { border-bottom: none; }
}

/* ============================================================
   DOCTOR SECTION
   ============================================================ */
.doctor-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.doctor-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(14,12,10,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 18px 22px;
  border: 1px solid var(--border-white);
}
.doctor-badge-label {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}
.doctor-badge-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 3px;
}
.doctor-badge-cred {
  font-size: 0.72rem;
  color: var(--gold-mid);
  font-weight: 500;
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: var(--s-md) 0 var(--s-lg);
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
}
.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 44px;
  border-right: 1px solid var(--border-light);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.trust-label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 110px;
}
@media (max-width: 900px) {
  .trust-item { padding: 14px 24px; border-right: none; border-bottom: 1px solid var(--border-light); width: 50%; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
}
@media (max-width: 480px) {
  .trust-item { width: 100%; border-right: none; }
  .trust-item:nth-child(odd) { border-right: none; }
}

/* ============================================================
   RESULTS TIMELINE (Dark)
   ============================================================ */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: var(--s-xl);
  background: var(--border-white);
  border: 1px solid var(--border-white);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.timeline-step {
  background: var(--bg-dark-mid);
  padding: var(--s-lg) var(--s-md);
  text-align: center;
  transition: background var(--ease);
}
.timeline-step:hover { background: rgba(255,255,255,0.04); }
.timeline-marker {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-md);
}
.timeline-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
}
.timeline-unit {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.timeline-body { font-size: 0.84rem; color: var(--text-white-60); line-height: 1.72; }

@media (max-width: 900px) { .timeline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .timeline-grid { grid-template-columns: 1fr; } }

.results-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-xl);
}
.results-item {
  text-align: center;
  padding-top: var(--s-md);
  border-top: 1.5px solid var(--gold);
}
.results-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}
.results-label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white-60);
}
@media (max-width: 600px) { .results-trio { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-xl);
}
.testimonial-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--s-lg);
}
.t-quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 0.8;
  display: block;
  margin-bottom: 10px;
}
.t-text {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.74;
  margin-bottom: var(--s-md);
}
.t-author {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MEMBERSHIP CARDS
   ============================================================ */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-xl);
  align-items: start;
}
.membership-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--ease);
}
.membership-card:hover {
  border-color: var(--charcoal);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.membership-card.featured {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.m-header {
  padding: var(--s-md) var(--s-md) var(--s-sm);
  background: var(--bg-dark);
}
.membership-card.featured .m-header { background: var(--charcoal); }
.m-badge {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: block;
  margin-bottom: 6px;
}
.m-header h3 { color: #FFFFFF; font-size: 1.45rem; margin-bottom: 4px; }
.m-price-note { font-size: 0.78rem; color: rgba(255,255,255,0.50); }
.m-body { padding: var(--s-md); }
.m-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.m-price-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: var(--s-md); }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--s-lg); }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}
.f-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.60rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .membership-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .membership-card.featured { transform: none; }
}

/* ============================================================
   MESENCHYMAL STEM CELLS SECTION
   ============================================================ */
.msc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: start;
}
.msc-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.msc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--ease), color var(--ease);
}
.msc-link:hover { gap: 14px; color: var(--charcoal); }
.msc-timeline-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.msc-timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 56px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}
.msc-timeline-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.msc-timeline-step:last-child { padding-bottom: 0; }
.msc-timeline-left { display: flex; justify-content: center; }
.msc-icon-wrap {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.msc-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}
.msc-overline {
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  border-radius: 2px;
  margin-bottom: 10px;
}
.msc-timeline-right h6 {
  font-family: var(--font-heading);
  font-size: 1.10rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.30;
  margin-bottom: 8px;
}
.msc-timeline-right p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.74;
}
@media (max-width: 1024px) {
  .msc-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
  .msc-timeline-wrapper::before { display: none; }
}

/* ============================================================
   FINAL CTA — Full Bleed Image
   ============================================================ */
.cta-section {
  position: relative;
  padding: var(--s-3xl) 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.cta-section-bg {
  position: absolute;
  inset: 0;
}
.cta-section-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cta-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.72);
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-section::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(160,120,64,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0C0A08;
  color: rgba(255,255,255,0.42);
  padding: var(--s-3xl) 0 var(--s-lg);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--s-xl);
  padding-bottom: var(--s-xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.footer-brand em { font-style: normal; color: var(--gold-mid); }
.footer-brand span { color: var(--gold-mid); }
.footer-tagline { font-size: 0.85rem; line-height: 1.70; max-width: 280px; margin-bottom: var(--s-md); }
.footer-phone-link { font-size: 0.96rem; font-weight: 600; color: var(--gold-mid); display: block; margin-bottom: 4px; transition: color var(--ease); }
.footer-phone-link:hover { color: #FFFFFF; }
.footer-address { font-size: 0.80rem; color: rgba(255,255,255,0.28); line-height: 1.70; margin-top: var(--s-md); }
.footer-col-title {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
  margin-bottom: var(--s-md);
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link { font-size: 0.84rem; color: rgba(255,255,255,0.44); transition: color var(--ease); }
.footer-link:hover { color: #FFFFFF; }
.footer-bottom {
  padding-top: var(--s-lg);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-md);
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.74rem; color: rgba(255,255,255,0.20); line-height: 1.68; max-width: 600px; }
.footer-badge { font-size: 0.74rem; color: rgba(255,255,255,0.20); white-space: nowrap; }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-lg); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (Interior Pages)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + var(--s-3xl)) 0 var(--s-xl);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(160,120,64,0.06) 0%, transparent 60%);
}
.page-hero h1 { color: #FFFFFF; margin-bottom: 18px; }
.page-hero .lead { color: var(--text-white-80); max-width: 600px; }

/* ============================================================
   SERVICE / TREATMENT CARDS (Interior Pages)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--s-md);
  transition: all var(--ease);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 8px; }
.service-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.70; }

.biomarker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--s-lg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.biomarker-item {
  background: var(--bg-white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-body);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--ease);
}
.biomarker-item:hover { background: var(--bg-gold-wash); }
.biomarker-item:nth-child(3n) { border-right: none; }
.b-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media (max-width: 768px) { .biomarker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .biomarker-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .biomarker-item { border-right: none; } }

/* Interior page section soft */
.section-soft { background: var(--bg-warm); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Safe areas */
.nav { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.footer { padding-bottom: max(var(--s-lg), env(safe-area-inset-bottom)); }
html { overscroll-behavior: none; }
