/* ============================================================
   Hortman Clinics — premium medical aesthetic
   Original visual system, evidence-based palette
   ============================================================ */

:root {
  /* Default palette: Jade & Travertine — drawn from the SZR
     reception (emerald marble wall + warm travertine floor) */
  --paper:    #F6F1E8;   /* warm bone, primary bg */
  --paper-2:  #EDE6D7;   /* cream surface */
  --paper-3:  #E4DCC9;   /* deeper cream divider */
  --ink:      #18221F;   /* near-black with green undertone */
  --ink-2:    #3A4844;
  --muted:    #6E7872;
  --jade:     #1F4A41;   /* clinical jade — primary accent */
  --jade-2:   #2C6A5C;
  --jade-soft:#D6E0DB;
  --bronze:   #A88248;   /* warm bronze — secondary accent */
  --bronze-2: #C39E68;
  --line:     rgba(24, 34, 31, 0.12);
  --line-2:   rgba(24, 34, 31, 0.06);
  --focus:    #2C6A5C;

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rhythm */
  --max:  1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Typography ------------------------------------------------ */
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jade);
}
.eyebrow.on-dark { color: var(--bronze-2); }
.label-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead { font-size: 18px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }

/* Layout helpers -------------------------------------------- */
.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 128px); }
.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--jade);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-bronze { background: var(--bronze); color: var(--paper); }
.btn-bronze:hover { background: var(--ink); }

.icon-arrow {
  width: 14px; height: 14px;
  display: inline-block;
}

/* Top bar / Nav --------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.topbar-utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
}
.topbar-utility .util-left,
.topbar-utility .util-right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 32px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--bronze);
  display: block;
  margin-top: 2px;
  text-align: center;
  border-top: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding: 3px 0;
}
.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
}
.nav-list li { position: relative; }
.nav-list button {
  padding: 10px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.nav-list .caret { font-size: 9px; opacity: 0.6; }
.nav-list button:hover { color: var(--jade); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.lang-toggle button {
  padding: 6px 12px;
  color: var(--muted);
}
.lang-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

/* Mega menu ------------------------------------------------- */
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(24, 34, 31, 0.12);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
  width: min(880px, 92vw);
  border-radius: 4px;
  z-index: 60;
}
.mega h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--ink);
}
.mega p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
.mega-grid a {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0;
  font-weight: 400;
}
.mega-grid a:hover { color: var(--jade); }
.mega-grid a .count {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

/* Hero ------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 80px) clamp(56px, 10vw, 104px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero h1.display {
  font-size: clamp(48px, 6.4vw, 96px);
}
.hero h1 em {
  font-style: italic;
  color: var(--jade);
}
.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.hero-card .who {
  display: flex; gap: 12px; align-items: center;
}
.hero-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bronze);
  flex: none;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .role { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.hero-card .name { font-family: var(--serif); font-size: 18px; font-weight: 400; }

.hero-strip {
  margin-top: clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-strip > div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.hero-strip > div:last-child { border-right: 0; }
.hero-strip .kpi-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--jade);
  display: block;
}
.hero-strip .kpi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 6px;
}

/* Section heading ------------------------------------------ */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.sec-head h2.display { font-size: clamp(32px, 4vw, 56px); }
.sec-head h2 em { font-style: italic; color: var(--jade); }

/* Specialties grid ----------------------------------------- */
.specialties {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.specialty-card {
  background: var(--paper);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  cursor: pointer;
  transition: background .25s ease;
  position: relative;
  text-align: left;
}
.specialty-card:hover { background: var(--paper-2); }
.specialty-card.active { background: var(--ink); color: var(--paper); }
.specialty-card.active .specialty-count,
.specialty-card.active .specialty-desc { color: rgba(246,241,232,0.7); }
.specialty-card.active .specialty-num { color: var(--bronze-2); }
.specialty-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.specialty-icon {
  width: 36px; height: 36px;
  color: var(--jade);
}
.specialty-card.active .specialty-icon { color: var(--bronze-2); }
.specialty-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: auto;
}
.specialty-count { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.specialty-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Specialty detail panel (slides in below grid) ----------- */
.specialty-detail {
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: -1px;
}
.specialty-detail h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  margin: 16px 0 12px;
  line-height: 1.05;
}
.specialty-detail .lead { color: rgba(246,241,232,0.78); font-size: 16px; }
.treatment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
}
.treatment-list button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(246,241,232,0.16);
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0;
  text-align: left;
}
.treatment-list button:hover { color: var(--bronze-2); }
.treatment-list .plus {
  font-family: var(--mono);
  opacity: 0.5;
  font-size: 12px;
}
.specialty-media {
  position: relative;
  overflow: hidden;
}
.specialty-media img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Treatment Journey ---------------------------------------- */
.journey-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.journey-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.journey-media img { width: 100%; height: 100%; object-fit: cover; }
.journey-media .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--paper);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.journey-step {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: start;
  cursor: pointer;
  transition: padding .25s ease;
}
.journey-step .step-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bronze);
  font-weight: 400;
}
.journey-step .step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.journey-step .step-body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .25s ease;
}
.journey-step.open .step-body { max-height: 200px; margin-top: 6px; }
.journey-step .step-toggle {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--muted);
}

