/* =========================================================
   Dr. Chuks Nwulia — High-End Redesign
   Vibe: Soft Structuralism, warm character
   Layout: Editorial splits + bento grid
   ========================================================= */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --forest-deep:  oklch(19% 0.065 155);
  --forest-dark:  oklch(25% 0.082 155);
  --forest:       oklch(33% 0.10  155);
  --forest-mid:   oklch(42% 0.10  155);
  --sage:         oklch(56% 0.09  155);
  --sage-light:   oklch(87% 0.06  155);
  --sage-pale:    oklch(95.5% 0.03 155);
  --cream:        oklch(97.5% 0.012 78);
  --cream-warm:   oklch(96%  0.015 75);
  --warm-white:   oklch(99%  0.005 78);
  --ink:          oklch(14%  0.025 155);
  --body:         oklch(28%  0.040 155);
  --muted:        oklch(52%  0.026 155);
  --stone:        oklch(84%  0.015 155);
  --stone-light:  oklch(91%  0.010 155);
  --focus:        oklch(62%  0.18  230);
  --error:        oklch(55%  0.18   25);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  /* Scale — wider jumps than the first build */
  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  clamp(1.875rem, 2.8vw, 2.5rem);
  --text-4xl:  clamp(2.25rem,  4vw,   3.5rem);
  --text-hero: clamp(3.25rem,  7vw,   5.75rem);

  /* Spacing */
  --sp-1:  0.25rem;  --sp-2:  0.5rem;   --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-5:  1.25rem;  --sp-6:  1.5rem;
  --sp-7:  1.75rem;  --sp-8:  2rem;     --sp-10: 2.5rem;   --sp-12: 3rem;
  --sp-14: 3.5rem;   --sp-16: 4rem;     --sp-20: 5rem;
  --sp-24: 6rem;     --sp-28: 7rem;     --sp-32: 8rem;

  --max-w:  1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Radii */
  --r-sm:   6px;  --r-md:  14px; --r-lg:  22px;
  --r-xl:   32px; --r-2xl: 44px; --r-full: 9999px;

  /* Shadows */
  --shd-xs:    0 1px 3px oklch(0% 0 0 / 0.05);
  --shd-sm:    0 2px 10px oklch(0% 0 0 / 0.07),  0 1px 3px oklch(0% 0 0 / 0.05);
  --shd-md:    0 8px 28px oklch(0% 0 0 / 0.10),  0 2px 8px oklch(0% 0 0 / 0.06);
  --shd-lg:    0 20px 64px oklch(0% 0 0 / 0.13), 0 8px 20px oklch(0% 0 0 / 0.07);
  --shd-green: 0 20px 64px oklch(33% 0.10 155 / 0.28);
  --shd-inset: inset 0 1px 1px oklch(100% 0 0 / 0.14);

  /* Motion */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
  --dur-xs: 120ms; --dur-sm: 200ms;
  --dur-md: 320ms; --dur-lg: 500ms; --dur-xl: 700ms;
}

/* =========================================================
   BASE
   ========================================================= */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--ink);
  font-weight: 700;
}
a { color: var(--forest); text-decoration: none; transition: color var(--dur-sm) var(--ease); }
a:hover { color: var(--forest-mid); }
p { max-width: 68ch; }

