/* ============================================================
   Dr. Alok Bansal, orthopedic surgeon, Kyiv
   Design system: concept 01 "Преміальна медична авторитетність"
   Fonts: Source Serif 4 (headings), Source Sans 3 (text),
          IBM Plex Mono (utility labels)
   ============================================================ */

:root {
  --bg: #F5F6F4;
  --surface: #FFFFFF;
  --surface-alt: #EEEFEA;
  --ink: #16212E;
  --ink-soft: #33404F;
  --ink-mute: #5B6673;
  --navy: #1B3A5C;
  --navy-deep: #142C46;
  --bronze: #A47B3D;      /* lines, dots, large accents only */
  --bronze-ink: #7A5B2B;  /* bronze for small text (AA on --bg) */
  --line: #D7DAD4;
  --line-soft: #E4E5E0;

  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 10vw, 120px);

  --radius: 4px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(22, 33, 46, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(22, 33, 46, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

/* clip, not hidden: hidden here would make the sticky header stop sticking */
html, body { overflow-x: clip; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--navy-deep); }

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

/* ---------- utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-ink);
  margin-bottom: 20px;
  overflow-wrap: break-word;
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 60ch;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #F5F6F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #F5F6F4; }
.btn:active { transform: translateY(1px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--navy-deep);
  border-color: var(--bronze);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: gap 0.18s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 246, 244, 0.9);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark { display: block; flex-shrink: 0; width: 44px; height: 44px; }
.brand .brand__text span { color: var(--bronze-ink); }
.site-footer .brand { color: #FBFCFB; }
.site-footer .brand .brand__text span { color: #C9A876; }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}
.primary-nav a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.primary-nav a:hover { color: var(--navy); border-color: var(--bronze); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.header-phone:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-block: clamp(48px, 8vw, 96px) clamp(16px, 3vw, 32px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.0;
  margin-bottom: 18px;
  overflow-wrap: break-word;
}
.hero .credential-line {
  display: inline-block;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--bronze);
}
.hero .lede {
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.cred-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.cred-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--bronze);
  border-radius: 3px;
  padding: 7px 12px 7px 10px;
}
.cred-badges li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--bronze-ink);
}

.portrait {
  position: relative;
  border: 1px solid var(--bronze);
  padding: 10px;
  background: var(--surface);
}
.portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  filter: saturate(0.96);
}
.portrait figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 12px;
  padding-left: 2px;
}

/* running credential strip */
.cred-strip {
  border-block: 1px solid var(--line);
  background: var(--surface-alt);
}
.cred-strip__inner {
  padding-block: 15px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cred-strip__inner span { display: inline; white-space: nowrap; }
.cred-strip__inner span:not(:last-child)::after {
  content: "·";
  color: var(--bronze);
  margin: 0 0.6em;
  font-weight: 700;
}

/* ============================================================
   Sections base
   ============================================================ */
section[id] { scroll-margin-top: 88px; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-alt); }
.section--navy {
  background: var(--navy-deep);
  color: #E7ECF2;
}
.section--navy h2, .section--navy h3 { color: #FBFCFB; }
.section--navy .eyebrow { color: #C9A876; }
.section--navy .section-head p { color: #B9C6D4; }

/* ============================================================
   Services
   ============================================================ */
.services {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service--primary {
  grid-column: 1 / -1;
  border-color: var(--bronze);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
}
.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--bronze-ink);
}
.service h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
}
.service--primary h3 { font-size: clamp(24px, 3vw, 32px); }
.service p { color: var(--ink-soft); font-size: 16px; }
.service__list {
  list-style: none;
  padding: 0;
  margin-top: 4px;
  display: grid;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-soft);
}
.service__list li {
  padding-left: 20px;
  position: relative;
}
.service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--bronze);
}
.service__cta { margin-top: auto; padding-top: 8px; }

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.about__media {
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--surface);
}
.about__media img { aspect-ratio: 3 / 4; object-fit: cover; }
.about__media figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 10px;
}
.about__body h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 16px;
}
.about__body > p { color: var(--ink-soft); margin-bottom: 16px; }

.cv-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.cv-list li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.cv-list dt, .cv-list .cv-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 3px;
}
.cv-list .cv-val { color: var(--ink-soft); }
.placeholder-num {
  font-family: var(--font-mono);
  background: var(--surface-alt);
  border: 1px dashed var(--bronze);
  color: var(--bronze-ink);
  padding: 0 6px;
  border-radius: 3px;
  font-size: 0.92em;
}

/* stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.stat {
  background: var(--surface);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.stat dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.stat dd {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  /* pin the number to the bottom of the (equal-height) cell so all
     four line up regardless of whether the label wraps to two lines */
  margin-top: auto;
}

/* ============================================================
   Experience / proof (navy)
   ============================================================ */
.proof__lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.proof__lead p { color: #C4D0DC; font-size: 17px; }
.proof__lead .link-arrow { color: #E7ECF2; border-color: #C9A876; }
.proof__lead .link-arrow:hover { color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(28px, 4vw, 44px);
}
.gallery figure {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px;
}
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9FB1C2;
  margin-top: 8px;
}

/* ============================================================
   Reviews
   ============================================================ */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #FBF3E1, #F7EAD0);
  border: 1px solid #E3B85C;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.rating-summary__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1B3A5C;
  color: #F2C14E;
  flex-shrink: 0;
}
.rating-summary__badge svg { width: 24px; height: 24px; }
.rating-summary strong {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #8A5A12;
  line-height: 1;
}
.rating-summary__of { font-family: var(--font-mono); font-size: 12px; color: #A9803A; align-self: flex-end; margin-bottom: 4px; }
.stars {
  color: #F2A900;
  letter-spacing: 3px;
  font-size: 20px;
  text-shadow: 0 1px 0 rgba(138, 90, 18, 0.25);
}
.review__stars { color: #F2A900; letter-spacing: 2px; }
.rating-summary span { color: #6E5326; font-size: 14px; font-weight: 500; }
.rating-summary .link-arrow { color: #7A4E12; border-color: #C9922F; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__stars { letter-spacing: 2px; }
.review p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
}
.review footer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
}
.review--placeholder {
  border-style: dashed;
  border-color: var(--bronze);
  background: transparent;
}
.review--placeholder p { font-style: normal; color: var(--bronze-ink); }

/* reviews carousel */
.reviews-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel__viewport::-webkit-scrollbar { display: none; }
.reviews-carousel__viewport:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
  border-radius: var(--radius);
}
.reviews-carousel__track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}
.reviews-carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 720px) {
  .reviews-carousel__slide { flex-basis: calc((100% - 16px) / 2); }
}
@media (min-width: 1000px) {
  .reviews-carousel__slide { flex-basis: calc((100% - 32px) / 3); }
}
.reviews-carousel__slide .review { height: 100%; }
.reviews-carousel__slide .review p.review__stars { color: #F2A900; font-size: 15px; }
.reviews-carousel__slide .review p:not(.review__stars) { font-size: 17px; }

.reviews-carousel__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.reviews-carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.reviews-carousel__btn:hover { border-color: var(--bronze); background: var(--surface-alt); }
.reviews-carousel__btn:disabled { opacity: 0.35; cursor: default; }
.reviews-carousel__btn svg { width: 20px; height: 20px; }
.reviews-carousel__dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.reviews-carousel__dot[aria-current="true"] {
  background: var(--bronze);
  transform: scale(1.35);
}
.reviews-carousel__dot:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* ============================================================
   Consultation steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: clamp(24px, 3vw, 36px);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bronze-ink);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bronze);
  display: inline-block;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ============================================================
   Booking form
   ============================================================ */
.booking__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
.booking__aside h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.booking__aside p { color: var(--ink-soft); margin-bottom: 20px; }
.booking__aside ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.booking__aside li { padding-left: 22px; position: relative; }
.booking__aside li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--bronze);
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-actions .btn {
  width: 100%;
  min-height: 54px;
}
.contact-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.field .hint { font-size: 12.5px; color: var(--ink-mute); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.14);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #A3352B;
}
.field--error input,
.field--error select,
.field--error textarea { border-color: #A3352B; }
.field__error {
  font-size: 12.5px;
  color: #A3352B;
  display: none;
}
.field--error .field__error { display: block; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

fieldset { border: 0; padding: 0; }
fieldset legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip {
  position: relative;
}
.radio-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-chip span {
  display: block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-soft);
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.radio-chip input:checked + span {
  border-color: var(--navy);
  background: rgba(27, 58, 92, 0.06);
  color: var(--navy);
  font-weight: 600;
}
.radio-chip input:focus-visible + span {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 4px 0 20px;
}
.consent input {
  margin-top: 3px;
  width: 17px; height: 17px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.form__submit { width: 100%; }
.form__status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  display: none;
}
.form__status--ok {
  display: block;
  background: rgba(27, 58, 92, 0.08);
  border: 1px solid var(--navy);
  color: var(--navy-deep);
}
.form__status--err {
  display: block;
  background: rgba(163, 53, 43, 0.08);
  border: 1px solid #A3352B;
  color: #8A2A22;
}
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ============================================================
   Contacts
   ============================================================ */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list .c-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 4px;
}
.contact-list a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--bronze); padding-bottom: 1px; }
.contact-list a:hover { color: var(--navy-deep); }