/* Doctors --------------------------------------------------- */
.doctors-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.doctor-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.doctor-photo {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
  transition: transform .6s ease, filter .4s ease;
}
.doctor-card:hover .doctor-photo img {
  transform: scale(1.03);
  filter: grayscale(0);
}
.doctor-info { padding: 16px 0 0; }
.doctor-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}
.doctor-spec {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.doctor-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jade);
  font-weight: 500;
}
.verified-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--jade);
  border-radius: 50%;
}
.pending-pill { color: var(--muted); }
.pending-pill::before { background: var(--muted); }

/* Before & After (consent locked) ------------------------- */
.ba-wrap {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ba-wrap h2 { color: var(--paper); }
.ba-wrap h2 em { color: var(--bronze-2); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ba-tile {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2a3530, #3a4641);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246,241,232,0.08);
}
.ba-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 22px);
  pointer-events: none;
}
.ba-tile .lock-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(246,241,232,0.5);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ba-tile .lock-mark svg { width: 22px; height: 22px; }
.ba-tile .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.7);
  display: flex;
  justify-content: space-between;
}
.ba-notice {
  border: 1px solid rgba(196,158,104,0.4);
  background: rgba(168,130,72,0.08);
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(246,241,232,0.86);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
  line-height: 1.6;
}
.ba-notice svg { color: var(--bronze-2); flex: none; margin-top: 2px; }

/* Reviews badge --------------------------------------------- */
.reviews-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.reviews-num {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  color: var(--ink);
  font-weight: 300;
}
.reviews-num small {
  font-size: 22px;
  color: var(--muted);
}
.reviews-stars {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--bronze);
  margin-bottom: 6px;
}
.reviews-source {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.reviews-quotes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reviews-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.45;
  position: relative;
  padding-left: 18px;
}
.reviews-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--bronze);
}
.reviews-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Locations -------------------------------------------------- */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location-card {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.location-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.location-media img { width: 100%; height: 100%; object-fit: cover; }
.location-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--paper);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.location-body { padding: 28px 32px 32px; }
.location-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 4px;
}
.location-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.location-rows {
  display: grid;
  grid-template-columns: 90px 1fr;
  row-gap: 12px;
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--ink-2);
}
.location-rows .label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 2px;
}
.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* CTA band -------------------------------------------------- */
.cta-band {
  background:
    linear-gradient(rgba(24, 34, 31, 0.62), rgba(24, 34, 31, 0.62)),
    url("media/lifestyle-01.webp") center/cover no-repeat;
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  margin: 0 auto 16px;
  max-width: 800px;
}
.cta-band h2 em { color: var(--bronze-2); font-style: italic; }
.cta-band p { max-width: 540px; margin: 0 auto 32px; color: rgba(246,241,232,0.82); }
.cta-band .btn-primary { background: var(--paper); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--bronze-2); color: var(--ink); }
.cta-band .btn-ghost { color: var(--paper); border-color: rgba(246,241,232,0.3); }
.cta-band .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* Footer ---------------------------------------------------- */
.footer {
  background: #0E1614;
  color: rgba(246,241,232,0.7);
  padding: 80px 0 32px;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246,241,232,0.1);
}
.footer h5 {
  color: var(--paper);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--bronze-2); }
.footer-brand .wordmark {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--paper);
  margin-bottom: 16px;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11px;
  color: rgba(246,241,232,0.5);
  letter-spacing: 0.04em;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-meta .licence {
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

/* WhatsApp FAB --------------------------------------------- */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--jade);
  color: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(24,34,31,0.25);
  transition: transform .2s ease, background .2s ease;
}
.fab-btn:hover { transform: translateY(-2px); background: var(--ink); }
.fab-btn.bronze { background: var(--bronze); }
.fab-btn.bronze:hover { background: var(--ink); }
.fab-btn svg { width: 22px; height: 22px; }
.fab-label {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

/* Modal ----------------------------------------------------- */
.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 20, 0.62);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
.modal {
  background: var(--paper);
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: auto;
  position: relative;
  animation: rise .3s ease;
}
.modal.small { width: min(560px, 100%); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  place-items: center;
  z-index: 2;
}
.modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Doctor modal */
.doctor-modal {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.doctor-modal-photo {
  background: var(--paper-2);
  position: relative;
}
.doctor-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-modal-body { padding: 40px 44px; }
.doctor-modal-body h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin: 8px 0 4px;
}
.doctor-modal-body .role {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
}
.cred-list { list-style: none; padding: 0; margin: 24px 0; }
.cred-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.cred-list li:last-child { border-bottom: 1px solid var(--line); }
.cred-list .k {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  width: 100px;
  flex: none;
  padding-top: 2px;
}