/* Grain overlay — fixed, pointer-events-none, GPU-isolated */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-5);
}
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.3em 0.9em;
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: var(--r-full);
  color: var(--forest);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.kicker-pill-light {
  background: oklch(100% 0 0 / 0.08);
  border-color: oklch(100% 0 0 / 0.15);
  color: oklch(80% 0.07 155);
}
.kicker-dot {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

.section-heading {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--sp-6);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.section-heading-light { color: var(--warm-white); }

/* =========================================================
   BUTTON SYSTEM — Button-in-Button pattern
   ========================================================= */

/* Primary CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--forest);
  color: oklch(95% 0.04 155);
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-sm) var(--ease),
              box-shadow var(--dur-sm) var(--ease),
              transform var(--dur-sm) var(--ease);
}
.btn-cta:hover {
  background: var(--forest-dark);
  color: oklch(95% 0.04 155);
  transform: translateY(-2px);
  box-shadow: var(--shd-green);
}
.btn-cta:active { transform: scale(0.98); box-shadow: none; }
.btn-cta:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.btn-cta .arrow-c {
  width: 2.2rem; height: 2.2rem;
  background: oklch(100% 0 0 / 0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-left: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--dur-sm) var(--ease), background var(--dur-sm) var(--ease);
}
.btn-cta:hover .arrow-c {
  transform: translate(2px, -2px) scale(1.06);
  background: oklch(100% 0 0 / 0.22);
}
.btn-cta .arrow-c svg { width: 13px; height: 13px; }

.btn-cta-lg {
  font-size: var(--text-lg);
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
}
.btn-cta-lg .arrow-c { width: 2.5rem; height: 2.5rem; }
.btn-cta-lg .arrow-c svg { width: 15px; height: 15px; }

/* White CTA (dark section) */
.btn-cta-white {
  background: var(--warm-white);
  color: var(--forest);
}
.btn-cta-white:hover {
  background: var(--cream);
  color: var(--forest-dark);
  box-shadow: 0 12px 40px oklch(0% 0 0 / 0.2);
}
.btn-cta-white .arrow-c { background: oklch(33% 0.10 155 / 0.12); }
.btn-cta-white:hover .arrow-c { background: oklch(33% 0.10 155 / 0.2); }

/* Phone / secondary */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--stone);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: calc(0.4rem + 1.5px) 1.5rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-sm) var(--ease);
}
.btn-phone:hover {
  background: var(--forest);
  color: oklch(95% 0.04 155);
  border-color: var(--forest);
}
.btn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-phone-lg { font-size: var(--text-lg); padding: calc(0.5rem + 1.5px) 1.75rem; }
.btn-phone-light {
  color: oklch(80% 0.06 155);
  border-color: oklch(50% 0.07 155);
}
.btn-phone-light:hover {
  background: oklch(100% 0 0 / 0.1);
  color: var(--warm-white);
  border-color: oklch(72% 0.07 155);
}

/* Ghost (nav header phone link) */
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: transparent;
  color: oklch(80% 0.06 155);
  border: 1.5px solid oklch(52% 0.07 155);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-5);
  text-decoration: none;
  transition: all var(--dur-sm) var(--ease);
}
.btn-ghost-light:hover {
  background: oklch(100% 0 0 / 0.08);
  color: var(--warm-white);
  border-color: oklch(72% 0.07 155);
}

/* Nav pill CTA */
.btn-nav {
  display: inline-flex; align-items: center;
  background: oklch(95% 0.04 155);
  color: var(--forest);
  border: none;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--dur-sm) var(--ease);
}
.btn-nav:hover { background: var(--warm-white); color: var(--forest-dark); }
.btn-nav .nav-a {
  width: 1.75rem; height: 1.75rem;
  background: oklch(33% 0.10 155 / 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-left: 0.5rem; flex-shrink: 0;
  transition: transform var(--dur-sm) var(--ease), background var(--dur-sm) var(--ease);
}
.btn-nav:hover .nav-a { transform: translate(1px, -1px); background: oklch(33% 0.10 155 / 0.18); }
.btn-nav .nav-a svg { width: 11px; height: 11px; }

/* =========================================================
   PHOTO PLACEHOLDERS
   ========================================================= */
.photo-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(148deg, var(--forest) 0%, oklch(46% 0.09 168) 100%);
}
.photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    oklch(100% 0 0 / 0.035) 0px, oklch(100% 0 0 / 0.035) 1px,
    transparent 1px, transparent 20px
  );
}
.photo-placeholder-alt {
  background: linear-gradient(148deg, oklch(40% 0.09 155) 0%, oklch(50% 0.08 172) 100%);
}
.placeholder-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-4); padding: var(--sp-8);
  height: 100%; min-height: inherit; text-align: center;
}
.placeholder-icon { width: 44px; height: 44px; color: oklch(72% 0.07 155); flex-shrink: 0; }
.placeholder-inner span {
  font-size: var(--text-sm); font-weight: 500;
  color: oklch(74% 0.06 155); max-width: 26ch; line-height: 1.5;
}

/* Double-Bezel — outer shell + inner glow */
.bezel {
  background: oklch(100% 0 0 / 0.05);
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: calc(var(--r-xl) + 10px);
  padding: 8px;
  box-shadow: 0 28px 72px oklch(19% 0.065 155 / 0.55);
}
.bezel > .photo-placeholder,
.bezel > .bezel-inner,
.bezel > img {
  border-radius: var(--r-xl);
  box-shadow: var(--shd-inset);
}
.bezel-dark {
  background: oklch(0% 0 0 / 0.04);
  border: 1px solid oklch(0% 0 0 / 0.08);
  box-shadow: var(--shd-lg);
  border-radius: calc(var(--r-xl) + 10px);
  padding: 7px;
}
.bezel-dark > .photo-placeholder,
.bezel-dark > img { border-radius: var(--r-xl); }

