/* =====================================================
   Treatment Massage — Complete Design System
   treatmentmassage.com | Seattle, WA
   ===================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Core Colors */
  --forest:          #1B3A2D;
  --forest-mid:      #2D5A45;
  --sage:            #3F7A58;
  --sage-light:      #6FAF88;
  --sage-pale:       #E8F3ED;
  --cream:           #F7F2E9;
  --parchment:       #EDE5D5;
  --parchment-dark:  #D9CDB8;
  --amber:           #BF7C2E;
  --amber-warm:      #D4934A;
  --amber-pale:      #FBF1E4;
  --charcoal:        #252218;
  --warm-brown:      #5C3D28;
  --text-muted:      #6B5840;
  --text-light:      #9A8570;
  --footer-bg:       #15261B;
  --white:           #FFFFFF;

  /* Shadows */
  --shadow-sm:  0 2px 16px rgba(27,58,45,0.07);
  --shadow-md:  0 6px 28px rgba(27,58,45,0.11);
  --shadow-lg:  0 16px 56px rgba(27,58,45,0.16);
  --shadow-xl:  0 28px 80px rgba(27,58,45,0.22);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;

  /* Spacing */
  --section-pad:  100px 24px;
  --max-width:    1140px;
  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    20px;

  /* Animation */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }
body.nav-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

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

a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--forest); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--forest);
  line-height: 1.2;
  font-weight: 600;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* =====================================================
   FLOATING BOOK NOW BUTTON
   ===================================================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-spring);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--white) !important;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(191,124,46,0.45), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.floating-cta-btn:hover {
  background: var(--amber-warm);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(191,124,46,0.55), 0 4px 12px rgba(0,0,0,0.12);
}
.floating-cta-icon {
  font-size: 1rem;
  line-height: 1;
}

/* =====================================================
   UTILITY
   ===================================================== */
.container { max-width: var(--max-width); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-nav {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
  transition: background 0.3s;
}
.site-nav.scrolled {
  background: rgba(27,58,45,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.nav-logo {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 600;
  padding: 18px 28px 18px 0;
  margin-right: auto;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-logo:hover { color: rgba(255,255,255,0.88); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links > li {
  position: relative;
  margin: 0;
}
.nav-links > li > a {
  display: block;
  color: rgba(255,255,255,0.82);
  padding: 20px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
  letter-spacing: 0.01em;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.65em;
  opacity: 0.65;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--amber);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
  z-index: 200;
}
@media (min-width: 961px) {
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: block; }
}

.dropdown li a {
  display: block;
  padding: 11px 20px;
  color: var(--warm-brown);
  font-size: 0.875rem;
  font-weight: 400;
  transition: background 0.14s, color 0.14s;
}
.dropdown li a:hover {
  background: var(--parchment);
  color: var(--forest);
}

.nav-cta { margin-left: 12px; }
.nav-cta a {
  display: inline-block;
  background: var(--amber);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem !important;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s !important;
  letter-spacing: 0.02em;
}
.nav-cta a:hover {
  background: var(--amber-warm) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 4px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

/* Mobile close button (injected by nav.js) */
.nav-close {
  display: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--forest);
    padding: 64px 0 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: background 0.18s;
    z-index: 1000;
  }
  .nav-close:hover { background: rgba(255,255,255,0.22); }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 14px 24px; font-size: 0.95rem; }
  .has-dropdown > a::after { content: " ›"; }
  .has-dropdown.open > a::after { content: " ▾"; }
  .dropdown {
    display: none;
    position: static;
    background: rgba(0,0,0,0.2);
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.82); padding: 10px 36px; font-size: 0.875rem; }
  .dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .nav-cta { margin-left: 0; padding: 10px 24px 0; }
  .nav-cta a { display: inline-block; border-radius: 50px; padding: 11px 22px !important; }
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  background: var(--parchment);
  border-bottom: 1px solid var(--parchment-dark);
  padding: 10px 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { margin: 0 8px; color: var(--text-light); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--forest);
  color: var(--white);
  padding: 100px 24px 96px;
  position: relative;
  overflow: hidden;
}

