/* ============================================
   THE WELLNESS CO. — Global Stylesheet
   Design System: Cream / Gold / Charcoal
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================ */

/* ============================================
   VARIABLES & TOKENS
   ============================================ */
:root {
  --gold: #C6A96C;
  --gold-light: #D4BE8E;
  --gold-dark: #A8893F;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6560;
  --text-muted: #9B9590;
  --white: #FFFFFF;
  --section-pad: 100px 0;
  --nav-height: 64px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
h4, h5, h6 { font-family: 'Inter', sans-serif; }

h1 { font-size: 52px; line-height: 1.15; }
h2 { font-size: 42px; line-height: 1.2; }
h3 { font-size: 28px; line-height: 1.3; }
h4 { font-size: 20px; line-height: 1.4; font-weight: 600; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }

p { line-height: 1.7; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label {
  display: inline-block;
  background: rgba(198, 169, 108, 0.08);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-left: 2px solid var(--gold);
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, transform 0.25s ease;
}
.btn-primary:hover { background: var(--charcoal-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1.5px solid var(--text-primary);
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}
.btn-secondary:hover { background: var(--text-primary); color: var(--white); transform: translateY(-1px); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 18px 42px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s ease, box-shadow 0.35s ease;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(198,169,108,0.3); }

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, transform 0.25s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

.btn-sm {
  padding: 10px 24px;
  font-size: 12px;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 18px 0;
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.nav-scrolled {
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary) !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
}
.nav-cta {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  transition: background 0.3s !important;
}
.nav-cta:hover {
  background: var(--charcoal-light) !important;
}

/* --- Dropdown Navigation --- */
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a .nav-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
  margin-left: 2px;
}
.nav-item:hover > a .nav-arrow,
.nav-item.is-open > a .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  min-width: 220px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}
.nav-item:hover > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--text-primary) !important;
}

/* Mega-menu (wide dropdown) */
.nav-mega {
  min-width: 600px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nav-mega-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 0;
}
.nav-mega-col a {
  padding: 6px 0 !important;
  font-size: 13px !important;
}
.nav-mega-col a:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

/* --- Hamburger Button (mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  margin: 3px 0;
}
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* --- Mobile Slide-in Menu --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1005;
  padding: 100px 32px 40px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.mobile-nav.is-open {
  right: 0;
}
.mobile-nav a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  letter-spacing: 0.5px;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-nav .mobile-nav-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
}
.mobile-nav-phone {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold) !important;
  border-bottom: none !important;
}

/* Mobile nav accordion */
.mobile-nav-group > .mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-nav-group > .mobile-nav-toggle::after {
  content: '+';
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.mobile-nav-group.is-open > .mobile-nav-toggle::after {
  content: '-';
}
.mobile-nav-sub {
  display: none;
  padding-left: 16px;
}
.mobile-nav-group.is-open .mobile-nav-sub {
  display: block;
}
.mobile-nav-sub a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 10px 0;
}

/* Overlay behind mobile menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1004;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-nav-overlay.is-visible {
  opacity: 1;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
  padding: 160px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content .hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 520px;
}
.hero-content .hero-detail {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; }
.hero-portal {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.hero-portal img {
  width: 100%;
  display: block;
}
.portal-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
}

/* ============================================
   PAGE HERO (Inner Pages — services, conditions, about, etc.)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  position: relative;
  text-align: center;
}
.page-hero .eyebrow {
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}
.page-hero .hero-ctas {
  justify-content: center;
}

/* Page hero — dark variant (for CLARITY, conditions) */
.page-hero--dark {
  background: var(--charcoal);
  color: var(--white);
}
.page-hero--dark h1 {
  color: var(--white);
}
.page-hero--dark h1 em {
  color: var(--gold-light);
}
.page-hero--dark p {
  color: rgba(255,255,255,0.6);
}
.page-hero--dark .eyebrow {
  color: var(--gold-light);
}

/* Page hero — cream variant (default) */
.page-hero--cream {
  background: var(--cream);
}

/* Page hero — with image background */
.page-hero--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.page-hero--image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,26,26,0.7);
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
}
.page-hero--image h1 { color: var(--white); }
.page-hero--image p { color: rgba(255,255,255,0.7); }
.page-hero--image .eyebrow { color: var(--gold-light); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.breadcrumbs ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs li {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.breadcrumbs li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs li a:hover {
  color: var(--gold);
}
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--text-muted);
}
.breadcrumbs li:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.trust-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item span {
  color: var(--gold);
  font-weight: 700;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.1);
}

/* ============================================
   PAIN AGITATION
   ============================================ */
.pain-section {
  padding: 120px 0;
  background: #2D2A26;
  position: relative;
  overflow: hidden;
}
.pain-section .container {
  text-align: center;
  position: relative;
  z-index: 1;
}
.pain-section h2 {
  font-size: 42px;
  margin-bottom: 72px;
  color: var(--white);
}
.pain-section h2 em { font-style: italic; color: var(--gold-light); }
.pain-stack {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: left;
}
.pain-line {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.pain-line:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.pain-told {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  color: rgba(255,255,255,0.15);
  text-decoration: line-through;
  text-decoration-color: rgba(198,169,108,0.4);
  min-width: 220px;
  flex-shrink: 0;
  line-height: 1.3;
}
.pain-reality {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  padding-top: 4px;
}
.pain-reality strong {
  color: var(--gold-light);
  font-weight: 600;
}
.pain-resolve {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  font-weight: 400;
  margin-top: 64px;
}
.pain-resolve strong {
  color: var(--gold-light);
}

/* ============================================
   RESPONSIVE SYSTEM (Portal Showcase)
   ============================================ */
.responsive-section {
  padding: 120px 0;
  background: #1A1816;
  color: var(--white);
  position: relative;
}
.responsive-header {
  text-align: center;
  margin-bottom: 80px;
}
.responsive-header .eyebrow { color: var(--gold-light); }
.responsive-header h2 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 20px;
}
.responsive-header h2 em { font-style: italic; color: var(--gold-light); }
.responsive-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.portal-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.portal-feature {
  position: relative;
}
.portal-feature-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  position: relative;
}
.portal-feature-img img {
  width: 100%;
  display: block;
}
.portal-feature-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.portal-feature-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.portal-feature h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.portal-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.responsive-callout {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.responsive-callout p {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.responsive-callout p strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ============================================
   HOW IT WORKS (3-Step)
   ============================================ */
.process-section {
  padding: var(--section-pad);
  background: var(--white);
}
.process-section .container { text-align: center; }
.process-section h2 {
  font-size: 42px;
  margin-bottom: 16px;
}
.process-section h2 em { font-style: italic; color: var(--gold); }
.process-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 64px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
  margin-bottom: 48px;
}
.process-step {
  position: relative;
  padding: 40px 32px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: rgba(198, 169, 108, 0.2);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}
.process-step h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.step-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   DIAGNOSTIC REPORT
   ============================================ */
.diagnostic-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.diagnostic-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diagnostic-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.diagnostic-content h2 em { font-style: italic; color: var(--gold); }
.diagnostic-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.diagnostic-features {
  list-style: none;
  margin-bottom: 36px;
}
.diagnostic-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.diagnostic-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
}
.diagnostic-visual {
  position: relative;
}
.diagnostic-visual img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.stat-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--charcoal);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.stat-overlay .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold-light);
  line-height: 1;
}
.stat-overlay .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ============================================
   TIER SECTION
   ============================================ */