/* =========================================================
   FLOATING PILL HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1.25rem var(--gutter);
  pointer-events: none;
}
.header-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: oklch(23% 0.082 155 / 0.9);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--r-full);
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  box-shadow: 0 4px 36px oklch(19% 0.065 155 / 0.5),
              inset 0 1px 0 oklch(100% 0 0 / 0.1);
  max-width: var(--max-w);
  width: calc(100% - var(--gutter) * 2);
  transition: background var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease);
}
.site-header.scrolled .header-inner {
  background: oklch(19% 0.065 155 / 0.96);
  box-shadow: 0 8px 48px oklch(19% 0.065 155 / 0.6),
              inset 0 1px 0 oklch(100% 0 0 / 0.08);
}

.site-logo { display: flex; flex-direction: column; justify-content: center; text-decoration: none; flex-shrink: 0; min-height: 44px; }
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
}
.logo-sub { font-size: 10px; font-weight: 500; color: oklch(62% 0.05 155); letter-spacing: 0.02em; }

.site-nav { display: flex; align-items: center; gap: var(--sp-7); margin-left: auto; }
.site-nav a {
  font-size: var(--text-sm); font-weight: 500;
  color: oklch(73% 0.05 155); text-decoration: none;
  transition: color var(--dur-xs) var(--ease);
}
.site-nav a:hover { color: var(--warm-white); }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4.5px;
  width: 44px; height: 44px;
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: var(--r-full);
  cursor: pointer;
  margin-left: auto; flex-shrink: 0;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 14px;
  background: var(--warm-white); border-radius: 2px;
  transition: all var(--dur-sm) var(--ease);
}

/* Mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: oklch(19% 0.065 155 / 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 99;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-8);
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  color: var(--warm-white);
  letter-spacing: -0.025em;
  opacity: 0; transform: translateY(18px);
  animation: navSlide 360ms var(--ease) forwards;
}
.mobile-nav-overlay a:nth-child(2) { animation-delay: 60ms; }
.mobile-nav-overlay a:nth-child(3) { animation-delay: 110ms; }
.mobile-nav-overlay a:nth-child(4) { animation-delay: 160ms; }
.mobile-nav-overlay a:nth-child(5) { animation-delay: 210ms; }
.mobile-nav-overlay a:nth-child(6) { animation-delay: 260ms; }
.mobile-nav-overlay a:hover { color: var(--sage-light); }
@keyframes navSlide { to { opacity: 1; transform: translateY(0); } }
.mobile-nav-close {
  position: absolute; top: var(--sp-6); right: var(--gutter);
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.15);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--warm-white);
}
.mobile-nav-close svg { width: 20px; height: 20px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  padding-top: clamp(110px, 14vh, 140px);
  padding-bottom: var(--sp-24);
  padding-inline: var(--gutter);
  display: flex; align-items: center;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -6%; width: 60%; height: 115%;
  background: radial-gradient(ellipse at 55% 38%,
    oklch(90% 0.055 155) 0%,
    oklch(93% 0.038 155 / 0.55) 42%,
    transparent 68%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin-inline: auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4.5vw, 5.5rem);
  align-items: center;
  position: relative; z-index: 2;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-headline {
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--ink);
  line-height: 0.96;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.038em;
}
.hero-headline em { font-style: normal; color: var(--forest); }
.hero-sub {
  font-size: var(--text-xl);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
  max-width: 44ch;
  font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-wrap: wrap; margin-bottom: var(--sp-10);
}
.hero-trust { display: flex; flex-direction: column; gap: var(--sp-3); }
.trust-row { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--muted); }
.trust-check { width: 14px; height: 14px; color: var(--sage); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-blob {
  position: absolute; bottom: -70px; left: -70px;
  width: 340px; height: 340px; border-radius: 50%;
  background: var(--sage-light); z-index: 0; opacity: 0.65;
}
.hero-visual .bezel { position: relative; z-index: 1; }
.hero-photo { aspect-ratio: 3 / 4; min-height: 420px; width: 100%; display: block; object-fit: cover; object-position: top center; }

/* =========================================================
   ABOUT — DARK SECTION
   ========================================================= */