/* Organic background shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(63,122,88,0.35) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(191,124,46,0.18) 0%, transparent 65%);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .page-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.18);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}

.hero p {
  font-size: 1.12rem;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-proof-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero without sidebar */
.hero-simple .hero-inner {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.hero-simple h1 { font-size: 3rem; }

/* Photo placeholder in hero */
.hero-photo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 32px;
  min-height: 380px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63,122,88,0.25) 0%, transparent 60%);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo { min-height: 240px; }
  .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 20px 64px; }
  .hero h1 { font-size: 2rem; }
  .hero-simple h1 { font-size: 1.9rem; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  text-align: center;
  border: 2px solid transparent;
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
}

/* Alias for older templates */
.btn-teal { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-teal:hover { background: var(--forest-mid); color: var(--white); border-color: var(--forest-mid); transform: translateY(-2px); }

.btn-amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(191,124,46,0.32);
}
.btn-amber:hover {
  background: var(--amber-warm);
  color: var(--white);
  border-color: var(--amber-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(191,124,46,0.42);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.05rem;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: var(--section-pad); }
.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-sand   { background: var(--parchment); }
.section-teal   { background: var(--forest); color: var(--white); }
.section-forest { background: var(--forest); color: var(--white); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.section-forest .section-label,
.section-teal .section-label { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--forest);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.15;
}
.section-teal .section-title,
.section-forest .section-title { color: var(--white); }

.section-title em {
  font-style: italic;
  color: var(--sage);
}
.section-forest .section-title em { color: rgba(255,255,255,0.65); }

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 52px;
  max-width: 680px;
  line-height: 1.75;
  font-weight: 300;
}
.section-teal .section-subtitle,
.section-forest .section-subtitle { color: rgba(255,255,255,0.72); }

/* Centered section header */
.section-header-center {
  text-align: center;
}
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* =====================================================
   CARDS
   ===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.card-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--sage-light);
  transition: box-shadow 0.28s, transform 0.28s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, var(--sage-pale), transparent);
  transition: height 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card:hover::after { height: 60px; }

.card.card-amber { border-top-color: var(--amber); }
.card.card-amber::after { background: linear-gradient(to top, var(--amber-pale), transparent); }
.card.card-teal  { border-top-color: var(--forest); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage);
  position: relative;
  z-index: 1;
  transition: gap 0.18s;
}
.card-link:hover { color: var(--forest); gap: 8px; }

/* =====================================================
   TRANSFORMATION / LIFE-AFTER SECTION
   ===================================================== */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.transform-item {
  background: var(--forest);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: flex 0.3s;
}
.transform-item:nth-child(even) { background: var(--forest-mid); }
.transform-item::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.transform-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.transform-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
  font-style: italic;
}

.transform-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

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

/* =====================================================
   CREDENTIALS / INFO BLOCKS
   ===================================================== */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.cred-item {
  background: var(--parchment);
  border-left: 3px solid var(--sage-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: border-left-color 0.2s;
}
.cred-item:hover { border-left-color: var(--amber); }

.cred-item strong {
  display: block;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 2px;
}
.cred-item span { font-size: 0.8rem; color: var(--text-muted); }

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

/* =====================================================
   STAT ROW
   ===================================================== */
.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--parchment-dark);
  border-bottom: 1px solid var(--parchment-dark);
}

.stat-item { text-align: left; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* =====================================================
   TWO-COLUMN LAYOUT
   ===================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}
.two-col.reverse { grid-template-columns: 360px 1fr; }
.two-col.wide-right { grid-template-columns: 1fr 480px; }

