/* ==========================================================================
   reBreast™ — style.css
   Photography-forward: photos are the design, not decoration.
   ========================================================================== */

/* Skip nav — accessibility */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  background: var(--text);
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 0;
}

:root {
  --cream:    #FAFAF7;
  --warm:     #F2EFEB;
  --dark:     #141412;
  --charcoal: #1E1E1E;
  --text:     #1E1E1E;
  --muted:    #5A5A58;
  --accent:   #B8A078;
  --gold:     #D4C5A9;
  --border:   #E5E2DC;
  --serif:    'Cormorant Garamond', 'Georgia', serif;
  --sans:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max:      1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ══════════════════════════════════════════════════
   UTILITY BAR
══════════════════════════════════════════════════ */

.util-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  gap: 28px;
  z-index: 201;
  transform: translateY(-30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.util-bar.visible {
  transform: translateY(0);
}

/* Ghost mode — visible over hero with no background */
.util-bar--ghost {
  transform: translateY(0);
  background: transparent;
}

.util-bar a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.util-bar a:hover { color: var(--accent); }

.util-bar--ghost a {
  color: rgba(180,180,180,0.6);
}

.util-bar--ghost a:hover {
  color: rgba(255,255,255,0.85);
}

.util-bar__divider {
  width: 1px;
  height: 10px;
  background: rgba(250,250,247,0.15);
}

.util-bar--ghost .util-bar__divider {
  background: rgba(255,255,255,0.1);
}


/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, padding 0.4s ease, top 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 56px;
  border-bottom-color: var(--border);
  top: 30px;
}

/* Hero state — white text over dark photo */
.nav--hero .nav-logo,
.nav--hero .nav-links a {
  color: rgba(255,255,255,0.9);
}
.nav--hero .nav-links a::after { background: rgba(255,255,255,0.6); }
.nav--hero .nav-cta {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.nav--hero .nav-hamburger span { background: white; }

.nav-logo {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.4s;
}
.nav-logo em { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(30,30,30,0.55);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 9px 18px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 201;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--charcoal); transition: background 0.4s;
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 300;
  flex-direction: column;
  padding: 80px 40px 40px;
}
.nav-mobile.open { display: flex; }

.nav-mobile__close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 24px; color: rgba(250,250,247,0.4);
  cursor: pointer; line-height: 1;
}

.nav-mobile a {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: rgba(250,250,247,0.8);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,250,247,0.08);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent); }

.nav-mobile__secondary {
  margin-top: 28px;
  display: flex;
  gap: 24px;
}
.nav-mobile__secondary a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.3);
  border: none;
  padding: 0;
  font-size: 10px;
}

.nav-mobile__cta {
  margin-top: auto;
  display: inline-flex !important;
  align-items: center;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  border: 1px solid rgba(184,160,120,0.35) !important;
  border-bottom: 1px solid rgba(184,160,120,0.35) !important;
  padding: 14px 24px !important;
}


/* ══════════════════════════════════════════════════
   HERO — Full-bleed photo, text overlaid at bottom
══════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: -15% 0;
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}
.hero__photo--desktop { display: block; }
.hero__photo--mobile { display: none; }

@media (max-width: 900px) {
  .hero__photo--desktop { display: none; }
  .hero__photo--mobile { display: block; }
}

/* Gradient darkens bottom-left for text legibility */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.15) 70%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 35%, rgba(0,0,0,0.2) 60%, transparent 85%);
}

.hero__content {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  padding: 0 80px;
  color: #fff;
  max-width: 900px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  animation: heroFadeIn 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-46%); }
  to   { opacity: 1; transform: translateY(-50%); }
}

.hero__label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero__label::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; }

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: gap 0.3s, border-color 0.3s;
}
.hero__cta:hover { gap: 18px; border-bottom-color: var(--accent); }