.about {
  padding-block: var(--sp-28);
  padding-inline: var(--gutter);
  background: var(--forest-dark);
  position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; top: -15%; right: -8%; width: 48%; height: 120%;
  background: radial-gradient(ellipse, oklch(36% 0.10 155 / 0.38) 0%, transparent 60%);
  pointer-events: none;
}
.about-inner {
  max-width: var(--max-w); margin-inline: auto;
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
  position: relative; z-index: 1;
}
.about-image { position: relative; padding-top: var(--sp-8); }
.doctor-photo { aspect-ratio: 3 / 4; width: 100%; border-radius: var(--r-xl); display: block; object-fit: cover; object-position: top center; }
.about-badge {
  align-self: flex-start;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  background: oklch(100% 0 0 / 0.09);
  backdrop-filter: blur(16px);
  border: 1px solid oklch(100% 0 0 / 0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.32);
}
.about-badge svg { width: 18px; height: 18px; color: var(--sage-light); flex-shrink: 0; }
.about-badge span { font-size: var(--text-sm); font-weight: 600; color: var(--sage-light); white-space: nowrap; }

.about-text { padding-top: var(--sp-4); }
.about-text .kicker { color: oklch(65% 0.07 155); margin-bottom: var(--sp-4); }
.about-text .section-heading {
  color: var(--warm-white); margin-bottom: var(--sp-4);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}
.about-lead {
  font-size: var(--text-xl); font-weight: 500;
  color: oklch(80% 0.06 155); line-height: 1.5;
  margin-bottom: var(--sp-6); max-width: 50ch;
}
.about-text p { color: oklch(66% 0.05 155); margin-bottom: var(--sp-4); max-width: 58ch; line-height: 1.7; }
.about-text .btn-cta-white { margin-top: var(--sp-6); }

/* =========================================================
   SERVICES — BENTO GRID
   ========================================================= */
.services {
  padding-block: var(--sp-28);
  padding-inline: var(--gutter);
  background: var(--forest);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; bottom: -15%; left: -8%; width: 45%; height: 55%;
  background: radial-gradient(ellipse, oklch(27% 0.09 155 / 0.55) 0%, transparent 60%);
  pointer-events: none;
}
.services-inner { max-width: var(--max-w); margin-inline: auto; position: relative; z-index: 1; }

.services-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-8); align-items: end;
  margin-bottom: var(--sp-14);
}
.services-head-left .kicker { color: oklch(68% 0.07 155); }
.services-head-left .section-heading { margin-bottom: 0; }
.services-sub { color: oklch(68% 0.05 155); font-size: var(--text-base); line-height: 1.65; max-width: 42ch; }

/* Bento */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 0.9vw, 0.875rem);
}
.service-card {
  background: oklch(100% 0 0 / 0.055);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-5);
  transition: background var(--dur-md) var(--ease),
              border-color var(--dur-md) var(--ease),
              transform var(--dur-md) var(--ease),
              box-shadow var(--dur-md) var(--ease);
}
.service-card:hover {
  background: oklch(100% 0 0 / 0.10);
  border-color: oklch(100% 0 0 / 0.22);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px oklch(19% 0.065 155 / 0.55);
}
.service-card--wide {
  grid-column: span 2;
  flex-direction: row; align-items: flex-start; gap: var(--sp-6);
}
.service-card--full {
  grid-column: span 3;
  flex-direction: row; align-items: center;
  gap: var(--sp-8); padding: var(--sp-8) var(--sp-10);
}

.service-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: oklch(100% 0 0 / 0.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: oklch(82% 0.09 155);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card--full .service-icon { width: 68px; height: 68px; }
.service-card--full .service-icon svg { width: 34px; height: 34px; }

.service-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg); font-weight: 600;
  color: var(--warm-white); margin-bottom: var(--sp-2); line-height: 1.25;
}
.service-card--full .service-text h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-3); }
.service-text p { font-size: var(--text-sm); color: oklch(69% 0.05 155); line-height: 1.6; max-width: 38ch; }
.service-card--full .service-text p { font-size: var(--text-base); max-width: 60ch; }

/* =========================================================
   WHY CHOOSE US — EDITORIAL NUMBERED LIST
   ========================================================= */