/* Booking flow --------------------------------------------- */
.booking {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 600px;
}
.booking-aside {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.booking-aside .wordmark {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.3em;
  margin-bottom: 36px;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-step-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246,241,232,0.1);
  color: rgba(246,241,232,0.5);
  font-size: 13px;
  align-items: center;
}
.booking-step-item.active { color: var(--paper); }
.booking-step-item.done { color: rgba(246,241,232,0.7); }
.booking-step-item .pill {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,232,0.3);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
}
.booking-step-item.active .pill { background: var(--bronze); border-color: var(--bronze); color: var(--ink); }
.booking-step-item.done .pill { background: var(--jade-2); border-color: var(--jade-2); color: var(--paper); }
.booking-foot {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(246,241,232,0.4);
  padding-top: 32px;
}
.booking-main {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
}
.booking-main h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 8px;
}
.booking-main .lead { font-size: 15px; margin-bottom: 28px; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.book-option {
  border: 1px solid var(--line);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all .2s ease;
  text-align: left;
}
.book-option:hover { border-color: var(--ink); }
.book-option.selected {
  border-color: var(--jade);
  background: var(--jade-soft);
}
.book-option .title { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.book-option .sub { font-size: 12px; color: var(--muted); }
.book-option .icon-wrap {
  width: 32px; height: 32px;
  color: var(--jade);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-grid.full { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  border-radius: 0;
  font-family: var(--sans);
}
.field input:focus,
.field textarea:focus,
.field select:focus { outline: 2px solid var(--jade-2); outline-offset: 0; border-color: var(--jade-2); }
.field textarea { resize: vertical; min-height: 90px; }
.field-checkbox {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 12px;
  align-items: flex-start;
}
.field-checkbox input { margin-top: 3px; }
.booking-actions {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 32px;
  gap: 12px;
}
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
  gap: 12px;
}
.booking-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--jade-soft);
  color: var(--jade);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.booking-success h3 { font-size: 36px; }
.summary-card {
  background: var(--paper-2);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  margin-top: 24px;
  text-align: left;
  width: 100%;
  font-size: 13px;
}
.summary-card .k {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* B&A request modal */
.consent-modal { padding: 40px 44px; }
.consent-modal h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 8px;
}
.consent-modal .lead { font-size: 14px; margin-bottom: 24px; }
.consent-modal .compliance-note {
  background: var(--paper-2);
  padding: 14px 16px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
  border-left: 2px solid var(--bronze);
  margin: 20px 0;
}

/* Responsive ------------------------------------------------ */
@media (max-width: 1020px) {
  .specialties { grid-template-columns: repeat(2, 1fr); }
  .doctors-wrap { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-grid, .journey-wrap, .locations, .ba-wrap, .reviews-strip, .footer-top, .sec-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reviews-strip { padding: 24px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip > div:nth-child(2) { border-right: 0; }
  .hero-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .specialty-detail { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .treatment-list { grid-template-columns: 1fr; }
  .topbar-main { grid-template-columns: 1fr auto; }
  .nav-list { display: none; }
  .booking { grid-template-columns: 1fr; }
  .booking-aside { padding: 24px; }
  .booking-steps { flex-direction: row; gap: 4px; overflow-x: auto; }
  .booking-step-item { border-bottom: 0; padding: 8px 0; flex: none; }
  .booking-main { padding: 32px 24px; }
  .doctor-modal { grid-template-columns: 1fr; }
  .doctor-modal-photo { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .specialties { grid-template-columns: 1fr; }
  .doctors-wrap { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .booking-grid, .field-grid { grid-template-columns: 1fr; }
  .topbar-utility .util-left .pipe { display: none; }
  .topbar-utility .util-right { gap: 12px; }
  .reviews-num { font-size: 64px; }
  .doctor-modal-body { padding: 28px 24px; }
  .consent-modal { padding: 28px 24px; }
}

/* small helpers */
.flex { display: flex; }
.gap-12 { gap: 12px; }
.center { align-items: center; }
.between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.muted { color: var(--muted); }
.italic { font-style: italic; }
.pipe { color: var(--line); }

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