/* =========================================================
   Back To Health — Modern Medical Brand
   Ivory + Forest + Sage + Coral
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg-ivory:      #FBF8F3;
  --surface:       #FFFFFF;
  --surface-warm:  #F2EDE4;
  --forest:        #14332A;
  --forest-soft:   #2A5446;
  --sage:          #BFCDB7;
  --sage-soft:     #D9E2D2;
  --sage-deep:     #7A927F;
  --coral:         #FF7A59;
  --coral-deep:    #E55A39;
  --cream:         #F5EFE0;
  --line:          rgba(20, 51, 42, 0.10);
  --line-strong:   rgba(20, 51, 42, 0.22);
  --text-body:     #2A3A35;
  --text-muted:    #6B7974;

  --radius-card:   20px;
  --radius-pill:   999px;

  --shadow-card:   0 4px 16px rgba(20, 51, 42, 0.06);
  --shadow-lift:   0 10px 30px rgba(20, 51, 42, 0.10);

  --container:     1240px;
  --container-narrow: 820px;

  --nav-height:    72px;

  --ease-out:      cubic-bezier(.22,.8,.3,1);
  --ease-in-out:   cubic-bezier(.65,.05,.36,1);

  --font-display:  "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  --font-body:     "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-body);
  background: var(--bg-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--forest);
  font-variation-settings: "opsz" 72;
}
.display-xl { font-size: clamp(2.75rem, 6.2vw, 5.5rem); font-weight: 800; }
.display-lg { font-size: clamp(2rem, 3.8vw, 3.25rem); }
.display-md { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}
.eyebrow-bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.eyebrow-coral { color: var(--coral); }
.eyebrow-center { justify-content: center; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: var(--container-narrow);
}
.section-header {
  max-width: 780px;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow { margin-bottom: 1.1rem; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
}
#scrollProgressBar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--coral);
  transition: width 90ms linear;
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,89,0.14) 0%, rgba(255,122,89,0) 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0;
  transition: opacity 300ms ease;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 200ms var(--ease-out), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 200ms ease;
  cursor: pointer;
  will-change: transform;
}
.btn .arrow { transition: transform 220ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 0.88rem; }
.btn-lg { min-height: 54px; padding: 0 26px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,122,89,0.28);
}
.btn-coral:hover { background: var(--coral-deep); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--surface-warm); border-color: var(--forest); }

.btn-ghost-inverse {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-inverse:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-white {
  background: #fff;
  color: var(--forest);
}
.btn-white:hover { background: var(--cream); }

.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* =========================================================
   NAV
========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 500;
  background: transparent;
  transition: background 240ms ease, border-color 240ms ease, transform 320ms var(--ease-out), box-shadow 240ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(251,248,243,0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}
.brand-inverse { color: var(--cream); }
.brand-inverse .brand-mark { background: var(--cream); color: var(--forest); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 2px;
  position: relative;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  background: var(--sage-soft);
  border-radius: var(--radius-pill);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #36A76F;
  box-shadow: 0 0 0 0 rgba(54,167,111,0.55);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(54,167,111,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(54,167,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(54,167,111,0); }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--forest);
  border-radius: 1px;
  transition: transform 240ms var(--ease-out), opacity 180ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--bg-ivory);
  z-index: 400;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 380ms var(--ease-out), opacity 220ms ease;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  padding: 10px 0;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy { max-width: 640px; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  background: var(--sage-soft);
  color: var(--forest);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
}

.hero-trust {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Bento */
.hero-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(4, minmax(92px, auto));
  gap: 14px;
  align-content: stretch;
}
.bento-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.bento-image {
  grid-column: 1;
  grid-row: 1 / span 3;
  padding: 0;
}
.bento-stat {
  grid-column: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.bento-stat:nth-of-type(2) { grid-row: 1; }
.bento-stat:nth-of-type(3) { grid-row: 2; }
.bento-stat:nth-of-type(4) { grid-row: 3; }
.stat-cream { background: var(--cream); }
.stat-sage  { background: var(--sage-soft); }

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.03em;
}
.stat-cap {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.bento-reviews {
  grid-column: 1;
  grid-row: 4;
  padding: 18px 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--coral);
}
.stars svg { width: 16px; height: 16px; }
.reviews-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest);
  line-height: 1;
}
.reviews-score span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.reviews-text { font-size: 0.78rem; color: var(--text-muted); }