.why {
  padding-block: var(--sp-28);
  padding-inline: var(--gutter);
  background: var(--cream);
}
.why-inner { max-width: var(--max-w); margin-inline: auto; }

.why-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-8); align-items: end;
  margin-bottom: var(--sp-14);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--stone-light);
}
.why-header .section-heading { margin-bottom: 0; }
.why-header-right p { font-size: var(--text-lg); color: var(--muted); line-height: 1.65; max-width: 42ch; }

.why-list { display: grid; grid-template-columns: 1fr 1fr; }
.why-item {
  display: grid; grid-template-columns: 3rem 1fr;
  gap: var(--sp-5);
  padding: var(--sp-8) var(--sp-6);
  border-bottom: 1px solid var(--stone-light);
  transition: background var(--dur-md) var(--ease);
}
.why-item:hover { background: var(--sage-pale); }
.why-item:nth-child(odd) { border-right: 1px solid var(--stone-light); padding-left: 0; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }

.why-num {
  font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: 800;
  color: var(--forest);
  width: 2rem; height: 2rem;
  background: var(--sage-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.why-body h3 {
  font-size: var(--text-lg); font-weight: 700;
  color: var(--ink); margin-bottom: var(--sp-3); line-height: 1.25;
}
.why-body p { font-size: var(--text-sm); color: var(--muted); line-height: 1.65; max-width: 36ch; }

/* =========================================================
   CLINIC PHOTOS
   ========================================================= */
.clinic-photos {
  padding-block: var(--sp-20) var(--sp-24);
  padding-inline: var(--gutter);
  background: var(--cream-warm);
}
.clinic-photos-inner { max-width: var(--max-w); margin-inline: auto; }
.clinic-photos-head { margin-bottom: var(--sp-10); }
.clinic-photos-sub {
  color: var(--muted);
  font-size: var(--text-lg);
  max-width: 52ch;
  line-height: 1.65;
}

/* Asymmetric featured layout */
.clinic-photos-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--sp-4);
  height: 500px;
}

.clinic-photo-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 0;
}
.clinic-photo-main .clinic-room-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.clinic-photos-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.clinic-photo-stack-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  flex: 1;
  margin: 0;
}
.clinic-photo-stack-item .clinic-room-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Frosted pill label overlays */
.clinic-photo-main figcaption,
.clinic-photo-stack-item figcaption {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: oklch(99% 0.005 78 / 0.84);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  color: var(--forest-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: var(--r-full);
  border: 1px solid oklch(100% 0 0 / 0.4);
}

/* Legacy grid selector (kept for no-op safety) */
.clinic-photos-grid { display: none; }
.clinic-room-photo {
  width: 100%; aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center;
  border-radius: var(--r-lg); display: block;
}
.photo-room-label { display: none; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  padding-block: var(--sp-28); padding-inline: var(--gutter);
  background: var(--forest-dark);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, oklch(36% 0.10 155 / 0.45) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: 760px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-8);
  position: relative; z-index: 1;
}
.cta-band-inner h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800; color: var(--warm-white);
  line-height: 1.03; letter-spacing: -0.03em;
}
.cta-band-inner p {
  font-size: var(--text-xl); color: oklch(68% 0.05 155);
  line-height: 1.65; max-width: 50ch; margin-inline: auto;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding-block: var(--sp-28); padding-inline: var(--gutter);
  background: var(--warm-white);
}
.contact-inner { max-width: var(--max-w); margin-inline: auto; }
.contact-head { margin-bottom: var(--sp-12); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: var(--sp-14); align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: var(--sp-7); }
.contact-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--sage-pale); border: 1px solid var(--sage-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-body h4 {
  font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); margin-bottom: var(--sp-1);
  font-family: var(--font-body);
}
.contact-item-body p, .contact-item-body a {
  font-size: var(--text-lg); color: var(--ink); text-decoration: none; line-height: 1.5;
}
.contact-item-body a {
  display: inline-flex; align-items: center; min-height: 44px; padding-block: 0.25rem;
}
.contact-item-body a:hover { color: var(--forest); }