.tier-section {
  padding: var(--section-pad);
  background: var(--white);
}
.tier-section .container { text-align: center; }
.tier-section h2 {
  font-size: 42px;
  margin-bottom: 12px;
}
.tier-section h2 em { font-style: italic; color: var(--gold); }
.tier-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 56px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 36px;
}
.tier-card {
  background: var(--cream);
  padding: 40px 32px;
  position: relative;
  border: 1.5px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tier-card:hover { transform: translateY(-3px); }
.tier-card.featured {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(198,169,108,0.15);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 4px;
}
.tier-outcome {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 4px;
}
.tier-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.tier-features {
  list-style: none;
  margin-bottom: 32px;
}
.tier-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
}
.tier-cta {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, transform 0.25s ease;
}
.tier-card .tier-cta {
  background: var(--cream-dark);
  color: var(--text-primary);
}
.tier-card.featured .tier-cta {
  background: var(--charcoal);
  color: var(--white);
}
.tier-card .tier-cta:hover { opacity: 0.8; }
.couples-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}
.couples-note strong { color: var(--gold); }

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.proof-section .container { text-align: center; }
.proof-section h2 {
  font-size: 42px;
  margin-bottom: 60px;
}
.proof-section h2 em { font-style: italic; color: var(--gold); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  margin-bottom: 48px;
}
.proof-card {
  background: var(--white);
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.proof-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}
.proof-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.proof-detail {
  font-size: 12px;
  color: var(--text-muted);
}
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.proof-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   AUTHORITY / TEAM
   ============================================ */
.team-section {
  padding: 48px 0 0;
  background: var(--white);
}
.team-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-photo {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-content h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.team-content h2 em { font-style: italic; color: var(--gold); }
.team-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.team-creds {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.team-cred {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ============================================
   SERVICES (Condensed Grid)
   ============================================ */
.services-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.services-section .container { text-align: center; }
.services-section h2 {
  font-size: 36px;
  margin-bottom: 48px;
}
.services-section h2 em { font-style: italic; color: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-mini {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-mini:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.service-mini h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 500;
}
.service-mini p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 8px;
}
.service-mini a {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  background: var(--charcoal);
  text-align: center;
}
.final-cta h2 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 20px;
}
.final-cta h2 em { font-style: italic; color: var(--gold-light); }
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.final-contact {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.final-contact a {
  color: var(--gold-light);
  text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 60px 0;
  background: #111;
  color: rgba(255,255,255,0.3);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-address {
  font-size: 13px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  margin-left: 24px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   PORTAL PLACEHOLDERS
   ============================================ */
.portal-placeholder {
  background: linear-gradient(145deg, #2A2520, #1E1B18);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(198,169,108,0.12);
}
.portal-placeholder.tile-warm {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.05);
}
.portal-placeholder.tile-cool {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.05);
}
.portal-placeholder.tile-deep {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.05);
}
.portal-placeholder.tile-emerald {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.05);
}
.portal-placeholder .pp-content {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 1px;
}
.portal-placeholder .pp-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.portal-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
  background: #1a1a1a;
}
.portal-frame iframe {
  width: 100%;
  height: 480px;
  border: none;
  pointer-events: none;
  transform: scale(0.75);
  transform-origin: top left;
  width: 133.33%;
  height: 640px;
}

/* ============================================
   MOCKUP ANNOTATION (for review only)
   ============================================ */
.mockup-note {
  background: #FFF3CD;
  border: 2px dashed #C6A96C;
  padding: 16px 24px;
  font-size: 13px;
  color: #856404;
  text-align: center;
  font-weight: 500;
}


/* ============================================
   ============================================
   NEW PAGE-TYPE STYLES
   ============================================
   ============================================ */


/* ============================================
   SERVICE PAGE LAYOUT
   ============================================ */
.service-page-content {
  padding: 80px 0;
}
.service-page-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-main h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.service-main h2 em { font-style: italic; color: var(--gold); }
.service-main h3 {
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 40px;
}
.service-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.service-main ul, .service-main ol {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}
.service-main ul li, .service-main ol li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}
.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Service sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--cream);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
.sidebar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.sidebar-card .btn-primary,
.sidebar-card .btn-gold {
  width: 100%;
  text-align: center;
}
.sidebar-links {
  list-style: none;
}
.sidebar-links li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-links li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links li a:hover {
  color: var(--gold);
}

/* Service image/visual block */
.service-image {
  margin: 32px 0;
  border-radius: 4px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  display: block;
}

/* ============================================
   CONDITION PAGE LAYOUT
   ============================================ */