.map-frame {
  border: 1px solid var(--bronze);
  padding: 8px;
  background: var(--surface);
}
.map-frame iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}
.map-frame--placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: clamp(20px, 4vw, 36px);
  background:
    repeating-linear-gradient(135deg, #EAEBE7 0 2px, #E2E3DE 2px 16px);
}
.map-frame__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.map-frame--placeholder p:not(.map-frame__label) {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 34ch;
}
.clinic-photo-note {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  background: repeating-linear-gradient(135deg, #EAEBE7 0 2px, #E2E3DE 2px 14px);
  border: 1px dashed var(--bronze);
  padding: 14px;
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: #AEBDCB;
  padding-block: clamp(40px, 6vw, 64px);
  font-size: 14px;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.site-footer .site-footer__inner .brand { color: #FBFCFB; }
.site-footer a { color: #C4D0DC; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer nav ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer__legal {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  color: #8194A6;
  font-size: 12.5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 32px;
}
.site-footer__legal > p { max-width: 62ch; margin: 0; }

/* ============================================================
   Photo slots and temporary photos
   ============================================================ */
.fineprint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-mute);
}
.fineprint--light { color: #9FB1C2; display: block; margin-top: 20px; }

.media-slot {
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px dashed var(--bronze);
  background: repeating-linear-gradient(135deg, #EAEBE7 0 2px, #E2E3DE 2px 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 6vw, 56px);
  min-height: 160px;
}
.section--navy .media-slot,
.section--tint .media-slot { background: repeating-linear-gradient(135deg, #E7E8E3 0 2px, #DDDED8 2px 14px); }
.media-slot span {
  max-width: 34ch;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.temp-photo { position: relative; }
.temp-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.02);
}
.service--primary .temp-photo img { aspect-ratio: 4 / 5; }
.temp-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #F5F6F4;
  background: linear-gradient(transparent, rgba(20, 33, 46, 0.72));
  padding: 20px 12px 8px;
}
.temp-photo--aside { margin-top: 24px; }
.temp-photo--aside img { aspect-ratio: 16 / 10; min-height: 0; }

/* full-width temporary photo band, replaces the dashed slots */
.photo-band {
  position: relative;
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: clamp(200px, 26vw, 300px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  display: block;
}
.photo-band figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #F5F6F4;
  background: linear-gradient(transparent, rgba(20, 33, 46, 0.7));
  padding: 24px 14px 9px;
}
.section--navy .photo-band { border-color: rgba(255,255,255,0.16); }

/* two real photos side by side (portrait) */
.photo-duo {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.photo-duo figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}
.photo-duo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.95) contrast(1.02);
  display: block;
}
.photo-duo figure:nth-child(2) img { object-position: center 42%; }
.photo-duo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #F5F6F4;
  background: linear-gradient(transparent, rgba(20, 33, 46, 0.78));
  padding: 28px 14px 10px;
}
@media (max-width: 560px) {
  .photo-duo { gap: 8px; }
  .photo-duo figcaption { font-size: 9.5px; padding: 20px 8px 8px; }
}

/* ============================================================
   Section background image (temporary)
   ============================================================ */
.has-bg { position: relative; isolation: isolate; overflow: hidden; }
.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(20, 44, 70, 0.9), rgba(20, 44, 70, 0.95)),
    var(--bg-image, none);
  background-size: cover;
  background-position: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--bronze);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.faq__body { padding: 0 40px 22px 0; }
.faq__body p { color: var(--ink-soft); font-size: 16px; max-width: 66ch; }

/* ============================================================
   Build credit
   ============================================================ */
.build-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: #93A3B4;
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.15s var(--ease);
}
.build-credit span { text-align: right; max-width: 30ch; }
.build-credit img { height: 38px; width: auto; flex-shrink: 0; display: block; opacity: 0.9; }
.build-credit:hover { color: #E7ECF2; }
.build-credit:hover img { opacity: 1; }

/* ============================================================
   Tag list (memberships, credentials)
   ============================================================ */
/* awards, prominent */
.award-list {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.award-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  background:
    linear-gradient(180deg, rgba(164,123,61,0.10), rgba(164,123,61,0.04));
  border: 1px solid var(--bronze);
  border-radius: 4px;
  padding: 9px 14px 9px 11px;
  box-shadow: var(--shadow-sm);
}
.award-list li .crest {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--bronze-ink);
}