.contact-map { display: flex; flex-direction: column; gap: var(--sp-5); }
.map-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shd-md); }
.map-frame iframe { width: 100%; height: 320px; border: none; display: block; }
.exterior-photo { aspect-ratio: 16 / 7; border-radius: var(--r-lg); width: 100%; display: block; object-fit: cover; object-position: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--forest-deep);
  padding-block: var(--sp-16) var(--sp-12);
  padding-inline: var(--gutter);
}
.footer-inner {
  max-width: var(--max-w); margin-inline: auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--sp-10);
}
.footer-brand-name {
  display: block; font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 700; color: var(--warm-white); margin-bottom: var(--sp-1);
}
.footer-brand-corp {
  display: block; font-size: var(--text-xs);
  color: oklch(50% 0.04 155); margin-bottom: var(--sp-5); letter-spacing: 0.04em;
}
.footer-address {
  font-style: normal; display: flex; flex-direction: column; gap: var(--sp-2);
}
.footer-address p, .footer-address a {
  font-size: var(--text-sm); color: oklch(52% 0.04 155); text-decoration: none; line-height: 1.5;
}
.footer-address a:hover { color: var(--warm-white); }
.footer-col h4 {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 700;
  color: var(--warm-white); margin-bottom: var(--sp-5);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-links li a {
  font-size: var(--text-sm); color: oklch(52% 0.04 155); text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px; padding-inline: 0.25rem;
  transition: color var(--dur-xs) var(--ease);
}
.footer-links li a:hover { color: var(--warm-white); }
.footer-bottom {
  max-width: var(--max-w); margin-inline: auto;
  border-top: 1px solid oklch(100% 0 0 / 0.07);
  padding-top: var(--sp-6); margin-top: var(--sp-10);
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  justify-content: space-between; align-items: flex-start;
}
.footer-disclaimer { font-size: var(--text-xs); color: oklch(42% 0.03 155); line-height: 1.75; max-width: 70ch; }
.footer-copy { font-size: var(--text-xs); color: oklch(42% 0.03 155); white-space: nowrap; }

/* =========================================================
   SCROLL REVEALS — blur + translate
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity var(--dur-xl) var(--ease),
              transform var(--dur-xl) var(--ease),
              filter var(--dur-xl) var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.d1 { transition-delay: 75ms; }   .d2 { transition-delay: 150ms; }
.d3 { transition-delay: 225ms; }  .d4 { transition-delay: 300ms; }
.d5 { transition-delay: 375ms; }  .d6 { transition-delay: 450ms; }

/* =========================================================
   INTAKE FORM
   ========================================================= */
.intake-header {
  background: var(--forest);
  padding-block: var(--sp-5); padding-inline: var(--gutter);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 0 oklch(0% 0 0 / 0.15), var(--shd-sm);
}
.intake-header-inner {
  max-width: var(--max-w); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8);
}
.intake-header .logo-name { color: var(--warm-white); }
.intake-header .logo-sub { color: oklch(65% 0.05 155); }

.intake-main {
  padding-block: var(--sp-10) var(--sp-20);
  padding-inline: var(--gutter);
  max-width: 800px; margin-inline: auto;
}
.intake-page-title { font-size: var(--text-3xl); font-weight: 800; color: var(--ink); margin-bottom: var(--sp-2); letter-spacing: -0.025em; }
.intake-page-sub { font-size: var(--text-lg); color: var(--muted); margin-bottom: var(--sp-8); }

.intake-clinic-card {
  background: var(--warm-white); border: 1px solid var(--stone-light);
  border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-6);
  align-items: center; justify-content: space-between;
}
.clinic-card-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--ink); display: block; margin-bottom: var(--sp-1); }
.clinic-card-detail { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }
.clinic-card-phone { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--forest); text-decoration: none; }
.clinic-card-phone:hover { color: var(--forest-dark); }

.intake-notice {
  background: oklch(93% 0.04 225);
  border-left: 4px solid oklch(52% 0.14 225);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-4) var(--sp-6); margin-bottom: var(--sp-8);
}
.intake-notice p { font-size: var(--text-sm); color: oklch(24% 0.09 225); line-height: 1.7; }
.intake-notice strong { font-weight: 600; }

.form-progress {
  margin-bottom: var(--sp-8); padding: var(--sp-5) var(--sp-6);
  background: var(--warm-white); border: 1px solid var(--stone-light); border-radius: var(--r-lg);
}
.progress-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-3); }
.progress-step-label { font-size: var(--text-sm); font-weight: 700; color: var(--forest); }
.progress-count { font-size: var(--text-xs); color: var(--muted); }
.progress-track { height: 5px; background: var(--stone-light); border-radius: var(--r-full); overflow: hidden; }
.progress-fill { height: 100%; background: var(--forest); border-radius: var(--r-full); transition: width 400ms var(--ease); min-width: 5%; }