.bento-cta {
  grid-column: 2;
  grid-row: 4;
  padding: 18px 20px;
  background: var(--coral);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: background 200ms ease, transform 280ms var(--ease-out);
}
.bento-cta:hover { background: var(--coral-deep); transform: translateY(-2px); }
.bento-cta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}
.bento-cta-action {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.bento-cta .arrow { transition: transform 240ms var(--ease-out); display: inline-block; }
.bento-cta:hover .arrow { transform: translateX(4px); }

/* =========================================================
   IMAGE PLATES
========================================================= */
.image-plate {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.image-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 10% 10%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}
.plate-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.plate-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  align-self: flex-start;
}
.plate-caption {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  align-self: flex-start;
  max-width: 80%;
}
.plate-hero {
  min-height: 380px;
  background: linear-gradient(135deg, #BFCDB7 0%, #F5EFE0 100%);
}
.plate-hero .plate-label { color: rgba(20,51,42,0.6); }
.plate-hero .plate-caption { color: var(--forest); }

.plate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  display: block;
}
.plate-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(20,51,42,0.58) 0%, rgba(20,51,42,0.18) 45%, rgba(20,51,42,0) 70%);
}
.image-plate:has(.plate-img) { background: var(--surface-warm); }
.image-plate:has(.plate-img)::after { display: none; }
.image-plate:has(.plate-img) .plate-caption { color: #fff; }
.image-plate:has(.plate-img) .plate-label { color: rgba(255,255,255,0.82); }
.plate-wayne {
  background: linear-gradient(160deg, #14332A 0%, #7A927F 100%);
}
.plate-brooklyn {
  background: linear-gradient(200deg, #F5EFE0 0%, #BFCDB7 100%);
}
.plate-brooklyn .plate-label { color: rgba(20,51,42,0.65); }
.plate-miami {
  background: linear-gradient(135deg, #FF7A59 0%, #F5EFE0 85%);
  filter: saturate(0.9);
}
.plate-miami .plate-label { color: rgba(20,51,42,0.7); }
.plate-service {
  background: linear-gradient(145deg, #BFCDB7 0%, #F5EFE0 100%);
}
.plate-service .plate-label { color: rgba(20,51,42,0.6); }

/* =========================================================
   SERVICES
========================================================= */
.services {
  padding: 120px 0;
}
.service-selector {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 36px;
  align-items: start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: transparent;
  color: var(--text-body);
  border: 1px solid transparent;
  text-align: left;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms ease;
  min-height: 52px;
  width: 100%;
  position: relative;
}
.service-pill:hover {
  background: var(--surface-warm);
  color: var(--forest);
}
.service-pill.is-active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.pill-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.7;
  min-width: 22px;
}
.pill-name {
  font-weight: 500;
  font-size: 0.98rem;
}
.pill-badge {
  margin-left: auto;
  padding: 3px 9px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--coral);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-pill.is-active .pill-badge { background: var(--cream); color: var(--forest); }

/* Panel area */
.service-content {
  position: relative;
  min-height: 360px;
  padding: 36px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.service-panel {
  display: none;
  opacity: 0;
}
.service-panel.is-active { display: block; opacity: 1; }
.panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.panel-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  vertical-align: middle;
}
.panel-lead {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  line-height: 1.55;
}
.panel-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.4rem;
}
.panel-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
  color: var(--text-body);
}
.panel-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
}
.panel-bullets li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 1.75px solid #fff;
  border-bottom: 1.75px solid #fff;
  transform: rotate(-45deg);
}
.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.panel-tags span {
  padding: 6px 12px;
  background: var(--sage-soft);
  color: var(--forest);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Mini booker */
.mini-booker {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.mb-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mb-select {
  position: relative;
  display: block;
}
.mb-select select {
  appearance: none;
  width: 100%;
  padding: 12px 40px 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--forest);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  min-height: 48px;
  transition: border-color 180ms ease;
}
.mb-select select:hover,
.mb-select select:focus-visible { border-color: var(--forest); }
.mb-select svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  pointer-events: none;
  color: var(--forest);
}
.mb-select-large select { padding: 14px 44px 14px 18px; min-height: 54px; font-size: 1rem; }

.mb-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}
.mb-ghost .icon { width: 16px; height: 16px; }
.mb-ghost:hover { color: var(--coral); }

/* =========================================================
   JOURNEY
========================================================= */
.journey {
  padding: 120px 0;
  background: var(--surface-warm);
  position: relative;
}
.journey-track {
  position: relative;
  margin-top: 2rem;
}
.journey-line {
  position: absolute;
  top: 80px;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 4px;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: transparent;
}
.step-num-big {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--coral);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.step-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-text {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* =========================================================
   DOCTOR
========================================================= */
.doctor {
  padding: 120px 0;
  background: var(--bg-ivory);
}
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
}
.doctor-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-warm);
  box-shadow: 0 4px 24px rgba(20, 51, 42, 0.08);
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.portrait-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(20, 51, 42, 0.72) 0%, rgba(20, 51, 42, 0.35) 55%, rgba(20, 51, 42, 0) 100%);
  pointer-events: none;
}
.portrait-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portrait-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.72);
}
.portrait-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.015em;
}