@media (max-width: 900px) {
  .two-col,
  .two-col.reverse,
  .two-col.wide-right { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================================================
   PHOTO PLACEHOLDERS
   ===================================================== */
.photo-placeholder {
  background: var(--sage-pale);
  border: 2px dashed var(--sage-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sage);
  font-size: 0.88rem;
  padding: 24px;
  min-height: 300px;
  line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--parchment-dark);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  line-height: 0.65;
  margin-bottom: 16px;
  display: block;
  opacity: 0.7;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--warm-brown);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.testimonial cite::before { content: "—"; }

/* Featured (large) testimonial */
.testimonial-featured {
  background: var(--forest);
  padding: 60px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-featured::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(63,122,88,0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonial-featured .testimonial-mark {
  font-size: 7rem;
  color: var(--amber);
  opacity: 0.4;
}
.testimonial-featured blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.testimonial-featured cite {
  color: rgba(255,255,255,0.6);
  justify-content: center;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 680px) {
  .testimonial-featured { padding: 40px 28px; }
  .testimonial-featured blockquote { font-size: 1.2rem; }
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--amber) 60%, var(--amber-warm) 100%);
  color: var(--white);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
}
.cta-banner p {
  font-size: 1.12rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  position: relative;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =====================================================
   PAIN RECOGNITION SECTION
   ===================================================== */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--parchment);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--parchment-dark);
  transition: border-color 0.2s, transform 0.25s;
  position: relative;
}
.pain-card:hover {
  border-left-color: var(--amber);
  transform: translateX(4px);
}

.pain-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 600;
}
.pain-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 680px) {
  .pain-cards { grid-template-columns: 1fr; }
}

/* =====================================================
   LIFE-AFTER BENEFITS
   ===================================================== */
.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 0.97rem;
  color: var(--forest);
  margin-bottom: 4px;
  font-weight: 600;
  font-family: var(--font-body);
}
.benefit-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .benefits-list { grid-template-columns: 1fr; }
}

/* =====================================================
   CONDITION PILLS
   ===================================================== */
.condition-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-pill {
  display: inline-block;
  background: var(--parchment);
  color: var(--warm-brown);
  border: 1px solid var(--parchment-dark);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.18s;
  margin: 0;
}
.tag-pill:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   FAQ COMPONENTS
   ===================================================== */
.faq-category {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest);
  margin: 56px 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage-pale);
}
.faq-category:first-of-type { margin-top: 0; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--parchment-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-left-color: var(--amber); box-shadow: var(--shadow-md); }

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: var(--warm-brown);
  margin-bottom: 14px;
}
.faq-item p { font-size: 0.96rem; color: var(--text-muted); line-height: 1.78; }

/* =====================================================
   CALLOUT / INFO BOXES
   ===================================================== */
.callout {
  background: var(--parchment);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 24px 0;
}
.callout.callout-teal,
.callout.callout-forest {
  background: var(--sage-pale);
  border-left-color: var(--sage);
}
.callout p { font-size: 0.95rem; color: var(--warm-brown); margin: 0; }
.callout strong { color: var(--forest); }

/* =====================================================
   STEP / CHECK LISTS
   ===================================================== */
.step-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
}
.step-list li {
  counter-increment: steps;
  padding: 18px 18px 18px 68px;
  position: relative;
  border-bottom: 1px solid var(--parchment-dark);
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-list li:last-child { border-bottom: none; }
.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 1rem;
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--forest);
  color: var(--white);
  padding: 15px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--parchment-dark);
  vertical-align: top;
  color: var(--text-muted);
}
.compare-table tr:nth-child(even) td { background: var(--parchment); }
.compare-table tr:last-child td { border-bottom: none; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--parchment-dark);
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  align-items: flex-start;
}
.info-row-label {
  font-weight: 700;
  color: var(--warm-brown);
  min-width: 80px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.info-row-value { color: var(--text-muted); line-height: 1.6; }
.info-row-value a { color: var(--sage); }
.info-row-value a:hover { color: var(--amber); }

.map-placeholder {
  background: var(--parchment);
  border: 2px dashed var(--parchment-dark);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
  text-align: center;
  margin-top: 24px;
}

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

/* =====================================================
   SCHEDULE PAGE
   ===================================================== */
.booking-frame {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px dashed var(--sage-light);
  text-align: center;
  color: var(--text-muted);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* =====================================================
   RATES PAGE
   ===================================================== */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.rates-table th {
  background: var(--forest);
  color: var(--white);
  padding: 15px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}
.rates-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--parchment-dark);
  color: var(--text-muted);
  vertical-align: top;
}
.rates-table tr:nth-child(even) td { background: var(--parchment); }
.rates-table tr:last-child td { border-bottom: none; }
.rates-table .rate-price { font-weight: 700; color: var(--warm-brown); white-space: nowrap; }