.hero__micro {
  display: block; margin-top: 12px;
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ── Hero fold line ── */
.hero__fold {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__fold-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__fold-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.hero__fold-cta:hover {
  color: rgba(255,255,255,0.9);
}

.hero__fold-cta svg {
  animation: foldBounce 2.4s ease-in-out infinite;
}

@keyframes foldBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}


/* ══════════════════════════════════════════════════
   PROBLEM — Text-only, centered editorial column
══════════════════════════════════════════════════ */

.problem {
  position: relative;
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 80px clamp(100px, 12vw, 160px);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}

.problem__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem__left { }

.label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.label::before {
  content: ''; width: 32px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}
.label--center { justify-content: center; }
.label--center::before { display: none; }
.label--light { color: rgba(255,255,255,0.55); }
.label--light::before { background: rgba(255,255,255,0.4); }

.problem__headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.problem__headline em { font-style: italic; }

.problem__text p {
  font-size: 16px; color: var(--muted);
  line-height: 1.85; margin-bottom: 20px;
}
.problem__text strong { color: var(--text); font-weight: 500; }

.problem__points {
  display: flex; flex-direction: column; gap: 40px;
  padding-top: 12px;
}

.problem__point h3 {
  font-family: var(--serif);
  font-size: 21px; font-weight: 400;
  line-height: 1.3; margin-bottom: 10px;
}

.problem__point p {
  font-size: 14px; color: var(--muted);
  line-height: 1.75;
}
.problem__point strong { color: var(--text); font-weight: 500; }


/* ══════════════════════════════════════════════════
   PULL QUOTE — Full-width visual break
══════════════════════════════════════════════════ */

.pullquote {
  background: var(--warm);
  padding: clamp(64px, 8vw, 120px) 80px;
  text-align: center;
}

.pullquote--compact {
  padding: clamp(36px, 5vw, 56px) 80px;
}

.pullquote--compact .pullquote__text {
  font-size: clamp(16px, 2vw, 24px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pullquote__mark {
  font-family: var(--serif);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.75;
  display: block;
  margin-bottom: -16px;
  user-select: none;
}

.pullquote__text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 40px);
  font-style: italic; font-weight: 300;
  color: var(--text);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}


/* ══════════════════════════════════════════════════
   PROCEDURES — 3-column side by side
══════════════════════════════════════════════════ */

.procedures {
  position: relative;
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 80px clamp(100px, 12vw, 160px);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}

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

.procedures__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.procedures__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
}
.procedures__title em { font-style: italic; }

.procedures__intro {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; max-width: 400px;
  align-self: end; padding-bottom: 6px;
}

/* 3 columns */
.procedures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.procedure {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
}
.procedure:last-child { border-right: none; padding-right: 0; }
.procedure:not(:first-child) { padding-left: 40px; }

.procedure__num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300;
  color: var(--gold); opacity: 0.45;
  line-height: 1; margin-bottom: 20px;
}

.procedure__name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 16px;
}

.procedure__desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; margin-bottom: 0;
}

.procedure__details {
  font-size: 13px; color: var(--muted);
  line-height: 1.8;
  padding-top: 16px; margin-top: 16px;
  border-top: 1px solid var(--border);
}

.procedure__tag {
  display: inline-block; margin-top: 8px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}

.procedure__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text); text-decoration: none;
  margin-top: 14px;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: gap 0.3s;
}
.procedure__link:hover { gap: 14px; }

.procedures__footer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.procedures__footer a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: gap 0.3s;
}
.procedures__footer a:hover { gap: 14px; }

/* ── Procedure Split Layout ── */
.proc-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--border);
}