.form-section {
  display: none; background: var(--warm-white); border: 1px solid var(--stone-light);
  border-radius: var(--r-xl); padding: var(--sp-8); margin-bottom: var(--sp-5);
  animation: fadeUp 320ms var(--ease) both;
}
.form-section.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.form-section-heading { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-2); }
.step-num {
  display: inline-flex; width: 34px; height: 34px; flex-shrink: 0;
  background: var(--forest); color: oklch(96% 0.03 155);
  border-radius: 50%; font-size: var(--text-sm); font-weight: 700;
  align-items: center; justify-content: center;
}
.form-section-heading h2 { font-size: var(--text-2xl); font-weight: 700; color: var(--ink); }
.form-section-desc { font-size: var(--text-sm); color: var(--muted); margin-bottom: var(--sp-7); padding-bottom: var(--sp-6); border-bottom: 1px solid var(--stone-light); line-height: 1.6; }

.form-group { margin-bottom: var(--sp-5); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--ink); margin-bottom: var(--sp-2); }
.req { color: var(--error); margin-left: 2px; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--stone); border-radius: var(--r-md);
  font-size: var(--text-base); color: var(--ink); background: var(--cream);
  transition: border-color var(--dur-xs) var(--ease), box-shadow var(--dur-xs) var(--ease);
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px oklch(33% 0.10 155 / 0.13);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M7 8l3 3 3-3' stroke='%23777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 40px; cursor: pointer;
}
.hint { font-size: var(--text-xs); color: var(--muted); margin-top: var(--sp-1); line-height: 1.5; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr;     gap: var(--sp-4); }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-4); }

.pill-group { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-2); }
.pill-label {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--body); cursor: pointer;
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--stone); border-radius: var(--r-full);
  transition: all var(--dur-xs) var(--ease); user-select: none;
}
.pill-label:hover { border-color: var(--forest); background: var(--sage-pale); }
.pill-label input { accent-color: var(--forest); width: 15px; height: 15px; }
.pill-label:has(input:checked) { border-color: var(--forest); background: var(--sage-pale); color: var(--forest); font-weight: 600; }

.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-top: var(--sp-2); }
.check-list-item {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--stone-light); border-radius: var(--r-md);
  cursor: pointer; transition: all var(--dur-xs) var(--ease);
}
.check-list-item:hover { border-color: var(--forest); background: var(--sage-pale); }
.check-list-item:has(input:checked) { border-color: var(--forest); background: var(--sage-pale); }
.check-list-item input[type="checkbox"] { accent-color: var(--forest); width: 17px; height: 17px; flex-shrink: 0; }
.check-list-item span { font-size: var(--text-sm); color: var(--body); line-height: 1.3; }

.conditional { display: none; margin-top: var(--sp-5); padding: var(--sp-5) var(--sp-6); background: var(--sage-pale); border-radius: var(--r-lg); border: 1px solid var(--sage-light); }
.conditional.show { display: block; }
.conditional .form-group:last-child { margin-bottom: 0; }
.sub-heading { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--ink); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--stone-light); }

.form-nav {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  padding-top: var(--sp-6); border-top: 1px solid var(--stone-light); margin-top: var(--sp-6);
}
.btn-back-step {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--stone); border-radius: var(--r-full);
  font-size: var(--text-base); font-weight: 600;
  padding: var(--sp-3) var(--sp-6); cursor: pointer;
  transition: all var(--dur-xs) var(--ease);
}
.btn-back-step:hover { border-color: var(--forest); color: var(--forest); }