.condition-page-content {
  padding: 80px 0;
}
.condition-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.condition-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Symptoms grid */
.symptoms-section {
  padding: 60px 0;
  background: var(--cream);
}
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.symptom-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}
.symptom-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.symptom-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Treatment approach */
.approach-section {
  padding: var(--section-pad);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.approach-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.approach-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.approach-image {
  border-radius: 4px;
  overflow: hidden;
}
.approach-image img {
  width: 100%;
  display: block;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: var(--section-pad);
}
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-content h2 {
  font-size: 38px;
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-story-content h2 em { font-style: italic; color: var(--gold); }
.about-story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.about-story-image {
  border-radius: 4px;
  overflow: hidden;
}
.about-story-image img {
  width: 100%;
  display: block;
}

/* Provider cards */
.providers-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.provider-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.provider-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.provider-card-img {
  height: 300px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  overflow: hidden;
}
.provider-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provider-card-body {
  padding: 28px 24px;
}
.provider-card-body h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.provider-card-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.provider-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Values section */
.values-section {
  padding: var(--section-pad);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.value-item {
  text-align: center;
  padding: 32px;
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 24px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-details li:last-child {
  border-bottom: none;
}
.contact-details-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
}
.contact-details-value {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-details-value a {
  color: var(--text-primary);
  text-decoration: none;
}
.contact-details-value a:hover {
  color: var(--gold);
}

/* Contact form */
.contact-form {
  background: var(--cream);
  padding: 48px 40px;
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary,
.form-submit .btn-gold {
  width: 100%;
  text-align: center;
}

/* Map embed container */
.contact-map {
  margin-top: 60px;
  height: 400px;
  background: var(--cream-dark);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.faq-section .container {
  max-width: 800px;
}
.faq-section h2 {
  font-size: 36px;
  margin-bottom: 48px;
  text-align: center;
}
.faq-section h2 em { font-style: italic; color: var(--gold); }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  padding-right: 24px;
}
.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  transition: transform 0.3s;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 12px;
}
.faq-item.is-open .faq-icon {
  border-color: var(--gold);
}
.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
}
.faq-answer-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CLARITY CALLOUT BOX
   ============================================ */
.clarity-callout {
  background: linear-gradient(135deg, #1A1816, #2D2A26);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.clarity-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.clarity-callout .eyebrow {
  color: var(--gold-light);
}
.clarity-callout h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}
.clarity-callout h3 em { color: var(--gold-light); }
.clarity-callout p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  max-width: 600px;
}
.clarity-callout .btn-gold {
  margin-top: 8px;
}

/* Smaller inline variant */
.clarity-callout--compact {
  padding: 32px;
}
.clarity-callout--compact h3 {
  font-size: 22px;
}
.clarity-callout--compact p {
  font-size: 14px;
}

/* ============================================
   RELATED SERVICES GRID
   ============================================ */
.related-services {
  padding: 80px 0;
  background: var(--cream);
}
.related-services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.related-services h2 em { font-style: italic; color: var(--gold); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.related-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card-body {
  padding: 24px;
}
.related-card-body .eyebrow {
  font-size: 9px;
  margin-bottom: 8px;
}
.related-card-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.related-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.related-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ============================================
   CONTENT BODY (Rich text for inner pages)
   ============================================ */
.content-body {
  padding: 60px 0;
}
.content-body h2 {
  font-size: 32px;
  margin: 40px 0 16px;
}
.content-body h3 {
  font-size: 24px;
  margin: 32px 0 12px;
}
.content-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.content-body ul, .content-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.content-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.content-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}
.content-body img {
  border-radius: 4px;
  margin: 24px 0;
}

/* ============================================
   TWO-COLUMN FEATURE BLOCK
   ============================================ */
.feature-block {
  padding: var(--section-pad);
}
.feature-block--cream {
  background: var(--cream);
}
.feature-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-block--reverse .container {
  direction: rtl;
}
.feature-block--reverse .container > * {
  direction: ltr;
}
.feature-block-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.feature-block-content h2 em { font-style: italic; color: var(--gold); }
.feature-block-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.feature-block-image {
  border-radius: 4px;
  overflow: hidden;
}
.feature-block-image img {
  width: 100%;
  display: block;
}

/* ============================================
   LOCATIONS PAGE
   ============================================ */
.location-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.location-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.location-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.location-hours {
  list-style: none;
}
.location-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.location-hours li:last-child {
  border-bottom: none;
}

/* ============================================
   BLOG / ARTICLE LISTING
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.blog-card-img {
  height: 200px;
  background: var(--cream-dark);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }
.mt-80 { margin-top: 80px; }
.pt-0 { padding-top: 0; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.hidden { display: none; }

/* Two-column split (generic) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Gold divider line */
.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-gold--center {
  margin-left: auto;
  margin-right: auto;
}

/* Frosted glass tile (dark sections) */
.frosted-tile {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.05);
  padding: 32px;
  color: var(--white);
}

/* Animated counter value */
.counter-value {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}


/* ============================================
   ============================================
   RESPONSIVE — TABLET (max-width: 768px)
   ============================================
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .container--narrow { padding: 0 24px; }
  .container--wide { padding: 0 24px; }

  /* Hide mockup annotation on mobile */
  .mockup-note { display: none; }

  /* --- NAVIGATION (mobile) --- */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  nav { padding: 14px 0; }

  /* Hide desktop dropdowns */
  .nav-dropdown,
  .nav-mega { display: none !important; }

  /* --- PAGE HERO (inner pages) --- */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }

  /* --- BREADCRUMBS --- */
  .breadcrumbs { padding: 12px 0; }
  .breadcrumbs li { font-size: 11px; }

  /* --- HERO (homepage) --- */
  .hero { padding: 100px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-content h1 { font-size: 36px; line-height: 1.15; margin-bottom: 20px; }
  .hero-content .hero-sub { font-size: 17px; line-height: 1.6; margin-bottom: 12px; }
  .hero-content .hero-detail { font-size: 14px; line-height: 1.6; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas a { text-align: center; padding: 16px 24px !important; font-size: 14px !important; }
  .eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 12px; }

  /* Hero portal */
  .hero-portal {
    transform: none !important;
    padding: 0 !important;
  }
  .hero-portal > div[style*="position: absolute"] { display: none !important; }
  .hero-portal .portal-badge { font-size: 8px !important; padding: 6px 10px !important; top: 12px !important; left: 14px !important; }

  /* --- TRUST BAR --- */
  .trust-bar { padding: 32px 0; }
  .trust-bar .container { flex-wrap: wrap; gap: 12px 0; justify-content: center; }
  .trust-divider { display: none; }
  .trust-item { font-size: 10px; letter-spacing: 1.5px; width: 50%; text-align: center; }

  /* --- PAIN SECTION --- */
  .pain-section { padding: 80px 0; }
  .pain-section h2 { font-size: 30px; margin-bottom: 48px; }
  .pain-stack { max-width: 100%; }
  .pain-line {
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }
  .pain-told { font-size: 22px; min-width: auto; }
  .pain-reality { font-size: 15px; line-height: 1.7; }
  .pain-resolve { font-size: 24px; margin-top: 48px; }

  /* --- PORTAL SHOWCASE --- */
  .responsive-section { padding: 80px 0; }
  .responsive-header { margin-bottom: 48px; }
  .responsive-header h2 { font-size: 30px; margin-bottom: 16px; }
  .responsive-header p { font-size: 15px; line-height: 1.7; }
  .portal-showcase { grid-template-columns: 1fr; gap: 40px; }
  .portal-feature-img { margin-bottom: 16px; }
  .portal-feature h3 { font-size: 20px; margin-bottom: 8px; }
  .portal-feature p { font-size: 14px; line-height: 1.6; }
  .responsive-callout { padding-top: 32px; }
  .responsive-callout p { font-size: 18px; line-height: 1.5; }

  /* --- HOW IT WORKS --- */
  .process-section h2 { font-size: 30px; }
  .process-sub { font-size: 15px; margin-bottom: 40px; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .process-step { padding: 32px 24px; }
  .process-step h3 { font-size: 20px; }
  .process-step p { font-size: 14px; }
  .step-number { font-size: 44px; }

  /* --- DIAGNOSTIC REPORT --- */
  .diagnostic-section { padding: 80px 0; }
  .diagnostic-section .container { grid-template-columns: 1fr; gap: 48px; }
  .diagnostic-content h2 { font-size: 30px; }
  .diagnostic-content > p { font-size: 15px; }
  .diagnostic-features li { font-size: 14px; }
  .stat-overlay {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 20px;
    display: inline-block;
  }

  /* --- TIERS --- */
  .tier-section { padding: 80px 0; }
  .tier-section h2 { font-size: 30px; }
  .tier-sub { font-size: 15px; margin-bottom: 36px; }
  .tier-grid { grid-template-columns: 1fr; gap: 24px; }
  .tier-card { padding: 36px 28px; }
  .tier-name { font-size: 26px; }
  .tier-price { font-size: 34px; }
  .tier-features li { font-size: 14px; padding: 12px 0; }
  .tier-cta { padding: 16px; font-size: 14px; }
  .couples-note { font-size: 13px; }

  /* --- SOCIAL PROOF --- */
  .proof-section { padding: 80px 0; }
  .proof-section h2 { font-size: 30px; margin-bottom: 40px; }
  .proof-grid { grid-template-columns: 1fr; gap: 20px; }
  .proof-card { padding: 28px 24px; }
  .proof-quote { font-size: 15px; line-height: 1.7; }
  .proof-stats { flex-direction: row; gap: 0; justify-content: space-around; }
  .proof-stat-number { font-size: 36px; }
  .proof-stat-label { font-size: 10px; }

  /* --- TEAM --- */
  .team-section { padding: 80px 0; }
  .team-section .container { grid-template-columns: 1fr; gap: 40px; }
  .team-photo { height: 280px; order: -1; }
  .team-content h2 { font-size: 28px; }
  .team-content p { font-size: 15px; line-height: 1.7; }
  .team-creds { flex-wrap: wrap; gap: 10px; }
  .team-cred { font-size: 10px; padding: 8px 14px; }

  /* --- SERVICES --- */
  .services-section { padding: 80px 0; }
  .services-section h2 { font-size: 28px; margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-mini { padding: 24px 16px; }
  .service-mini h4 { font-size: 15px; }
  .service-mini p { font-size: 12px; }

  /* --- FINAL CTA --- */
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 30px; }
  .final-cta p { font-size: 15px; line-height: 1.6; }
  .btn-gold { padding: 18px 36px; font-size: 15px; width: 100%; text-align: center; }
  .final-contact { font-size: 12px; line-height: 1.8; }

  /* --- FOOTER --- */
  footer { padding: 48px 0; }
  footer .container { flex-direction: column; gap: 36px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .footer-brand { font-size: 12px; }

  /* All section labels */
  .section-label { font-size: 9px; padding: 5px 12px; }

  /* All primary/secondary buttons */
  .btn-primary, .btn-secondary { font-size: 14px; padding: 16px 28px; }

  /* --- SERVICE PAGE --- */
  .service-page-content .container { grid-template-columns: 1fr; gap: 40px; }
  .service-sidebar { position: static; }
  .service-main h2 { font-size: 28px; }

  /* --- CONDITION PAGE --- */
  .symptoms-grid { grid-template-columns: 1fr; gap: 16px; }
  .approach-grid { grid-template-columns: 1fr; gap: 32px; }
  .approach-image { order: -1; }

  /* --- ABOUT PAGE --- */
  .about-story .container { grid-template-columns: 1fr; gap: 40px; }
  .about-story-image { order: -1; }
  .providers-grid { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }

  /* --- CONTACT PAGE --- */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }

  /* --- RELATED SERVICES --- */
  .related-grid { grid-template-columns: 1fr; gap: 20px; }

  /* --- FAQ --- */
  .faq-section { padding: 60px 0; }
  .faq-section h2 { font-size: 28px; margin-bottom: 32px; }
  .faq-question h3 { font-size: 15px; }

  /* --- CLARITY CALLOUT --- */
  .clarity-callout { padding: 32px 24px; }
  .clarity-callout h3 { font-size: 22px; }
  .clarity-callout p { font-size: 14px; }

  /* --- FEATURE BLOCK --- */
  .feature-block .container { grid-template-columns: 1fr; gap: 40px; }
  .feature-block--reverse .container { direction: ltr; }
  .feature-block-content h2 { font-size: 28px; }
  .feature-block-image { order: -1; }

  /* --- SPLIT GRID --- */
  .split-grid { grid-template-columns: 1fr; gap: 40px; }

  /* --- BLOG --- */
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }

  /* --- LOCATION --- */
  .location-card { padding: 28px 24px; }
}