/* LEFT NAV */
.proc-nav {
  border-right: 1px solid var(--border);
  padding-right: 48px;
  padding-top: 40px;
}
.proc-nav__group {
  margin-bottom: 40px;
}
.proc-nav__group-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray, #888);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.proc-nav__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  text-align: left;
  border-left: 2px solid transparent;
  padding-left: 0;
  margin-left: -2px;
  transition: border-color 0.25s, padding-left 0.25s;
}
.proc-nav__item:hover .proc-nav__name { opacity: 1; }
.proc-nav__item.active {
  border-left-color: var(--accent);
  padding-left: 14px;
}
.proc-nav__num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.proc-nav__name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  opacity: 0.35;
  transition: opacity 0.25s, font-size 0.25s;
}
.proc-nav__item.active .proc-nav__name {
  opacity: 1;
  font-size: clamp(18px, 1.8vw, 26px);
}
.proc-nav__item:not(.active):hover .proc-nav__name { opacity: 0.65; }

/* RIGHT PANELS */
.proc-panels {
  padding-left: 72px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  min-height: 380px;
}
.proc-panel {
  position: absolute;
  top: 40px; left: 72px; right: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.proc-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  top: auto; left: auto; right: auto;
}
.proc-panel__tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.proc-panel__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.proc-panel__title em { font-style: italic; }
.proc-panel__body {
  font-size: 15px;
  color: var(--muted, #5a5a58);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}
.proc-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: gap 0.3s;
}
.proc-panel__link:hover { gap: 14px; }

@media (max-width: 900px) {
  .proc-split {
    grid-template-columns: 1fr;
  }
  .proc-nav {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 24px;
    display: flex;
    gap: 32px;
    overflow-x: auto;
  }
  .proc-nav__group { margin-bottom: 0; min-width: 120px; }
  .proc-panels { padding-left: 0; }
  .proc-panel { position: relative; top: auto; left: auto; right: auto; }
}

/* Procedure accordion */
.proc-group {
  margin-top: 56px;
}
.proc-group__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-gray, #888);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.proc-accordion {
  border-bottom: 1px solid var(--border);
}
.proc-item {
  border-top: 1px solid var(--border);
  cursor: pointer;
}
.proc-item__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  transition: opacity 0.3s;
  user-select: none;
}
.proc-item:not(.active) .proc-item__header:hover {
  opacity: 0.65;
}
.proc-item__num {
  font-family: var(--serif);
  font-size: 13px; font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.08em;
  min-width: 28px;
  flex-shrink: 0;
}
.proc-item__title-wrap {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.proc-item__name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  transition: color 0.3s;
}
.proc-item__name em { font-style: italic; }
.proc-item__line {
  font-size: 13px;
  color: var(--warm-gray, #888);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}
.proc-item:not(.active) .proc-item__line {
  opacity: 1;
  transform: translateX(0);
}
.proc-item__arrow {
  font-size: 16px;
  color: var(--accent);
  transform: rotate(0deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.proc-item.active .proc-item__arrow {
  transform: rotate(90deg);
}
.proc-item.active .proc-item__name {
  color: var(--accent);
}
.proc-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 52px;
}
.proc-item.active .proc-item__body {
  grid-template-rows: 1fr;
}
.proc-item__body > * {
  overflow: hidden;
}
.proc-item__body p {
  font-size: 15px;
  color: var(--muted, #5a5a58);
  line-height: 1.75;
  max-width: 640px;
  padding-bottom: 28px;
}
.proc-item__body .procedure__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  margin-bottom: 28px;
  transition: gap 0.3s;
}
.proc-item__body .procedure__link:hover { gap: 10px; }

@media (max-width: 640px) {
  .proc-item__title-wrap { gap: 8px; }
  .proc-item__line { display: none; }
  .proc-item__body { padding-left: 0; }
}


/* ══════════════════════════════════════════════════
   HOSPITAL — Full-bleed photo as section background
══════════════════════════════════════════════════ */

.hospital {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 100vh;
}

.hospital__photo {
  position: absolute; inset: -15% 0;
  width: 100%; height: 130%;
  object-fit: cover; object-position: center 30%;
  display: block;
  will-change: transform;
}

.hospital__photo-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 8, 0.78);
}

.hospital__content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 80px clamp(100px, 12vw, 160px);
}