.doctor-content { max-width: 640px; }
.doctor-content .eyebrow { margin-bottom: 0.9rem; }
.doctor-bio {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-body);
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.6rem;
}
.cred-tag {
  padding: 7px 14px;
  background: var(--sage-soft);
  color: var(--forest);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
}
.doctor-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

/* =========================================================
   STATS BAND
========================================================= */
.stats-band {
  background: var(--forest);
  color: var(--cream);
  padding: 100px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.stat-big-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.stat-big-word {
  -webkit-text-stroke: 0;
  color: var(--coral);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.stat-big-label {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.75);
}

/* =========================================================
   CONDITIONS & FAQ (accordions)
========================================================= */
.conditions { padding: 120px 0; }
.faq        { padding: 120px 0 140px; }

.cond-search {
  position: relative;
  margin-bottom: 1.5rem;
}
.cond-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.cond-search input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  font-size: 0.95rem;
  min-height: 48px;
  transition: border-color 180ms ease;
}
.cond-search input:focus-visible { border-color: var(--forest); outline-offset: 0; }

.accordion {
  border-top: 1px solid var(--line);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-item.is-hidden { display: none; }
.acc-trigger {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  transition: color 180ms ease;
}
.acc-trigger:hover { color: var(--coral); }
.acc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--forest);
  letter-spacing: -0.015em;
}
.acc-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out);
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--forest);
  transition: transform 280ms var(--ease-out), background 180ms ease;
}
.acc-icon::before {
  width: 14px; height: 1.75px;
  transform: translate(-50%, -50%);
}
.acc-icon::after {
  width: 1.75px; height: 14px;
  transform: translate(-50%, -50%);
}
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-trigger:hover .acc-icon::before,
.acc-trigger:hover .acc-icon::after { background: var(--coral); }

.acc-body {
  overflow: hidden;
  height: 0;
}
.acc-body-inner {
  padding: 0 0 22px;
  max-width: 720px;
}
.acc-body-inner p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}
.acc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 14px;
  font-weight: 600;
  color: var(--coral);
  font-size: 0.95rem;
}
.acc-cta:hover { color: var(--coral-deep); }

/* =========================================================
   OFFER BAND
========================================================= */
.offer {
  background: var(--coral);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.offer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,0.15), transparent 70%);
  pointer-events: none;
}
.offer-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.offer-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.offer-headline {
  color: #fff;
  max-width: 16ch;
  margin: 0 auto 1rem;
}
.offer-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 40ch;
  margin: 0 auto 2rem;
}
.offer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =========================================================
   LOCATIONS
========================================================= */
.locations { padding: 120px 0; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 240ms ease;
  display: flex;
  flex-direction: column;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255,122,89,0.35);
}
.loc-card .image-plate {
  min-height: 220px;
  border: 0;
  border-radius: 0;
}
.loc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.loc-title { display: flex; flex-direction: column; gap: 2px; }
.loc-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1;
}
.loc-state {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.loc-addr {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.5;
}
.loc-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-weight: 600;
  font-size: 1rem;
}
.loc-phone .icon { width: 18px; height: 18px; }
.loc-phone:hover { color: var(--coral-deep); }

.loc-hours {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.loc-hours summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.loc-hours summary::-webkit-details-marker { display: none; }
.loc-hours summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-muted);
  transition: transform 240ms var(--ease-out);
  font-size: 1.2rem;
  line-height: 1;
}
.loc-hours[open] summary::after { transform: rotate(45deg); }
.loc-hours dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 10px;
  padding-bottom: 4px;
}
.loc-hours dl > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-body);
}
.loc-hours dt { font-weight: 600; color: var(--forest); }
.loc-hours dd.closed { color: var(--text-muted); }
.hours-note { color: var(--text-muted); font-size: 0.8rem; display: block; margin-top: 8px; }