.btn-next-step, .btn-submit-form {
  display: inline-flex; align-items: center;
  background: var(--forest); color: oklch(96% 0.03 155);
  border: none; border-radius: var(--r-full);
  font-size: var(--text-base); font-weight: 600; cursor: pointer;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  transition: all var(--dur-sm) var(--ease);
}
.btn-next-step:hover, .btn-submit-form:hover {
  background: var(--forest-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(33% 0.10 155 / 0.28);
}
.btn-next-step .arrow-c, .btn-submit-form .arrow-c {
  width: 2rem; height: 2rem; background: oklch(100% 0 0 / 0.13);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-left: 0.75rem; flex-shrink: 0;
  transition: transform var(--dur-sm) var(--ease);
}
.btn-next-step:hover .arrow-c, .btn-submit-form:hover .arrow-c { transform: translate(2px, -1px) scale(1.06); }
.btn-next-step .arrow-c svg, .btn-submit-form .arrow-c svg { width: 12px; height: 12px; }

.consent-wrap { background: var(--sage-pale); border: 1.5px solid var(--sage-light); border-radius: var(--r-lg); padding: var(--sp-6); margin-bottom: var(--sp-6); }
.consent-label { display: flex; gap: var(--sp-4); align-items: flex-start; cursor: pointer; font-size: var(--text-base); color: var(--body); line-height: 1.65; }
.consent-label input[type="checkbox"] { accent-color: var(--forest); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.form-confirmation { display: none; text-align: center; padding: var(--sp-20) var(--sp-8); background: var(--warm-white); border: 1px solid var(--stone-light); border-radius: var(--r-xl); }
.form-confirmation.show { display: block; }
.confirm-icon { width: 72px; height: 72px; background: var(--sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: var(--sp-6); color: var(--forest); }
.confirm-icon svg { width: 36px; height: 36px; }
.form-confirmation h2 { font-size: var(--text-3xl); font-weight: 800; color: var(--ink); margin-bottom: var(--sp-4); }
.form-confirmation p { font-size: var(--text-lg); color: var(--muted); line-height: 1.65; max-width: 46ch; margin-inline: auto; }

.form-submit-error {
  background: oklch(97% 0.02 25);
  border: 1px solid oklch(70% 0.12 25);
  border-radius: var(--r-md);
  color: oklch(40% 0.12 25);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
}

.btn-submit-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---- Tablet (1024px) ---- */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr 1fr; }
  .services-head { grid-template-columns: 1fr; }
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card--full { grid-column: span 2; }
  .service-card--wide { grid-column: span 1; flex-direction: column; }
  .why-header { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile (768px) ---- */
@media (max-width: 768px) {
  /* Header */
  .site-nav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: var(--sp-4); padding: 0.4rem 0.4rem 0.4rem 1.2rem; }

  /* Section spacing — tighter on mobile */
  .hero    { padding-block: calc(clamp(80px, 14vw, 100px) + var(--sp-4)) var(--sp-14); min-height: auto; }
  .about, .services, .why, .clinic-photos, .cta-band, .contact { padding-block: var(--sp-16); }
  .why-header { padding-bottom: var(--sp-6); margin-bottom: var(--sp-8); }

  /* Hero — text first, image below, shorter crop */
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: var(--sp-8); }
  .hero-text { align-items: center; order: 1; }
  .hero-visual { order: 2; max-width: 420px; margin-inline: auto; width: 100%; }
  .hero-photo { aspect-ratio: 4 / 3; min-height: 0; max-height: 280px; }
  .hero-blob { display: none; }
  .hero-trust { align-items: center; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-image { display: none; }

  /* Services */
  .services-bento { grid-template-columns: 1fr; }
  .service-card--full, .service-card--wide { grid-column: span 1; flex-direction: column; }

  /* Why */
  .why-list { grid-template-columns: 1fr; }
  .why-item { padding: var(--sp-5) 0; }
  .why-item:nth-child(odd) { border-right: none; padding-left: 0; }
  .why-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--stone-light); }
  .why-item:last-child { border-bottom: none; }

  /* Clinic photos — tighter height, equal cols on mobile */
  .clinic-photos-featured { grid-template-columns: 1fr 1fr; height: 360px; }
  .clinic-photos-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; }

  /* Intake form */
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .form-section { padding: var(--sp-6); }
  .intake-clinic-card { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* ---- Small mobile (480px) ---- */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-cta, .hero-actions .btn-phone-lg { width: 100%; justify-content: center; }
  .cta-band-inner .btn-cta-white { width: 100%; justify-content: center; }
  /* Clinic photos — single column stack on small screens */
  .clinic-photos-featured { grid-template-columns: 1fr; height: auto; }
  .clinic-photo-main { aspect-ratio: 16 / 9; min-height: 0; }
  .clinic-photo-main .clinic-room-photo { position: absolute; }
  .clinic-photos-stack { flex-direction: row; height: 200px; }
  .clinic-photo-stack-item { flex: 1; min-height: 0; }
  .clinic-photos-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 100%; }
  .hero-photo { max-height: 240px; }
}