.hospital__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.15;
  max-width: 820px; margin-bottom: 56px;
  letter-spacing: -0.01em;
  color: #fff;
}
.hospital__title em { font-style: italic; }

.hospital__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.hospital__text {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
}
.hospital__text p + p { margin-top: 18px; }
.hospital__text strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* Smaller images inside the dark section */
.hospital__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hospital__img-wrap {
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.hospital__img-wrap:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.hospital__img-wrap:not(:first-child) { aspect-ratio: 4/3; }
.hospital__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
  opacity: 0.85;
}
.hospital__img-wrap:hover img { transform: scale(1.03); opacity: 1; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px; padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300; line-height: 1.2;
  color: #fff; margin-bottom: 10px;
}
.stat__num--sm {
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.03em;
}
.stat__label {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38); line-height: 1.5;
}

/* Hyatt note */
.hyatt {
  margin-top: 80px; padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 80px; align-items: center;
}
.hyatt__text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300; color: #fff;
  margin-bottom: 20px; line-height: 1.3;
}
.hyatt__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85; margin-bottom: 14px;
}
.hyatt__img-wrap {
  overflow: hidden; aspect-ratio: 4/3;
  opacity: 0.8; transition: opacity 0.4s;
}
.hyatt__img-wrap:hover { opacity: 1; }
.hyatt__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}


/* ══════════════════════════════════════════════════
   DR. BALEY — Full split: photo edge-to-edge left,
   text right. No photo container padding.
══════════════════════════════════════════════════ */

.doctor {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.doctor__photo-side {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  min-height: 600px;
}

.doctor__photo-side img {
  position: absolute; inset: -10% 0;
  width: 100%; height: 120%;
  object-fit: cover; object-position: center 20%;
  display: block;
  will-change: transform;
}

.doctor__text-side {
  background: var(--cream);
  padding: clamp(60px, 7vw, 100px) clamp(40px, 6vw, 80px) clamp(80px, 9vw, 120px);
  display: flex; flex-direction: column; justify-content: center;
}

.doctor__text-side .label { margin-bottom: 32px; }

.doctor__headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.doctor__headline em { font-style: italic; }

.doctor__text-side h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; line-height: 1.4;
  margin-bottom: 24px; max-width: 500px;
}

.doctor__text-side p {
  font-size: 15px; color: var(--muted);
  line-height: 1.85; margin-bottom: 18px;
  max-width: 520px;
}
.doctor__text-side strong { color: var(--text); font-weight: 500; }

.doctor__creds {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.doctor__cred { font-size: 12px; color: var(--muted); }
.doctor__cred strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px; font-weight: 400;
  color: var(--text); margin-bottom: 3px;
}


/* ══════════════════════════════════════════════════
   JOURNEY — Photo background with text overlay
══════════════════════════════════════════════════ */

/* Clinic photo strip */
.doctor__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.doctor__strip-photo {
  aspect-ratio: 4/3; overflow: hidden;
}
.doctor__strip-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 8s ease-out;
  transform: scale(1.08);
}
.doctor__strip-photo.in-view img { transform: scale(1); }
.doctor__strip-photo:hover img { transform: scale(1.04); transition: transform 0.6s ease; }

.journey {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 100vh;
}

.journey__photo {
  position: absolute; inset: -15% 0;
  width: 100%; height: 130%;
  object-fit: cover; object-position: center;
  display: block;
  will-change: transform;
}

.journey__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 8, 0.82);
}

.journey__content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 80px clamp(100px, 12vw, 160px);
}

.journey__header { margin-bottom: 72px; }

.journey__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 640px; margin-bottom: 20px;
  color: #fff;
}
.journey__title em { font-style: italic; }
.journey__intro {
  font-size: 15px; color: rgba(255,255,255,0.55);
  max-width: 440px; line-height: 1.7;
}

/* Alternating steps */
.steps { }

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}