/* memberships, subtle chips */
.member-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.member-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 5px 9px;
  background: var(--surface);
}
.section--tint .member-list li { background: var(--bg); }
.about__body .caps-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 22px 0 0;
}

/* ============================================================
   Video grid
   ============================================================ */
.video-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 12px 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.video-card a:hover { border-color: var(--bronze); transform: translateY(-2px); }
.video-card a:hover .video-card__play { background: var(--navy); }

.video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px;
  background: var(--navy-deep);
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,33,46,0) 55%, rgba(20,33,46,0.35));
}
.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 33, 46, 0.82);
  border: 1.5px solid rgba(245, 246, 244, 0.9);
  transition: background 0.15s var(--ease);
}
.video-card__play::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #F5F6F4;
}
.video-card__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 6px;
}
.video-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
  padding: 0 6px;
}

/* ============================================================
   Instagram embeds
   ============================================================ */
.ig-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin: 0 auto; gap: 16px; }
}
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 440px; }
}
.ig-item {
  min-width: 0;
  display: flex;
  align-self: start;
  max-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
@media (max-width: 900px) { .ig-item { max-height: 720px; } }
@media (max-width: 600px) { .ig-item { max-height: 340px; } }
.ig-item .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
/* fallback shown before embed.js swaps in the iframe */
.ig-item > .instagram-media > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--navy);
  font-size: 14px;
  text-align: center;
}
.ig-follow {
  flex: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 540px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.ig-follow:hover { border-color: var(--bronze); transform: translateY(-2px); }
@media (max-width: 620px) { .ig-follow { min-height: 200px; } }
.ig-follow svg { width: 40px; height: 40px; color: var(--bronze-ink); }
.ig-follow__label { font-family: var(--font-serif); font-size: 18px; font-weight: 600; }
.ig-follow__handle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-mute);
}

/* ============================================================
   Internal pages
   ============================================================ */
.page-hero {
  border-bottom: 1px solid var(--line);
  padding-block: clamp(28px, 5vw, 52px) clamp(36px, 6vw, 64px);
}
.crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.crumbs a { color: var(--ink-mute); text-decoration: none; border-bottom: 1px solid var(--line); }
.crumbs a:hover { color: var(--navy); }
.crumbs span { margin: 0 8px; color: var(--bronze); }

.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.05;
  max-width: 20ch;
}
.page-hero .lede {
  margin-top: 18px;
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--ink-soft);
  max-width: 56ch;
}

.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-top: 1.8em;
  padding-top: 0.4em;
}
.prose h3 {
  font-size: 19px;
  margin-top: 1.4em;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 6px; }
.prose a { color: var(--navy); text-underline-offset: 2px; }
.prose strong { color: var(--ink); }

/* timeline / history list */
.timeline {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.timeline .t-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bronze-ink);
  padding-top: 2px;
}

/* card list for services / rehab options */
.opt-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.opt {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.opt h3 { font-size: 19px; }
.opt p { font-size: 15px; color: var(--ink-soft); }
.opt .opt__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze-ink);
}
.opt .link-arrow { margin-top: auto; font-size: 14px; }

/* reference list */
.ref-list { list-style: none; padding: 0; }
.ref-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ref-list li:first-child { border-top: 1px solid var(--line); }
.ref-list .ref-kind {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 4px;
}
.ref-list a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--bronze); }
.ref-list .ref-note { color: var(--ink-mute); font-size: 13px; display: block; margin-top: 4px; }

/* video embeds (media page) */
.embed {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--ink);
}
.embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.video-page-grid figcaption {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}
.video-page-grid figure:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 16px); }

