/* ─────────────────────────────────────
   TOKENS & RESET
───────────────────────────────────── */
:root {
  --burgundy:    #9C5535;
  --burgundy-dk: #7A3E22;
  --burgundy-lt: #F9EFE8;
  --green:       #6B8B70;
  --green-dk:    #4E6B52;
  --green-lt:    #EBF2EC;
  --cream:       #FAF7F2;
  --cream-dk:    #F0EBE3;
  --white:       #ffffff;
  --dark:        #2C2420;
  --muted:       #7A6E68;
  --border:      #E2D8D0;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(44,36,32,0.09);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(38px, 5vw, 68px); }
h2 { font-size: clamp(30px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--burgundy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .logo-text {
  font-family: var(--serif);
  font-size: 20px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: white; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 2px; }
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dk) !important; }

/* ─────────────────────────────────────
   PAGE HERO (sub-pages)
───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 60%, var(--green-dk) 100%);
  padding: 72px 0 64px;
  text-align: center;
  color: white;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.page-hero h1 {
  color: white;
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
  font-style: italic;
}
.page-hero p {
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto;
  font-size: 17px;
}
.page-hero .location-tag {
  display: inline-block;
  margin-top: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ─────────────────────────────────────
   HERO (index/landing only)
───────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(122,62,34,0.82) 0%, rgba(80,40,18,0.70) 50%, rgba(50,75,40,0.72) 100%),
    url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=1600&q=80') center/cover no-repeat;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 32px; }
.hero .eyebrow { color: rgba(255,255,255,0.6); }
.hero h1 {
  color: white;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: #F5C4A0; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dk); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: white; color: white; }
.hero-trust {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-trust-item {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.hero-trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────
   QUESTION HOOK
───────────────────────────────────── */
.question-hook {
  background: var(--cream);
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.question-hook h2 {
  font-style: italic;
  color: var(--burgundy);
  max-width: 720px;
  margin: 0 auto 20px;
}
.question-hook p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* ─────────────────────────────────────
   WHAT IS FUNCTIONAL MEDICINE
───────────────────────────────────── */
.what-is { background: var(--white); }
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.what-text h2 { color: var(--burgundy); margin-bottom: 20px; }
.what-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.what-text p:last-child { margin-bottom: 0; }
.what-visual {
  background: var(--burgundy-lt);
  border-radius: 16px;
  padding: 48px 40px;
  border-left: 4px solid var(--burgundy);
}
.what-visual blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.55;
  margin-bottom: 20px;
}
.what-visual cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─────────────────────────────────────
   THREE BODY SYSTEMS
───────────────────────────────────── */
.systems { background: var(--cream-dk); }
.systems-header { text-align: center; margin-bottom: 56px; }
.systems-header h2 { color: var(--dark); margin-bottom: 12px; }
.systems-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.system-card {
  border-radius: 14px;
  padding: 40px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.system-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.system-card.neuro { background: linear-gradient(135deg, #7A3E22, #9C5535); }
.system-card.gi    { background: linear-gradient(135deg, #A07840, #B88C50); }
.system-card.detox { background: linear-gradient(135deg, #4E6B52, #6B8B70); }
.system-card .sys-badge { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: 0.5px; border: 1.5px solid; margin: 0 auto 16px; }
.system-card.neuro .sys-badge { border-color: var(--burgundy); color: var(--burgundy); background: var(--burgundy-lt); }
.system-card.gi .sys-badge { border-color: var(--green); color: var(--green); background: var(--green-lt); }
.system-card.detox .sys-badge { border-color: var(--burgundy); color: var(--burgundy); background: var(--burgundy-lt); }
.system-card h3 { font-size: 22px; margin-bottom: 12px; text-align: center; }
.system-card p { font-size: 14px; opacity: 0.85; line-height: 1.6; margin-bottom: 16px; }
.system-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.system-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 { color: var(--burgundy); margin-bottom: 12px; }
.services-header p { color: var(--muted); max-width: 520px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,112,79,0.15);
}
.svc-card:nth-child(1) .svc-badge { border-color: var(--burgundy); color: var(--burgundy); background: var(--burgundy-lt); }
.svc-card:nth-child(2) .svc-badge { border-color: var(--green); color: var(--green); background: var(--green-lt); }
.svc-card:nth-child(3) .svc-badge { border-color: var(--burgundy); color: var(--burgundy); background: var(--burgundy-lt); }
.svc-card:nth-child(4) .svc-badge { border-color: var(--green); color: var(--green); background: var(--green-lt); }
.svc-card:nth-child(5) .svc-badge { border-color: var(--burgundy); color: var(--burgundy); background: var(--burgundy-lt); }
.svc-card:nth-child(6) .svc-badge { border-color: var(--green); color: var(--green); background: var(--green-lt); }
.svc-card h3 { font-size: 20px; color: var(--burgundy); margin-bottom: 10px; text-align: center; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─────────────────────────────────────
   HOW WE WORK (KALISH METHOD)
───────────────────────────────────── */
.kalish { background: var(--burgundy); color: white; padding: 96px 0; }
.kalish-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.kalish-text .eyebrow { color: rgba(255,255,255,0.5); }
.kalish-text h2 { color: white; margin-bottom: 20px; }
.kalish-text p { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 16px; }
.kalish-text p:last-of-type { margin-bottom: 32px; }
.kalish-steps { display: flex; flex-direction: column; gap: 20px; }
.kalish-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.kalish-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.ks-num {
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
  opacity: 0.5;
}
.ks-text h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ks-text p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 3/4;
  background: var(--cream-dk);
}
.about-badge {
  position: absolute;
  top: 16px;
  right: -20px;
  background: var(--burgundy);
  color: white;
  padding: 18px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .ab-cert { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.7; margin-bottom: 4px; }
.about-badge .ab-title { font-family: var(--serif); font-size: 18px; font-weight: 600; }
.about-content { padding-top: 8px; }
.about-content h2 { color: var(--burgundy); margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  background: var(--cream-dk);
  border-radius: var(--radius);
  border-left: 3px solid var(--burgundy);
}
.cred-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cred-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}
.cred-item p { font-size: 14px; color: var(--dark); margin: 0; }
.about-hobbies { font-size: 14px; color: var(--muted); font-style: italic; }

/* ─────────────────────────────────────
   5 PILLARS
───────────────────────────────────── */
.pillars { background: var(--green-lt); }
.pillars-header { text-align: center; margin-bottom: 56px; }
.pillars-header h2 { color: var(--green-dk); margin-bottom: 12px; }
.pillars-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 20px 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(78,107,82,0.12);
}
.pillar-icon { width: 44px; height: 44px; margin-bottom: 16px; display: block; color: var(--green-dk); stroke: var(--green-dk); margin-left: auto; margin-right: auto; }
.pillar-card h3 { font-size: 16px; color: var(--green-dk); margin-bottom: 10px; }
.pillar-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────
   LOCATIONS
───────────────────────────────────── */
.locations { background: var(--white); }
.locations-header { text-align: center; margin-bottom: 56px; }
.locations-header h2 { color: var(--dark); margin-bottom: 12px; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.loc-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  background: var(--cream);
  border: 1.5px solid var(--border);
}
.loc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.loc-card h3 { font-size: 22px; color: var(--burgundy); margin-bottom: 8px; }
.loc-card p { font-size: 14px; color: var(--muted); }

/* ─────────────────────────────────────
   BOOK CTA
───────────────────────────────────── */
.book-cta {
  background: linear-gradient(135deg, var(--green-dk), var(--green));
  padding: 96px 0;
  text-align: center;
  color: white;
}
.book-cta .eyebrow { color: rgba(255,255,255,0.55); }
.book-cta h2 { color: white; margin-bottom: 16px; }
.book-cta p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 40px; font-size: 17px; }
.book-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-white {
  background: white;
  color: var(--green-dk);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.book-note { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  background: var(--dark);
  color: white;
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────────────────────────────────
   BOOKING MODAL
───────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,36,32,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(44,36,32,0.22);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: var(--dark); }
.modal-box h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.modal-box > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────
   FAQ
───────────────────────────────────── */
.faq { background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { color: var(--burgundy); margin-bottom: 12px; }
.faq-header p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--dark);
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--burgundy); }
.faq-question.open { color: var(--burgundy); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--burgundy-lt);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: background 0.2s, transform 0.3s;
}
.faq-question.open .faq-icon { background: var(--burgundy); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul { padding-left: 20px; margin-bottom: 12px; }
.faq-answer-inner li { margin-bottom: 6px; }

/* ─────────────────────────────────────
   RESPONSIVE — TABLET (960px)
───────────────────────────────────── */
@media (max-width: 960px) {
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .kalish-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
  .systems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .book-options { flex-direction: column; align-items: center; }
}

/* ─────────────────────────────────────
   RESPONSIVE — MOBILE (600px)
───────────────────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero {
    background:
      linear-gradient(135deg, rgba(122,62,34,0.82) 0%, rgba(80,40,18,0.70) 50%, rgba(50,75,40,0.72) 100%),
      url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=1200&q=80') center/cover no-repeat;
    padding: 56px 0 48px;
  }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 24px; }
  .hero-trust { margin-top: 32px; gap: 16px; }
  .hero-trust-item { font-size: 12px; }
  .question-hook { padding: 40px 0; }
  .question-hook h2 { font-size: 24px; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 30px; }
  .what-visual { padding: 28px 20px; }
  .what-visual blockquote { font-size: 17px; }
  .systems-grid { grid-template-columns: 1fr; }
  .system-card { padding: 28px 20px; }
  .systems-header { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { margin-bottom: 32px; }
  .svc-card { padding: 24px 20px; }
  .kalish { padding: 48px 0; }
  .kalish-steps { gap: 12px; }
  .kalish-step { padding: 16px 18px; }
  .pillars { padding: 48px 0; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar-card { padding: 18px 14px; }
  .pillars-header { margin-bottom: 32px; }
  .book-cta { padding: 48px 0; }
  .book-options { flex-direction: column; align-items: stretch; gap: 16px; }
  .about-photo-wrap { max-width: 100%; }
  .about-photo { max-height: 320px; object-fit: cover; object-position: top; width: 100%; border-radius: 12px; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .faq-question { font-size: 17px; padding: 20px; }
  .faq-answer-inner { padding: 0 20px 20px; }
}