.step__num {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.step:nth-child(even) .step__num { order: 2; text-align: right; }
.step:nth-child(even) .step__body { order: 1; }

.step__body h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400; color: #fff;
  margin-bottom: 12px; line-height: 1.3;
}
.step__body p {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.8; max-width: 440px;
}


/* ══════════════════════════════════════════════════
   RESULTS
══════════════════════════════════════════════════ */

.results {
  position: relative;
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 80px clamp(100px, 12vw, 160px);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}
.results__inner { max-width: var(--max); margin: 0 auto; }

.results__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 60px;
}

.results__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
}
.results__title em { font-style: italic; }

.results__intro {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; max-width: 400px;
  align-self: end; padding-bottom: 6px;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--warm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.result-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.result-imgs img:first-child { background: #E8E5E0; }
.result-imgs img:last-child  { background: #DDD9D2; }
.result-meta { padding: 18px 20px; }
.result-meta dt { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.result-meta dd { font-family: var(--serif); font-size: 15px; margin-bottom: 10px; line-height: 1.3; }
.results__cta { margin-top: 32px; text-align: center; }
.results__more {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.results__more:hover { color: var(--text); }
.results__more span { transition: transform 0.2s; display: inline-block; }
.results__more:hover span { transform: translateX(4px); }
.results__note { margin-top: 24px; font-size: 12px; color: var(--muted); opacity: 0.7; }


/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */

.faq {
  position: relative;
  background: var(--warm);
  padding: clamp(80px, 10vw, 140px) 80px clamp(100px, 12vw, 160px);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}
.faq__inner { max-width: var(--max); margin: 0 auto; }

.faq__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

.faq__list { max-width: 800px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  background: none; border: none;
  font-family: var(--serif);
  font-size: 19px; font-weight: 400;
  color: var(--text); cursor: pointer;
  text-align: left; gap: 24px;
}
.faq-toggle {
  font-size: 20px; font-weight: 300;
  color: var(--accent); transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 600px; }


/* ══════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════ */

.cta {
  background: var(--cream);
  padding: clamp(100px, 12vw, 180px) 80px;
  text-align: center;
}
.cta__inner { max-width: var(--max); margin: 0 auto; }

.cta__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta__sub {
  font-size: 14px; color: var(--muted);
  letter-spacing: 0.06em; margin-bottom: 24px;
}

.cta__warm {
  font-family: var(--serif);
  font-size: 18px; font-style: italic;
  color: var(--muted); font-weight: 300;
  max-width: 520px; margin: 0 auto 48px;
  line-height: 1.7;
}

.cta__btns {
  display: flex; gap: 48px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
}

.cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 4px;
  transition: gap 0.3s;
}
.cta__btn:hover { gap: 16px; }

/* ── Intake Form ── */
.intake {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: left;
}

.intake__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.intake__field { display: flex; flex-direction: column; }
.intake__field--full { margin-bottom: 24px; }

.intake label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.intake__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}

.intake input,
.intake select,
.intake textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.intake input:focus,
.intake select:focus,
.intake textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 168, 138, 0.15);
}

.intake textarea {
  resize: vertical;
  min-height: 80px;
}

.intake select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C8578' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.intake__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--text);
  border: none;
  border-radius: 4px;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.3s, gap 0.3s;
}

.intake__submit:hover {
  background: #1a1a1a;
  gap: 16px;
}

.intake__note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  opacity: 0.7;
  text-align: center;
}

.cta__or {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 32px;
  max-width: 400px;
}

.cta__or::before,
.cta__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cta__or span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.cta__address {
  margin-top: 52px; font-size: 12px;
  color: var(--muted); letter-spacing: 0.05em;
  line-height: 1.7; opacity: 0.7;
}


/* ══════════════════════════════════════════════════
   CREDENTIALS
══════════════════════════════════════════════════ */