.loc-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-dir {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest-soft);
  text-align: center;
  transition: color 180ms ease;
}
.loc-dir:hover { color: var(--coral); }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials {
  padding: 120px 0;
  background: var(--surface-warm);
}
.review-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  align-items: stretch;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.review-feature blockquote {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.review blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--forest);
  letter-spacing: -0.015em;
  margin: 0;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
}
.review-meta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta {
  padding: 120px 0;
  background: var(--bg-ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(191,205,183,0.3), transparent 70%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.final-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 52ch;
}
.final-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 440px;
}
.final-controls .mb-label { align-self: flex-start; }
.final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.final-ctas .btn { flex: 1 1 180px; }

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.foot-brand .brand-word { font-size: 1.1rem; }
.foot-tag {
  margin-top: 16px;
  font-size: 0.92rem;
  color: rgba(245,239,224,0.7);
  max-width: 28ch;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 0.88rem;
  color: rgba(245,239,224,0.7);
  transition: color 180ms ease;
}
.foot-col a:hover { color: var(--coral); }
.foot-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.foot-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(245,239,224,0.25);
  border-radius: var(--radius-pill);
  background: rgba(245,239,224,0.06);
  color: var(--cream);
  font-size: 0.9rem;
  min-height: 40px;
}
.foot-form input::placeholder { color: rgba(245,239,224,0.45); }
.foot-socials { display: flex; gap: 12px; }
.foot-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(245,239,224,0.25);
  border-radius: 50%;
  color: var(--cream);
  transition: border-color 200ms ease, color 200ms ease;
}
.foot-socials a:hover { color: var(--coral); border-color: var(--coral); }
.foot-socials svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(245,239,224,0.15);
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(245,239,224,0.55);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   MOBILE STICKY BAR
========================================================= */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest);
  padding: 10px 14px;
  display: none;
  gap: 10px;
  z-index: 450;
  border-top: 1px solid rgba(245,239,224,0.1);
  transform: translateY(110%);
  transition: transform 360ms var(--ease-out);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: background 180ms ease;
}
.mobile-bar-btn svg { width: 18px; height: 18px; }
.mbb-ghost {
  background: rgba(245,239,224,0.08);
  color: var(--cream);
  border: 1px solid rgba(245,239,224,0.2);
}
.mbb-ghost:hover { background: rgba(245,239,224,0.14); }
.mbb-coral { background: var(--coral); color: #fff; }
.mbb-coral:hover { background: var(--coral-deep); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .service-selector { grid-template-columns: 1fr; gap: 20px; }
  .service-list { flex-direction: row; flex-wrap: wrap; }
  .service-pill { width: auto; min-width: 0; }
  .mini-booker { position: static; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .status-pill { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .bento-image { grid-column: 1 / -1; grid-row: 1; }
  .bento-stat:nth-of-type(2) { grid-column: 1; grid-row: 2; }
  .bento-stat:nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .bento-stat:nth-of-type(4) { grid-column: 1; grid-row: 3; }
  .bento-reviews { grid-column: 2; grid-row: 3; }
  .bento-cta { grid-column: 1 / -1; grid-row: 4; }
  .plate-hero { min-height: 280px; }

  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .journey-line { display: none; }

  .doctor-grid { grid-template-columns: 1fr; gap: 36px; }
  .doctor-portrait { max-width: 440px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .loc-grid { grid-template-columns: 1fr; }

  .review-bento { grid-template-columns: 1fr; }
  .review-feature { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding-top: calc(var(--nav-height) + 20px); padding-bottom: 80px; min-height: auto; }
  .services, .journey, .doctor, .conditions, .locations, .testimonials, .faq, .final-cta { padding: 80px 0; }
  .stats-band { padding: 80px 0; }
  .section-header { margin-bottom: 2.2rem; }

  /* Hero: hide nav book button (mobile bottom bar covers it), tighten CTAs + trust line */
  .nav-actions .btn { display: none; }
  .nav-actions .nav-toggle { display: inline-flex; }
  .hero-inner { gap: 1.75rem; }
  .hero-status { font-size: 0.78rem; padding: 5px 12px; }
  .hero .display-xl { font-size: clamp(2.25rem, 9.5vw, 3.25rem); line-height: 1.02; }
  .hero-sub { margin-top: 1rem; font-size: 1rem; }
  .hero-ctas { margin-top: 1.4rem; gap: 10px; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
  .hero-trust { margin-top: 1.25rem; font-size: 0.75rem; line-height: 1.5; }

  /* Services: horizontal scroll chip bar */
  .service-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .service-list::-webkit-scrollbar { display: none; }
  .service-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 10px 14px;
    min-height: 42px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--surface);
  }
  .service-pill .pill-num { display: none; }
  .service-pill .pill-name { font-size: 0.92rem; }
  .service-pill .pill-badge { margin-left: 8px; padding: 2px 7px; font-size: 0.62rem; }
  .service-content { padding: 24px; min-height: auto; }
  .mini-booker { padding: 20px; }

  .journey-steps { grid-template-columns: 1fr; gap: 24px; }
  .step-num-big { font-size: 88px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-top: 60px; padding-bottom: 84px; }

  .mobile-bar { display: flex; }
  .final-ctas .btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }

  .bento-image { min-height: 220px; }
  .plate-hero { min-height: 220px; }

  .review blockquote { font-size: 1.05rem; }
  .review-feature blockquote { font-size: 1.25rem; }

  .offer-headline { font-size: clamp(1.8rem, 9vw, 2.8rem); }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .status-dot { animation: none !important; box-shadow: none !important; }
  .reveal-line { overflow: visible; }
  .cursor-glow { display: none; }
}