/* ============================================
   RESPONSIVE — SMALL PHONE (max-width: 420px)
   ============================================ */
@media (max-width: 420px) {
  .hero-content h1 { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-stats { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-direction: column; gap: 24px; }

  .page-hero h1 { font-size: 28px; }
  .tier-grid { gap: 16px; }
  .contact-form { padding: 32px 20px; }
  .homepage-hero-content h1 { font-size: 34px; }
}

/* ============================================
   HOMEPAGE HERO — Brand Level
   ============================================ */
.homepage-hero {
  padding: 160px 0 100px;
  background: var(--cream);
  position: relative;
}
.homepage-hero .container {
  max-width: 900px;
  text-align: center;
}
.homepage-hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.homepage-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.homepage-hero-content .hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
}
.homepage-hero-content .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================
   CLARITY TEASER (Homepage)
   ============================================ */
.clarity-teaser {
  padding: var(--section-pad);
  background: var(--cream);
}
.clarity-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.clarity-teaser-content h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.clarity-teaser-content h2 em {
  font-style: italic;
  color: var(--gold);
}

@media (max-width: 768px) {
  .homepage-hero { padding: 120px 0 60px; }
  .homepage-hero-content h1 { font-size: 40px; }
  .clarity-teaser .container { grid-template-columns: 1fr; gap: 40px; }
  .clarity-teaser-visual { order: -1; }
}

/* ============================================
   DESIGN SYSTEM UPGRADES — Round 2
   ============================================ */

/* --- Linen/Noise Texture Overlay --- */
.texture-linen {
  position: relative;
}
.texture-linen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.texture-linen > * {
  position: relative;
  z-index: 1;
}

/* --- Trust Bar --- */
.trust-bar-numbers {
  padding: 36px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.trust-bar-numbers .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.trust-stat {
  text-align: center;
}
.trust-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-divider-gold {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(198,169,108,0.3), transparent);
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.testimonials-section .container {
  text-align: center;
}
.testimonials-section h2 {
  font-size: 42px;
  margin-bottom: 16px;
}
.testimonials-section h2 em {
  font-style: italic;
  color: var(--gold);
}
.testimonials-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 14px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.testimonial-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(198,169,108,0.25);
}

/* --- Nav CTA Gold Glow --- */
.nav-cta:hover {
  background: var(--gold) !important;
  box-shadow: 0 4px 16px rgba(198,169,108,0.35) !important;
  color: var(--white) !important;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.back-to-top:hover svg {
  stroke: var(--white);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.2s;
}

/* ============================================
   DESIGN SYSTEM UPGRADES — Audit Fixes
   ============================================ */

/* --- Page Entrance --- */
@keyframes pageEntrance {
  from { opacity: 0; }
  to { opacity: 1; }
}
body {
  animation: pageEntrance 0.6s ease-out;
}

/* --- Button Refinements --- */
.btn-primary,
.btn-secondary,
.btn-gold,
.btn-outline-gold,
.btn-outline-white {
  border-radius: 2px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-gold:focus-visible,
.btn-outline-gold:focus-visible,
.btn-outline-white:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Nav Logo — gold flash on scroll --- */
.nav-logo {
  transition: color 0.3s, letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.nav-scrolled .nav-logo {
  color: var(--gold-dark);
}
.nav-logo:hover {
  color: var(--gold) !important;
}

/* --- Slider Dot → Pill Indicator --- */
.diff-dot,
.club-dot {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.diff-dot.active,
.club-dot.is-active,
.club-dot.club-dot-active {
  width: 24px !important;
  border-radius: 3px !important;
}

/* --- IV Drip Card Hover (homepage inline cards) --- */
.clarity-teaser + div + section a[href^="tel"] {
  position: relative;
  overflow: hidden;
}
/* IV drip cards use inline styles so we target them via the stagger-children wrapper */
.stagger-children > a[href^="tel"] {
  border-top: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.stagger-children > a[href^="tel"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-top-color: var(--gold);
}

/* --- Condition Tag Pills — hover fill --- */
section a[href^="/conditions"][style*="padding: 10px 20px"] {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
section a[href^="/conditions"][style*="padding: 10px 20px"]:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}

/* --- Service Tab Fade Transition --- */
.svc-panel {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.svc-panel.fade-out {
  opacity: 0;
}

/* --- Hero "Demystified" blur-to-focus + animated underline --- */
@keyframes demystify {
  0%   { filter: blur(12px); }
  60%  { filter: blur(3px); }
  100% { filter: blur(0); }
}
@keyframes heroUnderline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.homepage-hero-content h1 em {
  position: relative;
  display: inline-block;
  filter: blur(12px);
}
.homepage-hero-content h1.is-visible em {
  animation: demystify 2.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s forwards;
}
.homepage-hero-content h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
}
.homepage-hero-content h1.is-visible em::after {
  animation: heroUnderline 1s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards;
}

/* --- Wellness Club Join Link — visibility upgrade --- */
.club-banner .club-link,
a[style*="Join the Club"] {
  transition: all 0.3s !important;
}

/* --- Footer Copyright Bar --- */
.footer-copyright {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  position: relative;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,169,108,0.35), transparent);
}

/* --- Gold Gradient Hairlines (replace flat borders) --- */
.gold-hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,169,108,0.3), transparent);
  border: none;
  margin: 0;
}

/* Variable spacing system — break the monotonous 100px padding */
.space-breathe { padding: 160px 0; }
.space-dramatic { padding: 200px 0; }
.space-tight { padding: 60px 0; }

/* Typography drama — larger display headings */
.display-xl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 500;
}
.display-xxl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 500;
}

/* Full-bleed statement sections */
.statement-section {
  padding: 140px 40px;
  text-align: center;
  max-width: none;
}
.statement-section p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  line-height: 1.5;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
}
.statement-section p strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* Narrow container for intimate text sections */
.container--intimate {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--charcoal);
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(198,169,108,0.2);
}
.mobile-cta-bar a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 12px 20px;
  text-align: center;
  flex: 1;
}
.mobile-cta-bar .mobile-cta-book {
  background: var(--gold);
  color: var(--white);
}
.mobile-cta-bar .mobile-cta-call {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(198,169,108,0.3);
}

/* IV Drip Animation */
@keyframes ivDrop {
  0% { opacity: 0; transform: translateY(-8px); }
  40% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(6px); }
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.iv-drop {
  animation: ivDrop 3s ease-in-out infinite;
}
.iv-icon-card:nth-child(1) .iv-drop { animation-delay: 0s; }
.iv-icon-card:nth-child(2) .iv-drop { animation-delay: 0.5s; }
.iv-icon-card:nth-child(3) .iv-drop { animation-delay: 1.0s; }
.iv-icon-card:nth-child(4) .iv-drop { animation-delay: 1.5s; }
.iv-icon-card:nth-child(5) .iv-drop { animation-delay: 2.0s; }