.creds {
  padding: 44px 80px;
  border-top: 1px solid var(--border);
}
.creds__row {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: center;
  align-items: center; gap: 32px; flex-wrap: wrap;
}
.cred {
  height: 36px; display: flex;
  align-items: center; justify-content: center;
  opacity: 0.45; transition: opacity 0.3s;
  filter: grayscale(1);
}
.cred:hover { opacity: 0.7; }
.cred img { height: 32px; width: auto; max-width: 72px; object-fit: contain; }
.cred-div { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

.creds--dark {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 44px 0;
  margin-top: 72px;
}
.creds--dark .creds__row { gap: 48px; }
.creds--dark .cred {
  opacity: 0.65;
  height: 48px;
}
.creds--dark .cred:hover { opacity: 0.9; }
.creds--dark .cred img {
  height: 52px; max-width: 130px;
  filter: grayscale(1) invert(1) brightness(1.8);
  mix-blend-mode: screen;
}
.creds--dark .cred-div { background: rgba(255,255,255,0.12); height: 32px; }

.cred[data-tooltip] { position: relative; }
.cred[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: #1E1E1E;
  color: rgba(255,255,255,0.9);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}
.cred[data-tooltip]:hover::after { opacity: 1; }


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */

footer {
  padding: 56px 80px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: start;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 19px; margin-bottom: 8px;
}
.footer__brand em { font-style: italic; }
.footer__addr { font-size: 12px; color: var(--muted); line-height: 1.65; }
.footer__links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer__links a { font-size: 12px; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.3s; }
.footer__links a:hover { color: var(--text); }
.footer__copy { grid-column: 1/-1; font-size: 11px; color: var(--muted); opacity: 0.5; margin-top: 14px; }


/* ══════════════════════════════════════════════════
   REVEAL
══════════════════════════════════════════════════ */

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.reveal.visible .problem__point,
.reveal.visible .procedure,
.reveal.visible .step,
.reveal.visible .result-card,
.reveal.visible .faq-item,
.reveal.visible .doctor__cred {
  opacity: 0; animation: staggerIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.reveal.visible .problem__point:nth-child(1),
.reveal.visible .procedure:nth-child(1),
.reveal.visible .step:nth-child(1),
.reveal.visible .result-card:nth-child(1),
.reveal.visible .faq-item:nth-child(1),
.reveal.visible .doctor__cred:nth-child(1) { animation-delay: 0.1s; }
.reveal.visible .problem__point:nth-child(2),
.reveal.visible .procedure:nth-child(2),
.reveal.visible .step:nth-child(2),
.reveal.visible .result-card:nth-child(2),
.reveal.visible .faq-item:nth-child(2),
.reveal.visible .doctor__cred:nth-child(2) { animation-delay: 0.25s; }
.reveal.visible .problem__point:nth-child(3),
.reveal.visible .procedure:nth-child(3),
.reveal.visible .step:nth-child(3),
.reveal.visible .result-card:nth-child(3),
.reveal.visible .faq-item:nth-child(3),
.reveal.visible .doctor__cred:nth-child(3) { animation-delay: 0.4s; }
.reveal.visible .step:nth-child(4),
.reveal.visible .faq-item:nth-child(4) { animation-delay: 0.55s; }
.reveal.visible .step:nth-child(5),
.reveal.visible .faq-item:nth-child(5) { animation-delay: 0.7s; }
.reveal.visible .step:nth-child(6),
.reveal.visible .faq-item:nth-child(6) { animation-delay: 0.85s; }
.reveal.visible .faq-item:nth-child(7) { animation-delay: 1.0s; }
.reveal.visible .faq-item:nth-child(8) { animation-delay: 1.15s; }
.reveal.visible .faq-item:nth-child(9) { animation-delay: 1.3s; }
.reveal.visible .faq-item:nth-child(10) { animation-delay: 1.45s; }

@keyframes staggerIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.visible .problem__point,
  .reveal.visible .procedure,
  .reveal.visible .step,
  .reveal.visible .result-card,
  .reveal.visible .faq-item,
  .reveal.visible .doctor__cred { opacity: 1; animation: none; }
}


/* ══════════════════════════════════════════════════
   SECTION ARROWS
══════════════════════════════════════════════════ */

.section-arrow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  padding: 20px 0;
  text-decoration: none;
  z-index: 2;
}