/* =====================================================
   ABOUT PAGE — TIMELINE
   ===================================================== */
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--sage-pale);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px; top: 7px;
  width: 14px; height: 14px;
  background: var(--sage);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sage-pale);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 1rem;
  color: var(--warm-brown);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.timeline-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.philosophy-box {
  border-left: 4px solid var(--amber);
  background: var(--parchment);
  padding: 24px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--warm-brown);
  line-height: 1.65;
  margin: 36px 0;
}

/* =====================================================
   SESSION PACKAGE CARDS
   ===================================================== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--amber);
  text-align: center;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-pale);
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.package-card h4 { font-size: 1rem; color: var(--warm-brown); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.package-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   RECOVERY PHASES
   ===================================================== */
.recovery-phases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.phase-card {
  background: var(--parchment);
  border-radius: var(--radius);
  padding: 22px;
  border-top: 3px solid var(--sage-light);
}
.phase-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.phase-card h4 { font-size: 0.97rem; color: var(--warm-brown); margin-bottom: 6px; font-family: var(--font-body); }
.phase-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.72);
  padding: 64px 24px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }
.footer-brand a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-brand a:hover { color: var(--amber-warm); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber-warm); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* =====================================================
   REVIEW MODAL
   ===================================================== */
.review-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.18s;
}
.review-read-more:hover { color: var(--forest); }
.review-full-text { display: none; }

.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21,38,27,0.65);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.review-modal-overlay.open { display: flex; }

.review-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 48px 52px;
  position: relative;
}

.review-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.15s;
  line-height: 1;
}
.review-modal-close:hover { color: var(--charcoal); }

.review-modal-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--amber);
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
  opacity: 0.6;
}