.iv-icon-card {
  border-radius: 4px;
}
.iv-icon-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Service tab panels */
.svc-panel {
  justify-content: center;
}
.svc-panel .service-mini {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Asymmetric hero layouts */
.hero-asymmetric {
  padding: 140px 0 100px;
  background: var(--cream);
}
.hero-asymmetric .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.hero-asymmetric--reverse .container {
  grid-template-columns: 0.8fr 1.2fr;
}

/* Inline CTA for condition pages — early conversion */
.inline-cta {
  margin: 40px 0;
  padding: 32px 40px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.inline-cta p {
  font-size: 16px;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}
.inline-cta .btn-gold {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mega heading for nav */
.nav-mega-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 0;
}

/* Mobile nav heading (accordion) */
.mobile-nav-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav-heading::after {
  content: '+';
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.mobile-nav-group.is-open > .mobile-nav-heading::after {
  content: '−';
}
.mobile-nav-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Utility helpers */
.mb-64 { margin-bottom: 64px; }

/* Conditions grid — homepage */
.conditions-grid-homepage {
  display: grid;
  gap: 16px;
}

/* ============================================
   RESPONSIVE — Audit Fixes Mobile Overrides
   ============================================ */
@media (max-width: 768px) {
  /* Show sticky mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
  }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 68px;
  }

  /* Typography scale down */
  .display-xl { font-size: 42px; }
  .display-xxl { font-size: 48px; }

  /* Stack asymmetric hero grids */
  .hero-asymmetric .container,
  .hero-asymmetric--reverse .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Container padding */
  .container--intimate {
    padding: 0 20px;
  }

  /* Statement section mobile */
  .statement-section {
    padding: 80px 20px;
  }
  .statement-section p {
    font-size: 22px;
  }

  /* Inline CTA mobile */
  .inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  /* Spacing overrides */
  .space-breathe { padding: 100px 0; }
  .space-dramatic { padding: 120px 0; }

  /* Conditions grid mobile */
  .conditions-grid-homepage {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .conditions-grid-homepage {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--charcoal);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.mobile-cta-book {
  background: var(--gold);
  color: var(--white);
}
.mobile-cta-call {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.mobile-cta-bar a:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
}

/* ============================================
   INLINE EARLY CTA
   ============================================ */
.inline-cta {
  text-align: center;
  padding: 32px 24px;
  margin: 40px 0;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.inline-cta p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.btn-sm {
  display: inline-block;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.btn-gold.btn-sm {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-gold.btn-sm:hover {
  background: var(--gold-dark);
}

/* ============================================
   PILLAR PAGE COMPONENTS
   Reusable design system for service redesigns.
   Break template fatigue with varied layouts.
   ============================================ */

/* DARK HERO — Atmospheric gradient with gold bloom */
.hero--dark {
  background: linear-gradient(175deg, #1A1816 0%, #0A0908 60%, #111010 100%);
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  color: var(--white);
}
.hero--dark::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,169,108,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero--dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(120,130,145,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero--dark .eyebrow {
  color: var(--gold);
}
.hero--dark h1 {
  color: var(--white);
  font-size: 52px;
  max-width: 700px;
}
.hero--dark h1 em {
  color: var(--gold-light);
}
.hero--dark p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero--dark {
    padding: 130px 0 72px;
  }
  .hero--dark h1 {
    font-size: 34px;
  }
}

/* STAT BLOCK — Big number + supporting label */
.stat-block {
  text-align: center;
  padding: 80px 0;
  background: var(--charcoal);
  color: var(--white);
}
.stat-block .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
}
.stat-block .stat-label {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .stat-block .stat-number {
    font-size: 48px;
  }
  .stat-block .stat-label {
    font-size: 16px;
    padding: 0 24px;
  }
}

/* SCIENCE BLOCK — Charcoal centered authority moment */
.science-block {
  padding: 80px 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
}
.science-block h2 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 20px;
}
.science-block h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.science-block p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .science-block {
    padding: 60px 0;
  }
  .science-block h2 {
    font-size: 28px;
    padding: 0 24px;
  }
}

/* ASYMMETRIC GRID — 1 hero + 2 supporting */
.asymmetric-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.asymmetric-grid .hero-item {
  grid-row: 1 / 3;
  background: linear-gradient(165deg, rgba(255,254,252,0.92), rgba(248,246,242,0.86));
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(120,130,145,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}
.asymmetric-grid .support-item {
  background: linear-gradient(165deg, rgba(255,254,252,0.88), rgba(248,246,242,0.82));
  border-radius: 4px;
  padding: 28px 26px;
  box-shadow: 0 2px 16px rgba(120,130,145,0.05), inset 0 1px 0 rgba(255,255,255,0.5);
}
.asymmetric-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
}
.asymmetric-grid .hero-item h3 {
  font-size: 26px;
  margin-bottom: 16px;
}
.asymmetric-grid p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.asymmetric-grid .step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
  .asymmetric-grid .hero-item {
    grid-row: auto;
  }
}

/* COMPARISON ROW — Side-by-side (them vs us) */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.comparison-row .comparison-side {
  padding: 36px 32px;
  border-radius: 4px;
}
.comparison-row .comparison-side--dim {
  background: var(--cream-dark);
  opacity: 0.75;
}
.comparison-row .comparison-side--hero {
  background: linear-gradient(165deg, rgba(255,254,252,0.92), rgba(248,246,242,0.86));
  box-shadow: 0 4px 24px rgba(120,130,145,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  border-left: 3px solid var(--gold);
}
.comparison-row h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
}
.comparison-row ul {
  list-style: none;
  padding: 0;
}
.comparison-row li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.comparison-row li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  margin-top: 8px;
}
.comparison-side--dim li::before {
  background: var(--text-muted);
}
.comparison-side--hero li::before {
  background: var(--gold);
}
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }
}

/* SYMPTOM MATCHER — Symptom → solution reveal cards */
.symptom-matcher {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.symptom-card {
  background: linear-gradient(170deg, #1E1C1A 0%, #141210 100%);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.symptom-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.symptom-card .symptom-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin-bottom: 20px;
}
.symptom-card .symptom-answer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.symptom-card .symptom-arrow {
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.symptom-card .symptom-drip {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.symptom-card .symptom-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  line-height: 1.5;
}

/* HERO CARD — Oversized featured card */
.hero-card {
  background: linear-gradient(165deg, rgba(255,254,252,0.92), rgba(248,246,242,0.86));
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(120,130,145,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(120,130,145,0.1);
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
}
.hero-card .card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* COMPACT TILE — Smaller card for secondary items */
.compact-tile {
  background: linear-gradient(165deg, rgba(255,254,252,0.85), rgba(248,246,242,0.78));
  border-radius: 4px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(120,130,145,0.04), inset 0 1px 0 rgba(255,255,255,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.compact-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(120,130,145,0.08);
}
.compact-tile h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.compact-tile p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* COMPACT TILE GRID */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .compact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .compact-grid {
    grid-template-columns: 1fr;
  }
}

/* CATEGORY NAV — Horizontal filter pills */
.category-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.category-nav a,
.category-nav button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.category-nav a:hover,
.category-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.category-nav a.active,
.category-nav button.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* PIVOT SECTION — Contextual alternatives */
.pivot-section {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.pivot-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}
.pivot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.pivot-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.25s ease;
}
.pivot-card:hover {
  box-shadow: 0 4px 20px rgba(120,130,145,0.08);
}
.pivot-card .pivot-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(198,169,108,0.1), rgba(198,169,108,0.05));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pivot-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pivot-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .pivot-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO SPLIT — Two-column hero layout */
.hero--split {
  padding: 160px 0 100px;
}
.hero--split .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero--split {
    padding: 130px 0 72px;
  }
  .hero--split .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* CATEGORY SECTION — Grouped content with header */
.category-section {
  margin-bottom: 64px;
}
.category-section .category-header {
  margin-bottom: 24px;
}
.category-section .category-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}
.category-section .category-header p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.category-section .category-grid {
  display: grid;
  gap: 16px;
}
.category-section .category-grid--featured {
  grid-template-columns: 1.3fr 1fr 1fr;
}
@media (max-width: 768px) {
  .category-section .category-grid--featured {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GLOBAL ANIMATION ENGINE
   Scroll reveals, parallax, cinematic effects
   ============================================ */

/* --- Keyframes --- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatYSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(198,169,108,0.25), 0 0 12px rgba(198,169,108,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(198,169,108,0.15), 0 0 20px rgba(198,169,108,0.1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes drawLine {
  0% { stroke-dashoffset: 1; }
  100% { stroke-dashoffset: 0; }
}
@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes slideInFromLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* --- Scroll Reveal Base States --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }

/* --- Visible State (toggled by JS) --- */
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Stagger Children --- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-children.is-visible > *:nth-child(9) { transition-delay: 0.64s; }
.stagger-children.is-visible > *:nth-child(10) { transition-delay: 0.72s; }
.stagger-children.is-visible > *:nth-child(11) { transition-delay: 0.80s; }
.stagger-children.is-visible > *:nth-child(12) { transition-delay: 0.88s; }
.stagger-children.is-visible > * {
  opacity: 1;
  transform: none;
}

/* --- Parallax Float --- */
.parallax-float {
  animation: floatY 6s ease-in-out infinite;
}
.parallax-float-slow {
  animation: floatYSlow 8s ease-in-out infinite;
}

/* --- Gold Shimmer CTA --- */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, #E8D5A8 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  animation: shimmer 3s ease-in-out infinite;
}

/* --- Gold Divider --- */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  border: none;
  margin: 0;
}

/* --- Frosted Tile (for dark sections) --- */
.frosted-tile {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.frosted-tile:hover {
  border-color: rgba(198,169,108,0.2);
  transform: translateY(-3px);
}

/* --- Hero Visual Container --- */
.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-visual > * {
  position: absolute;
}

/* --- Cinematic Background Glow --- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}
.bg-glow--gold {
  background: radial-gradient(circle, rgba(198,169,108,0.4), transparent 70%);
}
.bg-glow--warm {
  background: radial-gradient(circle, rgba(212,190,142,0.3), transparent 70%);
}

/* --- Club Banner (injected by JS) --- */
.club-banner {
  background: linear-gradient(135deg, #1A1816, #2D2A26);
  padding: 48px 0;
  border-top: 1px solid rgba(198,169,108,0.08);
  border-bottom: 1px solid rgba(198,169,108,0.08);
  overflow: hidden;
}
.club-banner .container {
  text-align: center;
}
.club-banner .club-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.club-banner .club-slider {
  position: relative;
  height: 36px;
  margin-bottom: 20px;
}
.club-banner .club-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.club-banner .club-slide.is-active {
  opacity: 1;
}
.club-banner .club-slide p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin: 0;
}
.club-banner .club-slide em {
  color: var(--gold-light);
}
.club-banner .club-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.club-banner .club-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--gold-light);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
  opacity: 0.3;
}
.club-banner .club-dot.is-active {
  opacity: 1;
}
.club-banner .club-link {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.club-banner .club-link:hover {
  color: var(--gold-light);
}
@media (max-width: 768px) {
  .club-banner { padding: 36px 0; }
  .club-banner .club-slider { height: 54px; }
  .club-banner .club-slide p { font-size: 17px; }
}

/* ============================================
   ============================================
   MOBILE OPTIMIZATION — Comprehensive
   Handles inline-styled elements, proportional
   scaling, and clean phone layouts.
   ============================================
   ============================================ */

/* ============================================
   TABLET / LARGE PHONE (max-width: 768px)
   Supplements the existing 768px breakpoint
   ============================================ */
@media (max-width: 768px) {

  /* --- Homepage Hero --- */
  .homepage-hero { padding: 110px 0 56px; }
  .homepage-hero-content h1 { font-size: 38px; line-height: 1.15; margin-bottom: 20px; }
  .homepage-hero-content .hero-sub { font-size: 16px; line-height: 1.7; margin-bottom: 28px; }

  /* --- Philosophy Slider (inline-styled dark section) --- */
  .diff-slider-track .diff-slide > div { padding: 0 8px !important; }
  .diff-slider-track .diff-slide p { font-size: 16px !important; line-height: 1.7 !important; }

  /* --- CLARITY Teaser portal mockup (inline-styled) --- */
  .clarity-teaser-visual > div { border-radius: 12px !important; }

  /* Portal mockup biomarker grid — 5 col to 3 col on tablet */
  #portal-mockup > div:last-child > div:nth-child(2) {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* Bio age number */
  #bio-age-counter { font-size: 36px !important; }

  /* --- Club slider (inline-styled) --- */
  #club-slider { height: auto !important; min-height: 54px; }
  #club-slider .club-slide p,
  .club-slide p { font-size: 17px !important; line-height: 1.5 !important; }

  /* --- Service tab panels — 4-col/3-col to 2-col (inline grids) --- */
  .svc-panel[data-panel] { grid-template-columns: repeat(2, 1fr) !important; }
  .svc-tabs { gap: 6px !important; }
  .svc-tabs .svc-tab { padding: 8px 16px !important; font-size: 10px !important; }

  /* --- SoftWave banner (inline flex) --- */
  .softwave-banner-content,
  section > div[style*="display: flex"][style*="justify-content: space-between"] {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }

  /* --- IV Drip grids (inline 3-col) --- */
  .svc-panels + div .stagger-children,
  section div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* --- Mobile Drip Lab banner (inline padded) --- */
  section div[style*="padding: 40px 32px"][style*="max-width: 960px"] {
    padding: 32px 20px !important;
  }
  section div[style*="padding: 40px 32px"] h3 { font-size: 22px !important; }

  /* --- Vitamin Injection circles (inline flex gap) --- */
  section div[style*="gap: 48px"][style*="flex-wrap: wrap"] {
    gap: 24px !important;
  }
  /* Vitamin framed section */
  section div[style*="padding: 48px 40px 40px"][style*="max-width: 860px"] {
    padding: 36px 20px 28px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* --- Origin story team section --- */
  .team-section[style*="margin-top: -60px"] { margin-top: 0 !important; }
  .team-section .container { gap: 32px; }

  /* --- Credential tags banner (inline flex) --- */
  .team-section + section > div[style*="display: flex"][style*="gap: 32px"],
  div[style*="display: flex"][style*="justify-content: center"][style*="gap: 32px"][style*="border-top"] {
    flex-wrap: wrap !important;
    gap: 8px 16px !important;
    padding: 12px 16px !important;
  }

  /* --- Symptom/Condition pill links (inline flex) --- */
  section div[style*="gap: 16px"][style*="flex-wrap: wrap"][style*="margin-bottom: 40px"] {
    gap: 8px !important;
  }
  section div[style*="gap: 16px"][style*="flex-wrap: wrap"] a[style*="padding: 10px 20px"] {
    padding: 8px 14px !important;
    font-size: 11px !important;
  }

  /* --- Condition bottom tagline + link --- */
  section div[style*="border-top: 1px"][style*="padding-top: 28px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  section div[style*="border-top: 1px"][style*="padding-top: 28px"] span {
    font-size: 16px !important;
  }

  /* --- Section padding reduction (inline padded sections) --- */
  section[style*="padding: 100px 0"],
  section[style*="padding: var(--section-pad)"] {
    padding: 64px 0 !important;
  }
  section[style*="padding: 80px 0"] {
    padding: 56px 0 !important;
  }
  section[style*="padding: 120px 0"] {
    padding: 72px 0 !important;
  }

  /* --- Section heading scale-down (inline h2s) --- */
  section h2[style*="font-size: 42px"] { font-size: 30px !important; }
  section h2[style*="font-size: 32px"] { font-size: 26px !important; }
  section h2[style*="font-size: 46px"] { font-size: 32px !important; }

  /* --- Inline container overrides --- */
  div[style*="max-width: 800px"].container,
  .container[style*="max-width: 800px"] {
    max-width: 100% !important;
  }

  /* --- Section centering text adjustments --- */
  section div[style*="margin-bottom: 64px"] { margin-bottom: 36px !important; }
  section div[style*="margin-bottom: 60px"] { margin-bottom: 36px !important; }
  section div[style*="margin-bottom: 40px"] { margin-bottom: 28px !important; }

  /* --- Inline section descriptions --- */
  section p[style*="font-size: 17px"],
  section p[style*="font-size: 18px"] {
    font-size: 15px !important;
  }
  section p[style*="font-size: 16px"][style*="max-width"] {
    font-size: 15px !important;
    max-width: 100% !important;
  }

  /* --- Portal mockup nav tabs (hide extras on mobile) --- */
  #portal-mockup div[style*="gap: 20px"] {
    gap: 12px !important;
  }
  #portal-mockup div[style*="gap: 20px"] span {
    font-size: 9px !important;
  }

  /* --- Protocol bar text --- */
  #protocol-bar div[style*="font-size: 14px"] { font-size: 12px !important; }

  /* --- btn-gold full-width override for homepage --- */
  .homepage-hero-content .btn-gold { width: 100%; text-align: center; }

  /* --- Inline CTA buttons in sections --- */
  section a.btn-gold[style],
  section a.btn-outline-gold[style] {
    font-size: 14px !important;
  }

  /* --- Footer links gap --- */
  .footer-links { gap: 24px; }
}

/* ============================================
   SMALL PHONE (max-width: 480px)
   Fine-tune for iPhone SE / narrow Android
   ============================================ */
@media (max-width: 480px) {

  /* Tighter container padding */
  .container { padding: 0 16px; }
  .container--narrow { padding: 0 16px; }
  .container--wide { padding: 0 16px; }

  /* --- Homepage Hero --- */
  .homepage-hero { padding: 100px 0 48px; }
  .homepage-hero-content h1 { font-size: 32px; line-height: 1.15; }
  .homepage-hero-content .hero-sub { font-size: 15px; margin-bottom: 24px; }

  /* --- Page hero (inner) --- */
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 15px; }

  /* --- Typography global --- */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  /* --- Philosophy slider --- */
  .diff-slider-track .diff-slide p { font-size: 14px !important; }

  /* --- Portal mockup biomarker grid — 3 col to 2+3 layout --- */
  #portal-mockup > div:last-child > div:nth-child(2) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Hide 5th biomarker card on very small screens */
  #portal-mockup .bio-card:nth-child(5) { display: none; }
  #bio-age-counter { font-size: 30px !important; }

  /* Portal mockup main padding */
  #portal-mockup > div:last-child { padding: 18px 14px 16px !important; }
  /* Portal mockup header row */
  #portal-mockup div[style*="display: flex"][style*="justify-content: space-between"][style*="margin-bottom: 24px"] {
    flex-direction: column !important;
    gap: 12px !important;
  }
  #portal-mockup div[style*="text-align: right"] { text-align: left !important; }
  #portal-mockup div[style*="justify-content: flex-end"] { justify-content: flex-start !important; }
  /* Portal greeting */
  #portal-mockup div[style*="font-size: 24px"] { font-size: 20px !important; }

  /* --- Club slider text --- */
  #club-slider .club-slide p,
  .club-slide p { font-size: 15px !important; }
  #club-slider { min-height: 64px; }

  /* --- Service tab panels — collapse to 1-col --- */
  .svc-panel[data-panel] { grid-template-columns: 1fr !important; }
  .svc-tabs { gap: 4px !important; }
  .svc-tabs .svc-tab { padding: 8px 12px !important; font-size: 9px !important; letter-spacing: 1px !important; }

  /* --- Service mini cards --- */
  .service-mini { padding: 24px 16px; }
  .service-mini h4 { font-size: 16px; }
  .service-mini p { font-size: 12px; line-height: 1.5; }

  /* --- IV Drip grids — 2-col to 1-col --- */
  section div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  /* --- IV Drip cards padding --- */
  section div[style*="grid-template-columns: repeat(3"] > a[style*="padding: 32px 24px"] {
    padding: 24px 16px !important;
  }

  /* --- Vitamin injection circles — 2+3 layout --- */
  section div[style*="gap: 48px"][style*="flex-wrap: wrap"],
  section div[style*="gap: 24px"][style*="flex-wrap: wrap"] {
    gap: 20px !important;
    justify-content: center !important;
  }
  section div[style*="gap: 48px"] > a,
  section div[style*="gap: 24px"] > a[style*="text-align: center"] {
    flex: 0 0 auto !important;
  }

  /* --- Framed vitamin section --- */
  section div[style*="padding: 48px 40px 40px"][style*="max-width: 860px"],
  section div[style*="padding: 36px 20px 28px"] {
    padding: 28px 16px 24px !important;
  }

  /* --- Origin story text --- */
  .team-content h2 { font-size: 24px; }
  .team-content p { font-size: 14px; }
  .team-photo { height: 220px; }

  /* --- Credential tags --- */
  div[style*="display: flex"][style*="justify-content: center"][style*="gap: 32px"][style*="border-top"] span[style*="font-size: 10px"] {
    font-size: 9px !important;
  }

  /* --- Condition pills 2-per-row --- */
  section div[style*="gap: 16px"][style*="flex-wrap: wrap"][style*="margin-bottom: 40px"],
  section div[style*="gap: 8px"][style*="flex-wrap: wrap"][style*="margin-bottom: 40px"] {
    justify-content: center !important;
  }
  section div[style*="flex-wrap: wrap"] a[style*="padding: 10px 20px"],
  section div[style*="flex-wrap: wrap"] a[style*="padding: 8px 14px"] {
    padding: 8px 12px !important;
    font-size: 10px !important;
    flex: 0 1 calc(50% - 8px) !important;
    text-align: center !important;
  }

  /* --- Condition tagline bottom --- */
  section div[style*="border-top: 1px"] span[style*="font-size: 18px"],
  section div[style*="border-top: 1px"] span[style*="font-size: 16px"] {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  /* --- Pain section (inner pages) --- */
  .pain-section h2 { font-size: 26px; }
  .pain-told { font-size: 20px; }
  .pain-resolve { font-size: 22px; }

  /* --- Section inline h2s --- */
  section h2[style*="font-size: 42px"] { font-size: 26px !important; }
  section h2[style*="font-size: 32px"] { font-size: 24px !important; }
  section h2[style*="font-size: 46px"] { font-size: 28px !important; }
  section h2[style*="font-size: 36px"] { font-size: 24px !important; }
  section h3[style*="font-size: 26px"] { font-size: 22px !important; }
  .final-cta h2 { font-size: 26px; }
  .final-cta p { font-size: 14px; }

  /* --- Buttons --- */
  .btn-gold { padding: 16px 28px; font-size: 14px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 13px; }
  .btn-outline-gold { padding: 14px 24px; font-size: 13px; }

  /* --- Inline section descriptions --- */
  section p[style*="font-size: 17px"],
  section p[style*="font-size: 18px"] { font-size: 14px !important; }
  section p[style*="font-size: 16px"] { font-size: 14px !important; }
  section p[style*="font-size: 15px"] { font-size: 13px !important; }

  /* --- Process / How it works --- */
  .process-section h2 { font-size: 26px; }
  .process-step { padding: 28px 20px; }
  .step-number { font-size: 38px; }

  /* --- Tier cards --- */
  .tier-card { padding: 28px 20px; }
  .tier-name { font-size: 24px; }
  .tier-price { font-size: 30px; }

  /* --- Stat block --- */
  .stat-block .stat-number { font-size: 40px; }
  .stat-block .stat-label { font-size: 14px; }

  /* --- Science block --- */
  .science-block h2 { font-size: 26px; }
  .science-block p { font-size: 14px; padding: 0 16px; }

  /* --- Hero dark (pillar pages) --- */
  .hero--dark { padding: 110px 0 56px; }
  .hero--dark h1 { font-size: 28px; }
  .hero--dark p { font-size: 15px; }

  /* --- Split hero --- */
  .hero--split { padding: 110px 0 56px; }

  /* --- Proof section --- */
  .proof-section h2 { font-size: 26px; }
  .proof-card { padding: 24px 20px; }
  .proof-stat-number { font-size: 32px; }

  /* --- About page --- */
  .about-story-content h2 { font-size: 28px; }
  .provider-card-img { height: 220px; }

  /* --- FAQ --- */
  .faq-question h3 { font-size: 14px; }

  /* --- Footer compact --- */
  footer { padding: 36px 0; }
  .footer-brand { font-size: 11px; }
  .footer-address { font-size: 12px; }
  .footer-col h5 { font-size: 10px; margin-bottom: 12px; }
  .footer-col a { font-size: 12px; }

  /* --- Mobile CTA bar compact --- */
  .mobile-cta-bar { padding: 10px 12px; gap: 8px; }
  .mobile-cta-bar a { padding: 12px 12px; font-size: 13px; }

  /* --- Inline CTA banners --- */
  .inline-cta { padding: 20px 16px; }
  .inline-cta p { font-size: 14px; }

  /* --- CLARITY callout --- */
  .clarity-callout { padding: 24px 16px; }
  .clarity-callout h3 { font-size: 20px; }
  .clarity-callout p { font-size: 13px; }

  /* --- Location cards --- */
  .location-card { padding: 24px 16px; }

  /* --- Cross-link bars --- */
  .pivot-card { padding: 16px; gap: 12px; }
  .pivot-card h4 { font-size: 14px; }
  .pivot-card p { font-size: 12px; }

  /* --- Sidebar card --- */
  .sidebar-card { padding: 24px 16px; }

  /* --- Breadcrumbs --- */
  .breadcrumbs li { font-size: 10px; }

  /* --- SoftWave banner text (inline) --- */
  div[style*="font-family: 'Playfair Display'"][style*="font-size: 22px"] { font-size: 18px !important; }
  div[style*="font-size: 14px"][style*="color: rgba(255,255,255,0.5)"] p { font-size: 13px !important; }

  /* --- Mobile nav refinement --- */
  .mobile-nav { width: 280px; padding: 90px 24px 32px; }

  /* --- Conditions grid --- */
  .conditions-grid-homepage { grid-template-columns: 1fr !important; }

  /* --- Services grid (5-col to 1-col) --- */
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   EXTRA SMALL PHONE (max-width: 375px)
   iPhone SE, Galaxy A series
   ============================================ */
@media (max-width: 375px) {
  .container { padding: 0 14px; }

  .homepage-hero-content h1 { font-size: 28px; }
  .homepage-hero { padding: 96px 0 40px; }

  .page-hero h1 { font-size: 26px; }
  .hero--dark h1 { font-size: 26px; }

  /* Service tabs — scroll horizontally */
  .svc-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    padding-bottom: 8px;
  }
  .svc-tabs .svc-tab { white-space: nowrap; flex-shrink: 0; }

  /* Club slider */
  #club-slider .club-slide p,
  .club-slide p { font-size: 14px !important; }

  /* Biomarker cards even smaller */
  #portal-mockup .bio-card { padding: 10px 6px 8px !important; }
  .bio-card div[style*="font-size: 9px"] { font-size: 8px !important; }

  /* Further heading reductions */
  section h2[style*="font-size: 42px"] { font-size: 24px !important; }
  .final-cta h2 { font-size: 24px; }
  .team-content h2 { font-size: 22px; }

  /* Tighter CTA buttons */
  .btn-gold { padding: 14px 20px; font-size: 13px; }
  .mobile-cta-bar a { font-size: 12px; padding: 10px 8px; }

  /* IV cards */
  section div[style*="grid-template-columns: repeat(3"] > a { padding: 20px 12px !important; }
  section div[style*="grid-template-columns: repeat(3"] > a div[style*="font-size: 20px"] { font-size: 17px !important; }
}

/* ============================================
   GLOBAL MOBILE HELPERS
   Touch-friendly targets, proportional spacing
   ============================================ */

/* Ensure all clickable elements meet 44px min touch target */
@media (max-width: 768px) {
  .hamburger,
  .mobile-cta-bar a,
  .svc-tab,
  .diff-dot,
  .club-dot {
    min-height: 44px;
    min-width: 44px;
  }

  /* Prevent horizontal scroll from any element */
  body { overflow-x: hidden; }
  section { overflow-x: hidden; }

  /* Smooth text rendering on small screens */
  body {
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
  }

  /* Images never overflow */
  img, svg, video, iframe { max-width: 100%; }

  /* Inline-styled flex items don't overflow */
  [style*="display: flex"] { min-width: 0; }

  /* Fix inline grid overflow */
  [style*="display: grid"] { min-width: 0; }

  /* Ensure slider dots stay centered and clickable */
  .diff-dot, .club-dot {
    min-height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --- Round 2 Responsive --- */
@media (max-width: 768px) {
  .trust-bar-numbers .container {
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-stat-number { font-size: 28px; }
  .trust-divider-gold { display: none; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonials-section { padding: 64px 0; }
  .testimonials-section h2 { font-size: 32px; }
  .back-to-top { bottom: 88px; right: 16px; width: 40px; height: 40px; }
}

/* ============================================
   MOBILE OVERFLOW FIX — Round 3
   Prevents right-side cutoff across all pages
   ============================================ */
@media (max-width: 768px) {

  /* --- Global containment --- */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  section, footer, .breadcrumbs {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .container {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* --- Clarity teaser (homepage) --- */
  .clarity-teaser-content,
  .clarity-teaser-visual {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .clarity-teaser-content h2,
  .clarity-teaser-content p,
  .clarity-teaser-content a {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  #portal-mockup {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  #protocol-bar {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* --- Diagnostic section (CLARITY page) --- */
  .diagnostic-content,
  .diagnostic-visual {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .diagnostic-content h2,
  .diagnostic-content p {
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  .diagnostic-features {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .diagnostic-features li {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .diagnostic-visual > div {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* --- Diff slider (homepage philosophy) --- */
  .diff-slider {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .diff-slider-track {
    max-width: 100% !important;
  }
  .diff-slide {
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .diff-slide > div {
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 8px !important;
  }
  .diff-slide p {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* --- Service tabs (homepage) --- */
  .svc-tabs {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
    scrollbar-width: none !important;
  }
  .svc-tabs::-webkit-scrollbar {
    display: none !important;
  }

  /* --- Portal mockup nav tabs overflow --- */
  #portal-mockup div[style*="gap: 20px"] {
    overflow: hidden !important;
    max-width: 100% !important;
  }

  /* --- Generic inline-styled grids --- */
  section div[style*="display: grid"] {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* --- Stat overlay on diagnostic visual --- */
  .stat-overlay {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* --- All inline buttons --- */
  section a[class*="btn-"] {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .parallax-float, .parallax-float-slow { animation: none; }
  .gold-shimmer { animation: none; }
  .bg-glow { animation: none; }
  .homepage-hero-content h1 em {
    filter: none !important;
    animation: none !important;
  }
  .homepage-hero-content h1 em::after {
    animation: none !important;
    transform: scaleX(1) !important;
  }
}