.section-arrow__label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.section-arrow:hover .section-arrow__label {
  opacity: 1;
}

.section-arrow svg {
  width: 28px; height: 16px;
  color: var(--accent); opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
  animation: arrowPulse 2.8s ease-in-out infinite;
}

.section-arrow:hover svg { opacity: 0.9; transform: translateY(4px); animation: none; }

.section-arrow--light svg { color: rgba(255,255,255,0.5); }
.section-arrow--light:hover svg { color: rgba(255,255,255,0.9); }
.section-arrow--light .section-arrow__label { color: rgba(255,255,255,0.6); }

@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(7px); opacity: 0.85; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .doctor { grid-template-columns: 1fr; min-height: auto; }
  .doctor__photo-side { height: 60vw; min-height: 360px; position: relative; }
  .procedure__cols { grid-template-columns: 1fr; gap: 28px; }
  .procedures__header { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 900px) {
  .util-bar { display: none; }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; top: 30px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section-arrow { position: relative; padding: 20px 0; }
  .section-arrow svg { width: 22px; height: 12px; }
  .problem, .procedures, .results, .faq, .hospital, .journey, .doctor { min-height: auto; }

  .hero__content { padding: 0 24px; }
  .hero__fold { padding: 16px 24px; gap: 10px; }
  .hero__fold-text { font-size: 8px; letter-spacing: 0.16em; }

  .problem { padding: clamp(60px, 8vw, 100px) 24px; }
  .problem__inner { grid-template-columns: 1fr; gap: 48px; }
  .pullquote { padding: 56px 24px; }

  .procedures { padding: clamp(60px, 8vw, 100px) 24px; }
  .procedures__header { grid-template-columns: 1fr; gap: 20px; }
  .procedures__grid { grid-template-columns: 1fr; }
  .procedure {
    border-right: none !important;
    border-top: 1px solid var(--border);
    padding: 40px 0 !important;
  }
  .procedure:first-child { border-top: none; }

  .hospital__content { padding: clamp(60px, 8vw, 100px) 24px; }
  .hospital__grid { grid-template-columns: 1fr; gap: 40px; }
  .hospital__imgs { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .hyatt { grid-template-columns: 1fr; gap: 32px; }

  .doctor__text-side { padding: clamp(48px, 6vw, 72px) 24px; }
  .doctor__creds { flex-direction: column; gap: 20px; }

  .journey__content { padding: clamp(60px, 8vw, 100px) 24px; }
  .step {
    grid-template-columns: 1fr;
    gap: 12px; padding: 44px 0;
  }
  .step__num { order: 1 !important; text-align: left !important; }
  .step__body { order: 2 !important; }

  .results { padding: clamp(60px, 8vw, 100px) 24px; }
  .results__header { grid-template-columns: 1fr; gap: 20px; }
  .results__grid { grid-template-columns: 1fr; max-width: 420px; }

  .faq { padding: clamp(60px, 8vw, 100px) 24px; }
  .cta { padding: clamp(80px, 10vw, 130px) 24px; }
  .cta__btns { flex-direction: column; gap: 24px; }
  .intake__row { grid-template-columns: 1fr; gap: 16px; }
  .creds { padding: 36px 24px; }
  footer { padding: 48px 24px; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hospital__imgs { grid-template-columns: 1fr; }
  .step__num { font-size: clamp(56px, 14vw, 88px); }
}

/* ── Mobile tap targets & trust bar fix ── */
@media (max-width: 640px) {
  .cta__btn { min-height: 44px; padding: 10px 4px; }
  .creds--dark .creds__row { gap: 16px; }
  .creds--dark .cred { height: 36px; }
  .creds--dark .cred img { height: 36px; max-width: 80px; }
  .creds--dark .cred-div { display: none; }
}