.review-modal blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--warm-brown);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.review-modal cite {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-modal cite::before { content: "—"; }

@media (max-width: 580px) {
  .review-modal { padding: 32px 24px; }
}

/* =====================================================
   MISC HELPERS
   ===================================================== */
.divider {
  height: 1px;
  background: var(--parchment-dark);
  margin: 40px 0;
  border: none;
}

/* Social proof strip */
.proof-strip {
  background: var(--forest-mid);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.proof-item-icon { font-size: 1.1rem; }

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  .site-nav, .cta-banner, .site-footer, .floating-cta { display: none; }
  body { background: white; color: black; }
  body::after { display: none; }
}

/* =====================================================
   MOBILE REDESIGN — Polished small-screen experience
   ===================================================== */

@media (max-width: 768px) {

  /* ---- Global spacing ---- */
  :root {
    --section-pad: 60px 20px;
  }
  /* Prevent full-width sticky CTA bar from hiding page bottom */
  body { padding-bottom: 72px; }

  /* ---- Navigation ---- */
  .nav-inner { padding: 0 16px; }
  .nav-logo {
    font-size: 1.08rem;
    padding: 16px 16px 16px 0;
  }
  .nav-toggle {
    padding: 14px 6px;
  }
  .nav-links > li > a {
    padding: 15px 24px;
    font-size: 1rem;
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  .dropdown li a {
    padding: 12px 40px;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    padding: 12px 24px 16px;
  }
  .nav-cta a {
    width: 100%;
    text-align: center;
    padding: 14px 22px !important;
    font-size: 0.95rem !important;
  }

  /* ---- Hero ---- */
  .hero { padding: 52px 20px 48px; }
  .hero-inner { gap: 28px; }

  .hero-text .page-label {
    font-size: 0.67rem;
    padding: 4px 12px;
    margin-bottom: 14px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.14;
    margin-bottom: 18px;
  }

  .hero > .hero-inner > .hero-text > p,
  .hero p {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.72;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .hero-proof {
    gap: 10px 20px;
    padding-top: 22px;
  }
  .hero-proof-item {
    font-size: 0.77rem;
    flex: 0 0 calc(50% - 10px);
    gap: 7px;
  }

  .hero-photo {
    min-height: 220px;
    border-radius: var(--radius);
  }

  /* ---- Proof strip — 2×2 grid ---- */
  .proof-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    justify-items: stretch;
  }
  .proof-item {
    padding: 16px 14px;
    font-size: 0.77rem;
    gap: 8px;
    white-space: normal;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .proof-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .proof-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .proof-item-icon { font-size: 1rem; flex-shrink: 0; }

  /* ---- Section typography ---- */
  .section-title { font-size: 2.05rem; line-height: 1.18; }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .section-label { font-size: 0.68rem; letter-spacing: 0.12em; margin-bottom: 10px; }

  /* ---- Card grid — single column, accent bar ---- */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-grid-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card {
    padding: 22px 20px;
    border-top: none;
    border-left: 4px solid var(--sage-light);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
  }
  .card.card-amber {
    border-left-color: var(--amber);
    border-top: none;
  }
  .card-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .card h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .card p { font-size: 0.92rem; }
  .card-link { margin-top: 14px; font-size: 0.87rem; min-height: 44px; align-items: center; }

  /* ---- Pain cards ---- */
  .pain-card { padding: 18px 16px; }
  .pain-card h3 { font-size: 1.02rem; }
  .pain-card p { font-size: 0.9rem; }

  /* ---- Benefits list ---- */
  .benefit-item { padding: 16px; gap: 14px; }
  .benefit-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .benefit-item h4 { font-size: 0.93rem; }
  .benefit-item p { font-size: 0.84rem; }

  /* ---- Stats row ---- */
  .stat-row {
    gap: 20px 32px;
    padding: 18px 0;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  .stat-number { font-size: 2.3rem; }
  .stat-label { font-size: 0.73rem; }

  /* ---- Credentials ---- */
  .cred-item { padding: 13px 14px; }
  .cred-item strong { font-size: 0.86rem; }
  .cred-item span { font-size: 0.77rem; }

  /* ---- Testimonials ---- */
  .testimonials {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testimonial {
    padding: 24px 20px;
    border-bottom-width: 3px;
  }
  .testimonial-mark {
    font-size: 3.8rem;
    margin-bottom: 10px;
  }
  .testimonial blockquote {
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 16px;
  }
  .testimonial cite { font-size: 0.8rem; }
  .review-read-more {
    margin-top: 12px;
    font-size: 0.83rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ---- Condition pills — larger touch targets ---- */
  .condition-pills { gap: 8px; }
  .tag-pill {
    padding: 8px 16px;
    font-size: 0.83rem;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
  }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 60px 20px; }
  .cta-banner h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .cta-banner p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-banner-actions .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  /* ---- Callout boxes ---- */
  .callout { padding: 16px 18px; }
  .callout p { font-size: 0.92rem; }

  /* ---- Two-col gap ---- */
  .two-col { gap: 28px; }

  /* ---- Photo placeholder ---- */
  .photo-placeholder { min-height: 220px; }

  /* ---- Footer ---- */
  .site-footer { padding: 48px 20px 32px; }
  .footer-inner { gap: 28px; margin-bottom: 32px; }
  .footer-brand strong { font-size: 1.15rem; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul li a { font-size: 0.9rem; min-height: 36px; display: inline-flex; align-items: center; }

  /* ---- Review modal — slides up from bottom ---- */
  .review-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .review-modal {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 32px 22px 40px;
    max-height: 88vh;
  }
  .review-modal-close {
    top: 12px;
    right: 14px;
    font-size: 1.6rem;
    padding: 8px 12px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-modal-quote {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
  .review-modal blockquote {
    font-size: 1rem;
    line-height: 1.72;
  }

  /* ---- Floating CTA — full-width sticky bar ---- */
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%) scale(1);
    border-radius: 0;
  }
  .floating-cta.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .floating-cta-btn {
    width: 100%;
    border-radius: 0;
    justify-content: center;
    padding: 18px 24px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    box-shadow: 0 -4px 24px rgba(191,124,46,0.32), 0 -1px 0 rgba(191,124,46,0.2);
  }
  .floating-cta-btn:hover {
    transform: none;
  }

  /* ---- Scroll reveal — simpler on mobile ---- */
  .reveal-left  { transform: translateY(24px); }
  .reveal-right { transform: translateY(24px); }
  .reveal-left.visible  { transform: translateY(0); }
  .reveal-right.visible { transform: translateY(0); }

}

/* =====================================================
   MOBILE COLOR ENHANCEMENT — distinct section identities
   ===================================================== */

@media (max-width: 768px) {

  /* ---- Section backgrounds — strong, distinct colors ---- */

  /* sand sections → clear sage-green tint */
  .section-sand {
    background: #d4ebdf;
  }

  /* cream sections → clear warm amber tint */
  .section-cream {
    background: #f5e3c4;
  }

  /* white sections → white with a sage top accent bar */
  .section-white {
    background: var(--white);
    border-top: 5px solid var(--sage-light);
  }

  /* ---- Section label — colored pill for visibility ---- */
  .section-label {
    background: var(--forest);
    color: rgba(255,255,255,0.92) !important;
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.67rem;
    letter-spacing: 0.12em;
  }

  /* On dark-background sections (already have dark labels) */
  .section-forest .section-label,
  .section-teal .section-label {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85) !important;
  }

  /* ---- Pain cards — alternating sage / amber ---- */
  .pain-card:nth-child(odd) {
    background: #e8f5ee;
    border-left-color: var(--sage);
  }
  .pain-card:nth-child(even) {
    background: #fdf1e0;
    border-left-color: var(--amber);
  }
  .pain-card:nth-child(odd) h3 { color: var(--forest); }
  .pain-card:nth-child(even) h3 { color: var(--warm-brown); }

  /* ---- Service cards — tinted backgrounds ---- */
  .card {
    background: #eef7f2;
  }
  .card.card-amber {
    background: #fef5e8;
  }

  /* ---- Benefit items — white against green section ---- */
  .benefit-item {
    background: var(--white);
    border-left: 3px solid var(--sage-light);
  }
  .benefit-item:nth-child(even) {
    background: #fdf6eb;
    border-left-color: var(--amber);
  }
  .benefit-item .benefit-icon {
    background: var(--sage-pale);
  }
  .benefit-item:nth-child(even) .benefit-icon {
    background: var(--amber-pale);
  }

  /* ---- Testimonials — white cards on amber section ---- */
  .testimonial {
    background: var(--white);
    border-bottom: 3px solid var(--amber);
  }
  .testimonial:nth-child(odd) {
    border-bottom-color: var(--sage-light);
  }

  /* ---- Credential items — white on green section ---- */
  .cred-item {
    background: var(--white);
    border-left-color: var(--sage);
  }
  .cred-item:nth-child(even) {
    border-left-color: var(--amber);
  }

  /* ---- Condition pills — stronger contrast ---- */
  .tag-pill {
    background: var(--forest);
    color: rgba(255,255,255,0.92);
    border-color: var(--forest);
  }
  .tag-pill:hover {
    background: var(--sage);
    border-color: var(--sage);
  }

  /* ---- Proof strip — richer background ---- */
  .proof-strip {
    background: var(--forest);
  }

  /* ---- Callout boxes — more saturated ---- */
  .callout {
    background: #e8f5ee;
    border-left-color: var(--sage);
  }
  .callout.callout-teal,
  .callout.callout-forest {
    background: var(--forest);
    border-left-color: var(--sage-light);
  }
  .callout.callout-teal p,
  .callout.callout-forest p {
    color: rgba(255,255,255,0.9);
  }
  .callout.callout-teal strong,
  .callout.callout-forest strong {
    color: var(--white);
  }
  .callout.callout-teal a,
  .callout.callout-forest a {
    color: var(--sage-light);
  }

  /* ---- CTA banner — more vivid ---- */
  .cta-banner {
    background: linear-gradient(145deg, var(--forest) 0%, var(--forest-mid) 40%, var(--sage) 100%);
  }
  .cta-banner h2 { color: var(--white); }
  .cta-banner p { color: rgba(255,255,255,0.88); }
  .cta-banner .btn-outline {
    border-color: rgba(255,255,255,0.55);
    color: var(--white);
  }
  .cta-banner .btn-primary {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
  }

}

/* ---- Very small screens (≤390px) ---- */
@media (max-width: 390px) {
  .hero h1 { font-size: 1.95rem; }
  .section-title { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.8rem; }
  .hero-proof-item { flex: 0 0 100%; }
  .stat-row { gap: 16px 24px; }
  .stat-number { font-size: 2rem; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-item { border-right: none !important; }
  .proof-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .proof-item:last-child { border-bottom: none; }
}