.ref-list__placeholder {
  color: var(--ink-mute);
  font-size: 14px;
}
.ref-list__placeholder .ref-kind { color: var(--bronze-ink); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open ul {
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 16px;
  }
  .primary-nav.is-open a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-toggle { display: inline-flex; }
  .site-header__inner { gap: 12px; min-height: 64px; }

  /* phone stays visible as a compact, tap-friendly icon button */
  .header-phone {
    width: 44px;
    min-height: 44px;
    padding: 0;
    gap: 0;
    font-size: 0;
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
  }
  .header-phone__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .header-phone::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
  }
  .header-phone:hover {
    color: var(--navy-deep);
    border-color: var(--bronze);
    background: var(--surface-alt);
  }

  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; max-width: 380px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 320px; }
  .service--primary { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .proof__lead { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .booking__grid { grid-template-columns: 1fr; }
  .contacts__grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .opt-list { grid-template-columns: 1fr; }
  .video-page-grid { grid-template-columns: 1fr; }
  .video-page-grid figure:last-child:nth-child(odd) { max-width: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand { font-size: 16px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand { gap: 9px; }
  .header-actions { gap: 10px; }
  .header-actions .btn { padding: 11px 16px; min-height: 44px; font-size: 14px; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero__media { max-width: 100%; }
  .about__media { max-width: 100%; }
  .services { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .cv-list li { grid-template-columns: 1fr; gap: 4px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .timeline li { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   Legibility pass, 2026-09-01
   The patient audience skews 60+. This block raises the base and
   all reading text, lifts the small-label floor to 12px, and
   tightens a few marginal contrasts. It deliberately overrides
   values set earlier in this file; keep it last so the cascade
   picks it up. Same-specificity overrides only.
   Refs: WCAG 2.1 AA 1.4.3 (contrast 4.5:1), 1.4.4 (resize),
   1.4.12 (text spacing); US National Institute on Aging
   "Making Your Website Senior Friendly" (body >= 16px, prefer
   larger; avoid text below 12px; generous line height).
   ============================================================ */
:root { --bronze-on-warm: #7A4E12; } /* bronze that passes AA on the warm review panel */

body { font-size: 18px; }

/* primary reading text */
.section-head p { font-size: clamp(18px, 1.6vw, 20px); }
.hero .lede,
.page-hero .lede { font-size: clamp(18px, 1.8vw, 20px); }
.hero .credential-line { font-size: clamp(16px, 1.6vw, 18px); }
.service p { font-size: 17px; }
.service__list { font-size: 16px; }
.cv-list li { font-size: 16px; }
.step h3 { font-size: 20px; }
.step p { font-size: 16px; }
.booking__aside ul { font-size: 16px; }
.review p { font-size: 17px; }
.proof__lead p { font-size: 18px; }
.faq summary { font-size: clamp(18px, 2vw, 21px); }
.faq__body p { font-size: 17px; }
.contact-list li { font-size: 17px; }
.contact-note { font-size: 15px; }
.map-frame--placeholder p:not(.map-frame__label) { font-size: 16px; }
.timeline li { font-size: 16px; }
.opt h3 { font-size: 20px; }
.opt p { font-size: 16px; }
.opt .link-arrow { font-size: 15px; }
.prose h3 { font-size: 20px; }
.video-card__title { font-size: 17px; }
.video-page-grid figcaption { font-size: 17px; }
.ref-list__placeholder { font-size: 15px; }
.ref-list .ref-note { font-size: 14px; }
.rating-summary span { font-size: 15px; }

/* controls and navigation */
.btn { font-size: 16px; }
.link-arrow { font-size: 16px; }
.primary-nav a { font-size: 16px; }
.header-phone { font-size: 15px; }

/* small labels: nothing that carries meaning below 12px */
.eyebrow { font-size: 13px; }
.crumbs { font-size: 13px; }
.cred-badges li { font-size: 13px; }
.cred-strip__inner { font-size: 12px; }
.cv-list dt, .cv-list .cv-key { font-size: 12px; }
.stat dt { font-size: 12px; }
.gallery figcaption { font-size: 12px; }
.review footer { font-size: 12px; }
.contact-list .c-key { font-size: 12px; }
.map-frame__label { font-size: 12px; }
.clinic-photo-note { font-size: 12px; }
.fineprint { font-size: 12px; }
.member-list li { font-size: 12px; }
.about__body .caps-label { font-size: 12px; }
.video-card__meta { font-size: 12px; }
.opt .opt__tag { font-size: 12px; }
.ref-list .ref-kind { font-size: 12px; }
.build-credit { font-size: 13px; }
.media-slot span,
.temp-photo figcaption,
.photo-band figcaption { font-size: 12px; }

/* footer a touch larger, lift the legal-line contrast */
.site-footer { font-size: 15px; }
.site-footer__legal { font-size: 13px; color: #A7B6C6; }

/* marginal contrast fix on the warm review panel */
.rating-summary__of { color: var(--bronze-on-warm); }

@media (max-width: 620px) {
  body { font-size: 17px; }
  .header-actions .btn { font-size: 15px; }
  /* keep the hero credential line and the running strip inside a 360px viewport */
  .hero .credential-line { font-size: 15px; }
  .cred-strip__inner { font-size: 11.5px; letter-spacing: 0.05em; }
  .cred-strip__inner span { white-space: normal; }
}
