/* ============================================================
   Elegance Transgender Clinic — Design System
   Brand: olive-green (grounded, healing) + magenta (identity, affirmation)
   Display: Spectral · Body: Hanken Grotesk
   ============================================================ */

:root {
  /* Brand — olive carries structure, magenta carries identity/affirmation */
  --brand:      oklch(0.47 0.052 122);   /* olive green  ~#5f6b43 */
  --brand-700:  oklch(0.40 0.050 122);   /* ~#4d5638 */
  --brand-800:  oklch(0.32 0.042 121);   /* ~#3a4129 */
  --brand-900:  oklch(0.25 0.034 120);
  --brand-50:   oklch(0.96 0.018 122);   /* pale sage */
  --brand-100:  oklch(0.92 0.030 122);

  --magenta:      oklch(0.56 0.225 350);  /* affirming pink ~#d11a7e */
  --magenta-600:  oklch(0.50 0.225 351);
  --magenta-50:   oklch(0.96 0.028 350);
  --magenta-soft: oklch(0.93 0.055 350);

  --gold:       oklch(0.78 0.090 84);     /* warm highlight ~#c9a96a */
  --gold-soft:  oklch(0.90 0.060 86);

  /* Ink + neutrals (tinted toward brand hue, NOT warm cream) */
  --ink:        oklch(0.24 0.020 120);
  --ink-soft:   oklch(0.40 0.018 120);
  --muted:      oklch(0.55 0.014 120);
  --line:       oklch(0.90 0.012 122);
  --paper:      oklch(0.985 0.006 122);   /* near-white, faint sage */
  --mist:       oklch(0.955 0.012 124);   /* soft sage surface */
  --surface:    oklch(1 0 0);             /* pure white cards */

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-sm: 0 1px 2px rgba(30,33,22,.05), 0 1px 3px rgba(30,33,22,.04);
  --shadow:    0 10px 30px -14px rgba(30,33,22,.22), 0 3px 8px rgba(30,33,22,.05);
  --shadow-lg: 0 36px 70px -32px rgba(30,33,22,.40);
  --shadow-magenta: 0 16px 40px -16px oklch(0.56 0.225 350 / 0.45);

  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1220px;
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-out-quart: cubic-bezier(.165,.84,.44,1);

  /* z-index scale */
  --z-header: 50;
  --z-mega: 55;
  --z-mobile: 60;
  --z-fab: 40;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand); }
:focus-visible { outline: 2.5px solid var(--magenta); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); text-wrap: pretty; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.section { padding: clamp(64px, 9vw, 124px) 0; }
.section--mist { background: var(--mist); }
.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); color: var(--ink-soft); max-width: 62ch; }

/* Section header — used deliberately, not on every block (varied cadence) */
.shead { max-width: 660px; }
.shead--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--magenta); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--magenta); border-radius: 2px; }
.shead h2 { margin-bottom: 16px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s var(--ease-out);
  font-family: var(--font-body); white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--magenta); color: #fff; box-shadow: var(--shadow-magenta); }
.btn--primary:hover { background: var(--magenta-600); color: #fff; transform: translateY(-2px); }
.btn--olive { background: var(--brand); color: #fff; }
.btn--olive:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-50); }
.btn--white { background: #fff; color: var(--brand-800); }
.btn--white:hover { background: var(--brand-50); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Top contact bar ===== */
.topbar { background: var(--brand-800); color: oklch(0.92 0.02 122); font-size: 13.5px; }
.topbar__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 10px 0; }
.topbar a { color: inherit; }
.topbar a:hover { color: #fff; }
.topbar__list { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__list span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__list svg { width: 15px; height: 15px; opacity: .85; }
.topbar__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.35); }
@media (max-width: 760px) {
  .topbar { font-size: 12px; }
  .topbar__list { gap: 14px; }
  .topbar__row { justify-content: center; text-align: center; padding: 8px 0; }
  .topbar__list .topbar__hide-sm { display: none; }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: oklch(0.985 0.006 122 / .9); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.header__row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 18px; }
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img { height: 74px; width: auto; }
@media (max-width: 600px) { .header__logo img { height: 60px; } }

.nav { display: flex; align-items: center; gap: 1px; }
.nav > a, .nav__has > button {
  padding: 10px 13px; font-size: 14.5px; font-weight: 500; color: var(--ink);
  border-radius: 9px; transition: all .15s ease; white-space: nowrap;
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav > a:hover, .nav__has:hover > button { background: var(--brand-50); color: var(--brand-700); }
.nav__has > button svg { width: 14px; height: 14px; transition: transform .25s ease; }
.nav__has:hover > button svg { transform: rotate(180deg); }

/* Mega menu */
.nav__has { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(760px, 86vw); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  opacity: 0; visibility: hidden; transition: all .26s var(--ease-out); z-index: var(--z-mega);
}
.nav__has:hover .mega, .nav__has:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__item { display: flex; gap: 14px; padding: 14px 16px; border-radius: var(--radius); transition: background .18s ease; }
.mega__item:hover { background: var(--brand-50); }
.mega__ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--magenta-50); color: var(--magenta); }
.mega__ico svg { width: 22px; height: 22px; }
.mega__item strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 2px; }
.mega__item span { font-size: 12.8px; color: var(--muted); line-height: 1.45; }

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__menu-btn { display: none; background: var(--brand-50); border: 1px solid var(--line); width: 46px; height: 46px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; color: var(--brand-800); }
.header__menu-btn svg { width: 22px; height: 22px; }

.mobile-menu { position: fixed; inset: 0; background: var(--paper); z-index: var(--z-mobile); padding: 86px 24px 40px; overflow-y: auto; transform: translateX(100%); transition: transform .34s var(--ease-out); }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 20px; right: 20px; background: var(--brand-50); border: 1px solid var(--line); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; color: var(--ink); display: grid; place-items: center; }
.mobile-menu a { display: block; padding: 15px 4px; font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--font-display); }
.mobile-menu .btn { margin-top: 26px; width: 100%; }

@media (max-width: 1140px) { .nav > a, .nav__has > button { padding: 10px 9px; font-size: 14px; } }
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__menu-btn { display: inline-flex; }
  .header__cta .btn--book { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--brand-900); min-height: clamp(560px, 84vh, 760px); display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: url('/assets/gender-affirmation-surgery-in-india-surat.png') right center / cover no-repeat; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(78% 110% at 6% 50%, oklch(0.32 0.042 121 / .96) 0%, oklch(0.32 0.042 121 / .8) 32%, oklch(0.40 0.05 122 / .35) 58%, transparent 76%),
    linear-gradient(104deg, oklch(0.22 0.03 120 / .88) 0%, oklch(0.22 0.03 120 / .5) 42%, transparent 70%);
}
.hero__overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, oklch(0.22 0.03 120 / .6) 100%); }
.hero__inner { position: relative; z-index: 1; padding: clamp(56px, 8vw, 96px) 0; width: 100%; }
.hero__content { color: #fff; max-width: 640px; }
.hero__pill { display: inline-flex; align-items: center; gap: 9px; background: oklch(1 0 0 / .12); border: 1px solid oklch(1 0 0 / .25); padding: 8px 16px; border-radius: 999px; margin-bottom: 24px; backdrop-filter: blur(8px); }
.hero__pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 4px oklch(0.56 0.225 350 / .3); }
.hero__pill span { font-size: 13px; font-weight: 600; color: #fff; }
.hero h1 { color: #fff; margin-bottom: 20px; line-height: 1.04; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__lede { font-size: clamp(1.05rem, 1rem + .5vw, 1.22rem); color: oklch(1 0 0 / .85); margin-bottom: 28px; max-width: 540px; }
.hero__bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 0 0 32px; padding: 0; list-style: none; }
.hero__bullets li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: #fff; font-weight: 500; }
.hero__bullets svg { width: 19px; height: 19px; color: var(--magenta); flex-shrink: 0; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__actions .btn--ghost { color: #fff; border-color: oklch(1 0 0 / .45); background: oklch(1 0 0 / .08); }
.hero__actions .btn--ghost:hover { background: oklch(1 0 0 / .18); border-color: #fff; color: #fff; }
.hero__sig { margin-top: 34px; padding-top: 24px; border-top: 1px solid oklch(1 0 0 / .18); font-family: var(--font-display); font-style: italic; font-size: 16.5px; color: oklch(1 0 0 / .85); max-width: 520px; }
.hero__sig strong { display: block; font-style: normal; font-family: var(--font-body); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; }
.hero__badge { position: absolute; right: clamp(16px, 4vw, 48px); bottom: 32px; background: oklch(1 0 0 / .96); padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px; backdrop-filter: blur(10px); z-index: 2; }
.hero__badge-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--magenta-50); display: grid; place-items: center; color: var(--magenta); }
.hero__badge-icon svg { width: 22px; height: 22px; }
.hero__badge strong { display: block; font-size: 13.5px; color: var(--ink); }
.hero__badge span { font-size: 12px; color: var(--muted); }

@media (max-width: 920px) {
  .hero { min-height: 0; }
  .hero__bg { background-position: 70% top; background-size: 150% auto; }
  .hero__overlay { background: linear-gradient(180deg, oklch(0.22 0.03 120 / .55) 0%, oklch(0.24 0.03 120 / .82) 46%, oklch(0.24 0.03 120 / .96) 72%); }
  .hero__inner { padding-top: 230px; }
  .hero__bullets { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
}

/* ===== Why Elegance (trust + surgeon + stats) ===== */
.why__trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: clamp(48px, 7vw, 84px); }
.trust-card { display: flex; gap: 14px; align-items: flex-start; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-card svg { width: 28px; height: 28px; color: var(--brand); flex-shrink: 0; }
.trust-card strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.trust-card span { font-size: 13px; color: var(--muted); }

.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 70px); align-items: center; }
.about__photo { position: relative; aspect-ratio: 4 / 5; max-width: 440px; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(180deg, var(--brand-50), var(--mist)); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__photo::after { content: ""; position: absolute; inset: auto -16px -16px auto; width: 160px; height: 160px; border: 2px solid var(--magenta); border-radius: var(--radius-xl); z-index: -1; }
.about__photo-card { position: absolute; left: 18px; bottom: 18px; background: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.about__photo-card strong { font-family: var(--font-display); font-size: 27px; color: var(--magenta); line-height: 1; }
.about__photo-card span { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.about__copy h2 { margin: 14px 0 18px; }
.quote { margin: 22px 0; padding: 18px 22px; background: var(--magenta-50); border-radius: var(--radius); font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--brand-800); }
.about__creds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; }
.about__creds li { display: flex; gap: 11px; padding: 14px; background: var(--mist); border-radius: 12px; align-items: flex-start; font-size: 14px; }
.about__creds svg { width: 19px; height: 19px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.about__creds strong { display: block; color: var(--ink); }
.about__creds small { color: var(--muted); font-size: 12.5px; }
@media (max-width: 920px) { .about__grid { grid-template-columns: 1fr; } .about__photo { margin: 0 auto; } .why__trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why__trust { grid-template-columns: 1fr; } .about__creds { grid-template-columns: 1fr; } }

/* Stats band */
.stats { background: var(--brand); color: #fff; }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: clamp(44px,6vw,64px) 0; }
.stats__item { text-align: center; }
.stats__num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); line-height: 1; margin-bottom: 6px; color: var(--gold-soft); }
.stats__label { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: oklch(1 0 0 / .78); }
@media (max-width: 640px) { .stats__row { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ===== Pillars ===== */
.pillars__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pillar { position: relative; padding: clamp(26px, 3vw, 38px); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--brand); opacity: .9; }
.pillar[data-k="facial"]::before { background: var(--magenta); }
.pillar[data-k="body"]::before { background: var(--brand); }
.pillar[data-k="aesthetic"]::before { background: var(--gold); }
.pillar[data-k="wellness"]::before { background: var(--magenta-600); }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); margin-bottom: 18px; }
.pillar__ico svg { width: 28px; height: 28px; }
.pillar[data-k="facial"] .pillar__ico, .pillar[data-k="wellness"] .pillar__ico { background: var(--magenta-50); color: var(--magenta); }
.pillar h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 10px; }
.pillar p { font-size: 14.8px; margin-bottom: 16px; }
.pillar__list { display: grid; gap: 8px; padding: 0; list-style: none; margin: 0 0 20px; }
.pillar__list li { font-size: 14px; color: var(--ink-soft); display: flex; gap: 9px; align-items: center; }
.pillar__list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); flex-shrink: 0; }
.pillar__link { font-weight: 600; font-size: 14px; color: var(--brand-700); display: inline-flex; align-items: center; gap: 7px; }
.pillar__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.pillar:hover .pillar__link svg { transform: translateX(4px); }
@media (max-width: 760px) { .pillars__grid { grid-template-columns: 1fr; } }

/* ===== Procedures slider ===== */
.proc__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.slider { position: relative; }
.slider__viewport { overflow: hidden; padding: 6px 2px; }
.slider__track { display: flex; gap: 22px; transition: transform .6s var(--ease-out-quart); }
.proc-card { flex-shrink: 0; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--brand-700); box-shadow: var(--shadow); display: block; }
.proc-card__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.proc-card:hover .proc-card__img { transform: scale(1.05); }
.proc-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, oklch(0.22 0.03 120 / .35) 65%, oklch(0.20 0.03 120 / .9) 100%); pointer-events: none; }
.proc-card__name { position: absolute; left: 22px; right: 84px; bottom: 24px; margin: 0; z-index: 1; font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; line-height: 1.08; color: #fff; }
.proc-card__go { position: absolute; right: 18px; bottom: 18px; z-index: 1; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: oklch(1 0 0 / .16); border: 1.5px solid oklch(1 0 0 / .55); backdrop-filter: blur(4px); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.proc-card__go svg { width: 20px; height: 20px; }
.proc-card:hover .proc-card__go { background: var(--magenta); border-color: var(--magenta); transform: translateX(3px); }
.slider__controls { display: flex; justify-content: center; gap: 14px; margin-top: 36px; align-items: center; }
.sbtn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface); cursor: pointer; display: grid; place-items: center; transition: all .2s ease; color: var(--ink); }
.sbtn:hover { border-color: var(--magenta); color: var(--magenta); }
.sbtn svg { width: 20px; height: 20px; }
.dots { display: flex; gap: 8px; }
.dots button { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: all .25s ease; }
.dots button.is-active { background: var(--magenta); width: 26px; border-radius: 999px; }

/* ===== Programs ===== */
.programs { background: var(--brand-800); color: #fff; position: relative; isolation: isolate; }
.programs h2 { color: #fff; }
.programs .lede { color: oklch(1 0 0 / .8); }
.programs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.program { padding: 28px; border-radius: var(--radius); background: oklch(1 0 0 / .06); border: 1px solid oklch(1 0 0 / .14); transition: all .3s var(--ease-out); }
.program:hover { background: oklch(1 0 0 / .1); border-color: oklch(1 0 0 / .28); transform: translateY(-4px); }
.program__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 12px; padding: 4px 10px; border: 1px solid oklch(0.78 0.09 84 / .4); border-radius: 999px; }
.program h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.program p { color: oklch(1 0 0 / .76); font-size: 14px; margin: 0; }
@media (max-width: 900px) { .programs__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .programs__grid { grid-template-columns: 1fr; } }

/* ===== Patient stories (reviews + video) ===== */
.stories__layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.stories__videos { display: grid; gap: 16px; }
.video-card { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-card iframe { width: 100%; height: 100%; border: 0; }
.review-slider .slider__track { gap: 20px; }
.review-card { flex-shrink: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); }
.review-card__stars { display: flex; gap: 2px; color: var(--gold); }
.review-card__stars svg { width: 17px; height: 17px; }
.review-card__body { flex: 1; font-size: 15.5px; color: var(--ink-soft); font-family: var(--font-display); font-style: italic; line-height: 1.5; }
.review-card__author { display: flex; gap: 12px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); display: grid; place-items: center; font-weight: 700; }
.review-card__author strong { display: block; font-size: 14px; color: var(--ink); }
.review-card__author span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .stories__layout { grid-template-columns: 1fr; } .stories__videos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stories__videos { grid-template-columns: 1fr; } }

/* ===== Video gallery (dark) ===== */
.videos { background: var(--brand-900); color: #fff; }
.videos h2 { color: #fff; }
.videos .lede { color: oklch(1 0 0 / .8); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.vg-card { display: flex; flex-direction: column; gap: 14px; margin: 0; }
.vg-card__frame { aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); position: relative; transition: transform .35s var(--ease-out); }
.vg-card:hover .vg-card__frame { transform: translateY(-5px); }
.vg-card__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vg-card figcaption strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; line-height: 1.25; letter-spacing: -.01em; }
.vg-card__cat { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 9px; background: oklch(1 0 0 / .08); border: 1px solid oklch(1 0 0 / .2); color: oklch(1 0 0 / .85); }
.vg-card__cat--patient-story { color: var(--magenta); border-color: oklch(0.56 0.225 350 / .5); background: oklch(0.56 0.225 350 / .12); }
.vg-card__cat--education { color: var(--gold-soft); border-color: oklch(0.78 0.09 84 / .5); background: oklch(0.78 0.09 84 / .12); }
.vg-card__cat--clinical-result { color: oklch(0.86 0.05 150); border-color: oklch(0.86 0.05 150 / .4); background: oklch(0.86 0.05 150 / .1); }
@media (max-width: 980px) { .video-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 540px) { .video-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* ===== Before / After gallery ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ba-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .25s ease, transform .3s var(--ease-out); margin: 0; }
.ba-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.ba-card__img { width: 100%; height: auto; display: block; background: var(--mist); }
.ba-card__media { display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 2/1; }
.ba-card__media > div { display: grid; place-items: center; position: relative; background: repeating-linear-gradient(135deg, var(--brand-50) 0 14px, var(--mist) 14px 28px); color: var(--brand-700); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.ba-card__media > div:last-child { background: repeating-linear-gradient(135deg, var(--magenta-soft) 0 14px, var(--magenta-50) 14px 28px); color: var(--magenta-600); }
.ba-card__media > div span { position: absolute; top: 9px; left: 9px; background: oklch(1 0 0 / .9); padding: 3px 8px; border-radius: 5px; font-size: 9.5px; }
.ba-card__body { padding: 18px 20px; }
.ba-card__body strong { display: block; font-size: 15px; color: var(--ink); }
.ba-card__body span { font-size: 12.5px; color: var(--muted); }
.gallery__note { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.gallery__note svg { width: 16px; height: 16px; color: var(--brand); }
@media (max-width: 900px) { .gallery__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ===== Blog / education ===== */
.blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.post { display: flex; flex-direction: column; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: all .28s var(--ease-out); min-height: 220px; overflow: hidden; }
.post__media { display: block; margin: -26px -26px 18px; aspect-ratio: 16/10; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.05); }
.post:hover { border-color: var(--brand-100); box-shadow: var(--shadow); transform: translateY(-4px); }
.post__cat { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--magenta); margin-bottom: 14px; }
.post h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; line-height: 1.2; letter-spacing: -.01em; margin-bottom: auto; color: var(--ink); }
.post__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.post__foot svg { width: 18px; height: 18px; color: var(--brand); }
@media (max-width: 980px) { .blog__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .blog__grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq__aside { position: sticky; top: 100px; align-self: start; }
.faq__aside .card-contact { margin-top: 22px; padding: 20px 22px; background: var(--magenta-50); border-radius: var(--radius); display: flex; gap: 14px; align-items: flex-start; }
.faq__aside .card-contact svg { width: 22px; height: 22px; color: var(--magenta); flex-shrink: 0; margin-top: 2px; }
.faq__aside .card-contact strong { display: block; margin-bottom: 3px; color: var(--ink); }
.faq__aside .card-contact span { font-size: 13.5px; color: var(--ink-soft); }
.faq-locations { display: grid; gap: 12px; margin-top: 16px; }
.faq-loc { padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.faq-loc strong { display: flex; align-items: center; gap: 7px; font-size: 14.5px; color: var(--ink); margin-bottom: 6px; }
.faq-loc strong svg { width: 16px; height: 16px; color: var(--magenta); flex-shrink: 0; }
.faq-loc p { font-size: 13px; color: var(--ink-soft); margin: 0 0 8px; line-height: 1.5; }
.faq-loc a { font-size: 13px; font-weight: 600; color: var(--magenta); display: inline-flex; align-items: center; gap: 6px; }
.faq-loc a svg { width: 14px; height: 14px; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item__btn { width: 100%; padding: 20px 22px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink); text-align: left; }
.faq-item__icon { width: 28px; height: 28px; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); display: grid; place-items: center; flex-shrink: 0; transition: all .25s ease; }
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-item__icon { background: var(--magenta); color: #fff; transform: rotate(45deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.faq-item__body p { padding: 0 22px; color: var(--ink-soft); font-size: 14.8px; margin: 0; }
.faq-item.is-open .faq-item__body { max-height: 420px; }
.faq-item.is-open .faq-item__body p { padding-bottom: 22px; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } .faq__aside { position: static; } }

/* ===== Booking CTA + form ===== */
.book { position: relative; isolation: isolate; overflow: hidden; background: var(--brand); }
.book__bg { position: absolute; inset: 0; z-index: -2; background: url('/assets/services/voice-feminization-surgery-surat.png') center / cover; opacity: .14; filter: saturate(.7); }
.book__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, var(--brand-800), var(--brand-700) 50%, var(--brand)); opacity: .94; }
.book__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 60px); align-items: center; color: #fff; }
.book__copy h2 { color: #fff; margin: 14px 0 16px; }
.book__copy p { color: oklch(1 0 0 / .84); font-size: 1.05rem; margin-bottom: 26px; }
.book__assure { display: grid; gap: 14px; padding: 0; list-style: none; margin: 0; }
.book__assure li { display: flex; gap: 13px; align-items: flex-start; }
.book__assure svg { width: 22px; height: 22px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; }
.book__assure strong { display: block; color: #fff; font-size: 15px; }
.book__assure span { font-size: 13.5px; color: oklch(1 0 0 / .72); }

/* No-form CTA band */
.book__cta { max-width: 720px; margin: 0 auto; text-align: center; color: #fff; }
.book__cta h2 { color: #fff; margin: 12px 0 14px; }
.book__cta p { color: oklch(1 0 0 / .85); font-size: 1.05rem; margin: 0 auto 28px; max-width: 56ch; }
.book__cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.book .btn--ghost { color: #fff; border-color: oklch(1 0 0 / .42); background: oklch(1 0 0 / .08); }
.book .btn--ghost:hover { background: oklch(1 0 0 / .18); border-color: #fff; color: #fff; }

.form { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg); display: grid; gap: 16px; }
.form__head h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; color: var(--ink); margin-bottom: 4px; }
.form__head p { font-size: 13.5px; color: var(--muted); margin: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; display: block; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; font-family: var(--font-body); font-size: 14.5px; background: var(--paper); color: var(--ink); transition: border .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 4px var(--magenta-50); }
.field textarea { resize: vertical; min-height: 80px; }
.field--error input, .field--error select { border-color: oklch(0.55 0.2 25); }
.field__err { color: oklch(0.52 0.2 25); font-size: 12px; margin-top: 5px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__success { padding: 26px; text-align: center; }
.form__success-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; margin: 0 auto 14px; }
.form__success-ico svg { width: 28px; height: 28px; }
.form__success h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.form__success p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.form__fine { font-size: 11.5px; color: var(--muted); text-align: center; margin: 0; display: flex; gap: 6px; align-items: center; justify-content: center; }
.form__fine svg { width: 13px; height: 13px; }
@media (max-width: 900px) { .book__inner { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.footer { background: var(--brand-900); color: oklch(1 0 0 / .72); padding: clamp(56px, 7vw, 84px) 0 0; font-size: 14.5px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: clamp(28px, 3vw, 44px); padding-bottom: 48px; }
.footer__brand img { height: 80px; width: auto; object-fit: contain; background: #fff; padding: 14px 22px; border-radius: 14px; margin-bottom: 20px; }
.footer__brand p { color: oklch(1 0 0 / .66); font-size: 13.5px; max-width: 34ch; margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid oklch(1 0 0 / .3); color: #fff; display: grid; place-items: center; transition: all .2s ease; }
.footer__social a:hover { background: var(--magenta); border-color: var(--magenta); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer h4 a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
.footer h4 a:hover { opacity: .75; }
.footer ul { padding: 0; list-style: none; display: grid; gap: 11px; margin: 0; }
.footer ul a { color: oklch(1 0 0 / .72); font-size: 14px; }
.footer ul a:hover { color: #fff; }
.footer__news { display: flex; gap: 8px; margin-top: 14px; }
.footer__news input { flex: 1; min-width: 0; padding: 11px 13px; border-radius: 10px; border: 1px solid oklch(1 0 0 / .25); background: oklch(1 0 0 / .07); color: #fff; font-size: 13.5px; font-family: var(--font-body); }
.footer__news input::placeholder { color: oklch(1 0 0 / .5); }
.footer__news button { padding: 11px 16px; border-radius: 10px; border: none; background: var(--magenta); color: #fff; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.footer__bar { border-top: 1px solid oklch(1 0 0 / .14); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.8px; color: oklch(1 0 0 / .6); }
.footer__bar nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bar a { color: oklch(1 0 0 / .7); }
.footer__bar a:hover { color: #fff; }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__bar { flex-direction: column; } }

/* ===== Floating actions ===== */
.fab-wa, .fab-call { position: fixed; right: 20px; z-index: var(--z-fab); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .2s ease; }
.fab-wa { bottom: 84px; background: #25D366; }
.fab-call { bottom: 20px; background: var(--magenta); }
.fab-wa:hover, .fab-call:hover { transform: scale(1.08); color: #fff; }
.fab-wa svg { width: 30px; height: 30px; }
.fab-call svg { width: 25px; height: 25px; }

/* ===== Breadcrumb hero (centered, light) — standard inner-page header ===== */
.phero { text-align: center; position: relative; overflow: hidden; padding: clamp(46px, 6.5vw, 88px) 0 clamp(60px, 7vw, 96px);
  background:
    radial-gradient(75% 120% at 50% -20%, oklch(0.42 0.05 122 / .65) 0%, transparent 58%),
    radial-gradient(60% 90% at 100% 0%, oklch(0.30 0.08 350 / .35) 0%, transparent 55%),
    var(--brand-800); }
.phero::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: -1px; height: clamp(34px, 4.5vw, 62px); background: var(--paper); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.phero__inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.phero__crumb { display: inline-flex; gap: 10px; align-items: center; font-family: ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, monospace; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: oklch(0.88 0.02 122 / .72); margin-bottom: 22px; }
.phero__crumb a { color: oklch(0.88 0.02 122 / .72); }
.phero__crumb a:hover { color: #fff; }
.phero__crumb > span:last-child { color: #fff; font-weight: 500; }
.phero__crumb span[aria-hidden] { color: oklch(1 0 0 / .35); font-weight: 400; }
.phero__title { font-size: clamp(2.1rem, 1.35rem + 3vw, 3.4rem); line-height: 1.08; color: oklch(0.97 0.012 122); }
.phero__title em { font-style: italic; color: oklch(0.85 0.075 86); }
.phero__sub { color: oklch(0.88 0.018 122 / .82); font-size: clamp(1.02rem, 1rem + .35vw, 1.18rem); max-width: 62ch; margin: 16px auto 0; }
.phero__badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 10px 20px; background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: 999px; font-size: 14px; color: var(--ink-soft); }
.phero__badge svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.phero__badge strong { color: var(--ink); font-weight: 700; }
@media (max-width: 600px) { .phero__badge { font-size: 12.5px; padding: 9px 15px; line-height: 1.4; } }

/* ===== Page hero (inner pages) ===== */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--brand-900); color: #fff; padding: clamp(52px, 7vw, 88px) 0 clamp(44px, 6vw, 68px); }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-position: right center; background-size: cover; background-repeat: no-repeat; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(75% 120% at 8% 50%, oklch(0.32 0.042 121 / .95) 0%, oklch(0.32 0.042 121 / .82) 34%, oklch(0.40 0.05 122 / .35) 62%, transparent 80%),
    linear-gradient(104deg, oklch(0.22 0.03 120 / .9) 0%, oklch(0.22 0.03 120 / .55) 42%, oklch(0.22 0.03 120 / .12) 72%, transparent 88%);
}
.page-hero__inner { max-width: 880px; }
@media (max-width: 900px) {
  .page-hero__bg { background-position: 70% center; }
  .page-hero__overlay { background: linear-gradient(180deg, oklch(0.22 0.03 120 / .82) 0%, oklch(0.24 0.03 120 / .9) 55%, oklch(0.24 0.03 120 / .95) 100%); }
}
.page-hero h1 { color: #fff; margin: 8px 0 16px; line-height: 1.06; }
.page-hero p { color: oklch(1 0 0 / .82); font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); max-width: 60ch; margin-bottom: 26px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero__actions .btn--ghost { color: #fff; border-color: oklch(1 0 0 / .4); background: oklch(1 0 0 / .07); }
.page-hero__actions .btn--ghost:hover { background: oklch(1 0 0 / .16); border-color: #fff; color: #fff; }
.breadcrumb { font-size: 13px; color: oklch(1 0 0 / .65); display: flex; gap: 9px; align-items: center; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: #fff; }

/* ===== Checklist ===== */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; padding: 0; list-style: none; margin: 0; max-width: 880px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: var(--ink-soft); font-weight: 500; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.checklist svg { width: 20px; height: 20px; color: var(--magenta); flex-shrink: 0; }
@media (max-width: 680px) { .checklist { grid-template-columns: 1fr; } }

/* ===== Centre cards ===== */
.centre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.centre-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .25s ease, transform .3s var(--ease-out); }
.centre-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.centre-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.centre-card__body { padding: 22px 24px; }
.centre-card__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; margin-bottom: 8px; }
.centre-card__body p { font-size: 14.5px; margin-bottom: 14px; }
.centre-card__link { font-weight: 600; font-size: 14px; color: var(--magenta); display: inline-flex; align-items: center; gap: 7px; }
.centre-card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.centre-card:hover .centre-card__link svg { transform: translateX(4px); }
@media (max-width: 700px) { .centre-grid { grid-template-columns: 1fr; } }

/* ===== Expect blocks ===== */
.expect { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.expect__item { padding: 26px; background: var(--mist); border-radius: var(--radius); border: 1px solid var(--line); }
.expect__item h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin-bottom: 10px; color: var(--brand-800); }
.expect__item p { font-size: 14.6px; margin: 0; }
@media (max-width: 820px) { .expect { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE (redesigned)
   ============================================================ */
.breadcrumb--dark { color: var(--muted); margin-bottom: 16px; }
.breadcrumb--dark a { color: var(--brand-700); }
.breadcrumb--dark a:hover { color: var(--magenta); }

/* Editorial hero */
.ab-hero { background: linear-gradient(180deg, var(--mist), var(--paper)); padding: clamp(36px,5vw,70px) 0 clamp(48px,7vw,96px); overflow: hidden; }
.ab-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px,5vw,68px); align-items: center; }
.ab-hero__copy h1 { margin: 12px 0 18px; line-height: 1.04; }
.ab-hero__copy h1 em { font-style: italic; color: var(--magenta); }
.ab-hero__copy > p { font-size: clamp(1.05rem,1rem+.45vw,1.22rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: 28px; }
.ab-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-hero__media { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.ab-hero__shape { position: absolute; top: 22px; right: -20px; width: 80%; height: 90%; background: var(--brand-50); border: 2px solid var(--magenta); border-radius: 30px 30px 120px 30px; z-index: 0; }
.ab-hero__media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 46/56; object-fit: cover; object-position: center top; border-radius: 30px 30px 120px 30px; box-shadow: var(--shadow-lg); }
.ab-hero__badge { position: absolute; left: -16px; bottom: 28px; z-index: 2; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 13px 17px; display: flex; align-items: center; gap: 12px; }
.ab-hero__badge strong { font-family: var(--font-display); font-size: 30px; color: var(--magenta); line-height: 1; }
.ab-hero__badge span { font-size: 11.5px; color: var(--muted); }
@media (max-width: 900px) {
  .ab-hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .ab-hero__media { order: -1; max-width: 320px; }
}

/* Contact page */
.contact-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px,2.5vw,30px) clamp(22px,3vw,32px); box-shadow: var(--shadow); align-self: center; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--magenta-50); color: var(--magenta); display: grid; place-items: center; flex-shrink: 0; }
.contact-row__ico svg { width: 22px; height: 22px; }
.contact-row > div strong { display: block; font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.contact-row > div a, .contact-row > div span { display: block; font-size: 15.5px; color: var(--ink); font-weight: 600; }
.contact-row > div a:hover { color: var(--magenta); }

/* Visiting hospitals directory */
.hosp-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 258px), 1fr)); gap: 12px; margin-top: 16px; }
.hosp-list__item { display: flex; gap: 12px; align-items: center; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; font-size: 14.5px; font-weight: 500; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.hosp-list__item:hover { border-color: var(--brand-100); box-shadow: var(--shadow-sm); }
.hosp-list__ico { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.hosp-list__ico svg { width: 19px; height: 19px; }

/* OPD centres grid */
.opd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(152px, 1fr)); gap: 12px; margin-top: 32px; }
.opd-chip { display: flex; gap: 10px; align-items: center; justify-content: center; padding: 16px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; font-size: 15px; font-weight: 600; color: var(--ink); transition: all .25s var(--ease-out); }
.opd-chip:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-3px); box-shadow: var(--shadow); }
.opd-chip__ico { width: 30px; height: 30px; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); display: grid; place-items: center; flex-shrink: 0; transition: all .25s ease; }
.opd-chip__ico svg { width: 16px; height: 16px; }
.opd-chip:hover .opd-chip__ico { background: var(--magenta); color: #fff; }

/* Helpful links */
.qlinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.qlink { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: all .25s var(--ease-out); }
.qlink:hover { border-color: var(--magenta); box-shadow: var(--shadow); transform: translateY(-3px); }
.qlink__ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--magenta-50); color: var(--magenta); display: grid; place-items: center; }
.qlink__ico svg { width: 22px; height: 22px; }
.qlink__text { flex: 1; min-width: 0; }
.qlink__text strong { display: block; font-size: 15px; color: var(--ink); }
.qlink__text span { font-size: 13px; color: var(--muted); }
.qlink__arrow { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; transition: transform .2s ease, color .2s ease; }
.qlink:hover .qlink__arrow { color: var(--magenta); transform: translateX(3px); }
@media (max-width: 860px) { .qlinks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .qlinks { grid-template-columns: 1fr; } }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

.hosp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hosp-card { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.hosp-card svg { width: 24px; height: 24px; color: var(--brand); margin-bottom: 12px; }
.hosp-card strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.hosp-card span { font-size: 13.5px; color: var(--muted); }
.hosp-sub { margin: 28px 0 0; font-weight: 600; color: var(--ink); }
@media (max-width: 760px) { .hosp-grid { grid-template-columns: 1fr; } }

/* Programs page */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prog-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prog-card__tag { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--magenta); background: var(--magenta-50); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.prog-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; letter-spacing: -.01em; margin-bottom: 10px; }
.prog-card p { font-size: 14.6px; margin: 0 0 18px; flex: 1; }
.prog-card__link { font-weight: 600; font-size: 14px; color: var(--magenta); display: inline-flex; align-items: center; gap: 7px; }
.prog-card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.prog-card:hover .prog-card__link svg { transform: translateX(4px); }
@media (max-width: 920px) { .prog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .prog-grid { grid-template-columns: 1fr; } }

/* Grouped service cards (image + procedure list) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-group { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); display: flex; flex-direction: column; }
.svc-group:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-group img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; background: var(--mist); flex-shrink: 0; }
.svc-group__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-group__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; letter-spacing: -.01em; margin-bottom: 12px; }
.svc-group .pillar__list { margin: 0; gap: 9px; }
.svc-group .pillar__list li { font-size: 14px; }
.svc-group__link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 16px; font-weight: 600; font-size: 14px; color: var(--magenta); align-self: flex-start; }
.svc-group__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.svc-group:hover .svc-group__link svg { transform: translateX(4px); }
@media (max-width: 960px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* Facial procedure cards */
.fac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fac-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.fac-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fac-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--mist); }
.fac-card__body { padding: 18px 20px; }
.fac-card__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: 7px; }
.fac-card__body p { font-size: 13.8px; margin: 0; }
@media (max-width: 980px) { .fac-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fac-grid { grid-template-columns: 1fr; } }

/* Patient Education grid (reuses .pillar cards) */
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.edu-grid .pillar__list { margin-bottom: 20px; }
@media (max-width: 960px) { .edu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .edu-grid { grid-template-columns: 1fr; } }

/* Counters ribbon */
.ab-counters { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ab-counters__row { display: grid; grid-template-columns: repeat(4,1fr); }
.ab-counter { text-align: center; padding: clamp(24px,3vw,38px) 16px; position: relative; }
.ab-counter + .ab-counter::before { content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 1px; background: var(--line); }
.ab-counter__n { display: block; font-family: var(--font-display); font-size: clamp(2.2rem,1.5rem+2.2vw,3.1rem); color: var(--magenta); line-height: 1; }
.ab-counter__l { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }
@media (max-width: 620px) { .ab-counters__row { grid-template-columns: 1fr 1fr; } .ab-counter:nth-child(odd)::before { display: none; } .ab-counter:nth-child(3), .ab-counter:nth-child(4) { border-top: 1px solid var(--line); } }

/* Story */
.ab-story { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(26px,4vw,58px); align-items: start; margin-bottom: clamp(38px,5vw,60px); }
.ab-story__lead h2 { margin-top: 12px; }
.ab-story__body p { font-size: 16px; }
.ab-creds { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ab-creds li { display: flex; gap: 11px; padding: 14px; background: var(--mist); border-radius: 12px; align-items: flex-start; }
.ab-creds svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.ab-creds strong { display: block; font-size: 14.5px; }
.ab-creds small { color: var(--muted); font-size: 12.5px; }
@media (max-width: 820px) { .ab-story { grid-template-columns: 1fr; gap: 8px; } }
@media (max-width: 460px) { .ab-creds { grid-template-columns: 1fr; } }

/* Vision + Commitment */
.ab-vc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ab-vc__card { padding: clamp(28px,3.5vw,46px); border-radius: var(--radius-lg); }
.ab-vc__card h2 { font-size: clamp(1.6rem,1.2rem+1.4vw,2.1rem); margin: 12px 0 14px; }
.ab-vc__card p { margin: 0; }
.ab-vc__card--vision { background: linear-gradient(150deg, var(--brand-700), var(--brand)); color: #fff; box-shadow: var(--shadow); }
.ab-vc__card--vision .kicker { color: var(--gold-soft); }
.ab-vc__card--vision .kicker::before { background: var(--gold-soft); }
.ab-vc__card--vision h2 { color: #fff; }
.ab-vc__card--vision p { color: oklch(1 0 0 / .86); }
.ab-vc__card--commit { background: var(--surface); border: 1px solid var(--line); }
.ab-vc__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.ab-vc__list li { display: flex; gap: 11px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.ab-vc__list svg { width: 20px; height: 20px; color: var(--magenta); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 780px) { .ab-vc { grid-template-columns: 1fr; } }

/* Breakout quote */
/* Meet the surgeon: bio + quote combined into one balanced section */
/* Meet the surgeon: full portrait left, content + quote right */
.ab-meet { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px,4vw,60px); align-items: start; }
.ab-meet__photo { position: sticky; top: 96px; align-self: start; z-index: 0; }
.ab-meet__photo::after { content: ""; position: absolute; right: -16px; bottom: -16px; width: 72%; height: 64%; border-radius: 26px; background: var(--brand-50); border: 1px solid var(--brand-100); z-index: -1; }
.ab-meet__photo img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 26px; box-shadow: 0 24px 56px oklch(0.25 0.03 120 / .26); }
.ab-meet__content .kicker { display: block; }
.ab-meet__content h2 { margin: 12px 0 16px; }
.ab-meet__content > p { font-size: 16px; line-height: 1.68; }
.ab-meet__content .ab-creds { margin-top: 24px; }
.ab-meet__quote { margin: clamp(26px,3vw,36px) 0 0; padding: clamp(24px,2.8vw,34px); border-radius: 18px; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% 0%, oklch(0.45 0.06 122 / .5) 0%, transparent 60%),
    linear-gradient(150deg, var(--brand-800), var(--brand));
  color: #fff; box-shadow: 0 16px 40px oklch(0.25 0.03 120 / .26); }
.ab-meet__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: oklch(1 0 0 / .12); border: 1px solid oklch(1 0 0 / .16); margin-bottom: 14px; }
.ab-meet__icon svg { width: 24px; height: 24px; color: var(--gold-soft); }
.ab-meet__quote blockquote { margin: 0 0 18px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.18rem,1rem+.8vw,1.55rem); line-height: 1.4; color: #fff; }
.ab-meet__quote figcaption { display: flex; flex-direction: column; gap: 3px; padding-top: 16px; border-top: 1px solid oklch(1 0 0 / .16); }
.ab-meet__quote figcaption strong { font-family: var(--font-display); font-size: 16.5px; color: #fff; font-weight: 600; }
.ab-meet__quote figcaption small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
@media (max-width: 860px) { .ab-meet { grid-template-columns: 1fr; gap: 30px; } .ab-meet__photo { max-width: 380px; } .ab-meet__photo::after { display: none; } }

/* Why-trust editorial list */
.ab-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(32px,4vw,56px); margin-top: 14px; }
.ab-feature { display: flex; gap: 16px; padding: 28px 0; border-top: 1px solid var(--line); }
.ab-feature svg { width: 30px; height: 30px; color: var(--magenta); flex-shrink: 0; }
.ab-feature h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 7px; }
.ab-feature p { font-size: 14.6px; margin: 0; }
@media (max-width: 760px) { .ab-features { grid-template-columns: 1fr; } }

/* Skill pills */
.ab-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 860px; margin: 38px auto 0; }
.ab-pills span { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: all .2s var(--ease-out); }
.ab-pills span:hover { border-color: var(--magenta); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ab-pills svg { width: 18px; height: 18px; color: var(--magenta); }

/* Journey — numbered editorial steps */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.jstep { position: relative; overflow: hidden; padding: 30px 28px 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.jstep::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--magenta), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.jstep:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.jstep:hover::before { transform: scaleX(1); }
.jstep__num { position: absolute; top: 6px; right: 18px; z-index: 0; font-family: var(--font-display); font-weight: 500; font-size: 5.2rem; line-height: 1; color: var(--brand-50); pointer-events: none; }
.jstep__ico { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--magenta-50); color: var(--magenta); margin-bottom: 18px; }
.jstep__ico svg { width: 26px; height: 26px; }
.jstep h3 { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; letter-spacing: -.01em; margin-bottom: 10px; }
.jstep p { position: relative; z-index: 1; font-size: 14.6px; margin: 0; }
@media (max-width: 820px) { .journey { grid-template-columns: 1fr; } .jstep__num { font-size: 4.4rem; } }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .slider__track { transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .08s !important; }
}

/* ============================================================
   Blog — index grid, cards, single post, prose
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--brand-50);
  overflow: hidden;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .4s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.03); }
.blog-card__ph { display: grid; place-items: center; height: 100%; color: var(--brand); font-family: "Spectral", serif; font-size: 18px; opacity: .5; }
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: 12.5px; color: var(--muted); display: flex; gap: 8px; margin-bottom: 10px; }
.blog-card__title { font-size: 20px; line-height: 1.3; margin: 0 0 10px; }
.blog-card__title a { color: var(--ink); }
.blog-card__title a:hover { color: var(--magenta); }
.blog-card__excerpt { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 16px; }
.blog-card__more { margin-top: auto; font-weight: 700; color: var(--magenta); display: inline-flex; align-items: center; gap: 7px; }
.blog-card__more svg { width: 16px; height: 16px; }

.blog-pager { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 44px; }
.blog-pager a, .blog-pager span { font-size: 14px; font-weight: 600; }
.blog-pager a { color: var(--magenta); }
.blog-pager .is-off { color: var(--muted); opacity: .5; }
.blog-pager__count { color: var(--muted); }

/* ---- Single post ---- */
.blog-single__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 8px;
  align-items: start;
}
@media (max-width: 900px) { .blog-single__wrap { grid-template-columns: 1fr; gap: 32px; } }
.blog-single__meta { font-size: 13px; color: var(--muted); display: flex; gap: 8px; margin-bottom: 18px; }
.blog-single__hero { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.blog-single__hero img { width: 100%; height: auto; display: block; }

.blog-single__side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) { .blog-single__side { position: static; } }
.blog-side-card { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.blog-side-card h3 { font-size: 18px; margin: 0 0 10px; }
.blog-side-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; }
.blog-side-list { list-style: none; margin: 0; padding: 0; }
.blog-side-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.blog-side-list li:last-child { border-bottom: none; }
.blog-side-list a { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.blog-side-list a:hover { color: var(--magenta); }

/* ---- Prose (rich content from the editor) ---- */
.prose { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-family: "Spectral", serif; font-size: 27px; line-height: 1.25; color: var(--ink); margin: 1.8em 0 .5em; }
.prose h3 { font-size: 21px; color: var(--ink); margin: 1.5em 0 .4em; }
.prose h4 { font-size: 18px; color: var(--ink); margin: 1.4em 0 .4em; }
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin: 0 0 .5em; }
.prose a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.4em 0; }
.prose figure { margin: 1.6em 0; }
.prose blockquote { margin: 1.6em 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--magenta); color: var(--ink); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 15.5px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--brand-50); }

/* ---- Blog internal links block ---- */
.blog-ilinks { margin-top: 36px; padding: 24px 26px; background: var(--brand-50); border: 1px solid var(--line); border-radius: var(--radius); }
.blog-ilinks h3 { font-size: 17px; margin: 0 0 14px; }
.blog-ilinks ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 560px) { .blog-ilinks ul { grid-template-columns: 1fr; } }
.blog-ilinks a { color: var(--brand-700); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.blog-ilinks a::before { content: "›"; color: var(--magenta); font-weight: 700; }
.blog-ilinks a:hover { color: var(--magenta); }

/* ---- Author / social box (blog) ---- */
.author-box { display: flex; gap: 22px; align-items: flex-start; margin-top: 36px; padding: 26px; background: var(--card, #fff); border: 1px solid var(--line); border-top: 3px solid var(--magenta); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.author-box__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 1px solid var(--line); background: var(--brand-50); }
.author-box__kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.author-box__name { font-size: 19px; margin: 4px 0 8px; color: var(--magenta); }
.author-box__name span { color: var(--ink); font-weight: 600; font-size: 15px; }
.author-box__bio { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.6; }
.author-box__social { font-size: 14px; display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; }
.author-box__social > span { color: var(--ink); font-weight: 700; }
.author-box__social a { color: var(--brand-700); font-weight: 600; }
.author-box__social a:not(:last-child)::after { content: " |"; color: var(--line); margin-left: 12px; }
.author-box__social a:hover { color: var(--magenta); }
@media (max-width: 560px) { .author-box { flex-direction: column; gap: 16px; } }

/* ---- Treatment detail meta ---- */
.tmeta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.tmeta__pill { background: var(--brand-50); color: var(--brand-700); font-weight: 700; font-size: 12.5px; padding: 5px 12px; border-radius: 999px; }

/* ============================================================
   Treatment detail page — TOC + content + rich sidebar
   ============================================================ */
.tdetail__wrap {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  max-width: 1040px;
  padding-top: 44px;
  padding-bottom: 8px;
}
@media (max-width: 980px) { .tdetail__wrap { grid-template-columns: 1fr; gap: 28px; } .tdetail__toc { display: none; } }

/* Booking band — brand gradient, replaces the old right sidebar */
.tcta { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.55fr 1fr; gap: 38px; align-items: center;
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 60%, var(--brand) 130%); color: #fff;
  border-radius: var(--radius-xl); padding: 42px 46px; box-shadow: var(--shadow-lg); }
@media (max-width: 820px) { .tcta { grid-template-columns: 1fr; gap: 26px; padding: 32px 26px; } }
.tcta__glow { position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.78 0.09 84 / .28), transparent 70%); pointer-events: none; }
.tcta__copy { position: relative; z-index: 1; }
.tcta__kicker { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--gold-soft); margin-bottom: 10px; }
.tcta h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin: 0 0 12px; }
.tcta p { color: rgba(255,255,255,.82); margin: 0 0 22px; max-width: 46ch; }
.tcta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--white { background: #fff; color: var(--brand-800); }
.btn--white:hover { background: var(--gold-soft); color: var(--brand-900); }
.btn--ghost-light { background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.tcta__addr { position: relative; z-index: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.tcta__addr-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.12); color: var(--gold-soft); display: grid; place-items: center; margin-bottom: 8px; }
.tcta__addr strong { font-size: 15.5px; }
.tcta__addr span { font-size: 13.5px; color: rgba(255,255,255,.78); line-height: 1.5; }
.tcta__addr a { color: var(--gold-soft); font-weight: 700; font-size: 14px; margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; }
.tcta__addr a svg { width: 14px; height: 14px; }

/* On this page */
.tdetail__toc { position: sticky; top: 96px; }
.toc__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.toc ul { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc li a { display: block; padding: 7px 0 7px 16px; margin-left: -2px; border-left: 2px solid transparent; color: var(--muted); font-size: 13.5px; line-height: 1.4; transition: color .15s, border-color .15s; }
.toc li a:hover { color: var(--ink); }
.toc li a.is-active { color: var(--brand-700); border-left-color: var(--magenta); font-weight: 700; }

/* Content dividers */
.tdetail__hero { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tdetail__hero img { width: 100%; height: auto; display: block; }
.prose--divided h2 { font-family: "Spectral", serif; font-weight: 500; }
.prose--divided h2:not(:first-child) { border-top: 1px solid var(--line); padding-top: 1.7em; margin-top: 1.9em; }
.prose ul:not(.tside-list) { list-style: none; padding-left: 0; }
.prose ul:not(.tside-list) > li { position: relative; padding-left: 30px; margin-bottom: .6em; }
.prose ul:not(.tside-list) > li::before { content: "✓"; position: absolute; left: 4px; top: 1px; color: var(--magenta); font-weight: 700; }

/* Sidebar */
.tdetail__side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.tside-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.tside-card h3 { font-size: 17px; margin: 0 0 12px; }
.tside-card--cta { background: var(--mist); border-top: 3px solid var(--magenta); }
.tside-card--cta p { font-size: 14px; color: var(--ink-soft); margin: 0 0 14px; }
.tside-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.tside-contact a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: var(--brand-700); }
.tside-contact a:hover { color: var(--magenta); }
.tside-contact svg { width: 17px; height: 17px; }
.tside-address { display: flex; gap: 11px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.tside-address__ico { color: var(--magenta); flex-shrink: 0; }
.tside-address div { display: flex; flex-direction: column; gap: 2px; font-size: 13px; color: var(--ink-soft); }
.tside-address strong { color: var(--ink); font-size: 14px; }
.tside-address a { color: var(--brand-700); font-weight: 600; margin-top: 2px; }
.tside-list { list-style: none; margin: 0; padding: 0; }
.tside-list li { border-bottom: 1px solid var(--line); }
.tside-list li:last-child { border-bottom: none; }
.tside-list a { display: flex; align-items: center; gap: 8px; padding: 10px 0; color: var(--ink); font-weight: 600; font-size: 14px; }
.tside-list a svg { width: 14px; height: 14px; color: var(--magenta); flex-shrink: 0; }
.tside-list a:hover { color: var(--magenta); }
.tside-blog { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); color: var(--ink); }
.tside-card .tside-blog:first-of-type { border-top: none; }
.tside-blog img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.tside-blog span { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.tside-blog:hover span { color: var(--magenta); }

/* Related treatments grid */
.trel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .trel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trel-grid { grid-template-columns: 1fr; } }
.trel-card { display: flex; flex-direction: column; background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.trel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trel-card__media { aspect-ratio: 16/10; background: var(--brand-50); display: block; overflow: hidden; }
.trel-card__media img { width: 100%; height: 100%; object-fit: cover; }
.trel-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.trel-card__body strong { font-size: 16px; color: var(--ink); }
.trel-card__body > span { font-size: 13.5px; color: var(--ink-soft); }
.trel-card__go { margin-top: auto; color: var(--magenta); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.trel-card__go svg { width: 15px; height: 15px; }

/* Linked procedure items in pillar group cards */
.pillar__list li a { color: var(--ink); text-decoration: none; }
.pillar__list li a:hover { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Conditions tabs ---- */
.ctabs__nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.ctab { background: var(--card,#fff); border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-family: inherit; font-weight: 700; font-size: 14.5px; color: var(--ink-soft); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all .15s; }
.ctab span { background: var(--brand-50); color: var(--brand-700); font-size: 12px; border-radius: 999px; padding: 1px 8px; }
.ctab:hover { border-color: var(--brand); color: var(--ink); }
.ctab.is-active { background: var(--brand-800); color: #fff; border-color: var(--brand-800); }
.ctab.is-active span { background: rgba(255,255,255,.2); color: #fff; }
.ctabs__panel { display: none; }
.ctabs__panel.is-active { display: block; animation: ctab-in .25s ease; }
@keyframes ctab-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Mobile menu: Services group label + sub-items */
.mobile-menu__label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-top: 8px; }
.mobile-menu__sub { padding-left: 16px !important; font-size: 15px !important; opacity: .9; }

/* ---- Success Stories ---- */
.ssfilter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .story-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .story-grid { grid-template-columns: 1fr; } }
.story-card { background: var(--card,#fff); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.story-card__media, .story-card__video { display: block; aspect-ratio: 3/2; overflow: hidden; background: var(--brand-50); position: relative; }
.story-card__media img, .story-card__video img { width: 100%; height: 100%; object-fit: cover; }
.story-card__video .story-card__play { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(30,33,22,.32); }
.story-card__video .story-card__play svg { width: 46px; height: 46px; }
.story-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.story-card__body h3 { font-size: 17px; margin: 0; }
.story-card__tag { align-self: flex-start; background: var(--brand-50); color: var(--brand-700); font-weight: 700; font-size: 12px; padding: 3px 10px; border-radius: 999px; }
.story-card__meta { font-size: 13.5px; color: var(--muted); margin: 0; }
.story-card__body--quote { padding: 24px; }
.story-card__stars { color: var(--gold); display: flex; gap: 2px; }
.story-card__stars svg { width: 16px; height: 16px; }
.story-card__body--quote blockquote { margin: 4px 0 8px; font-size: 15.5px; line-height: 1.6; color: var(--ink); font-style: italic; }
.story-card__body--quote cite { font-style: normal; font-weight: 700; color: var(--brand-700); font-size: 14px; }

/* Before & after composite images must show fully (no cropping) */
.story-card--before-after .story-card__media { aspect-ratio: auto; }
.story-card--before-after .story-card__media img { height: auto; }

/* Success Stories: separate sections + video iframe */
.ss-section { margin-bottom: 52px; }
.ss-section:last-of-type { margin-bottom: 0; }
.ss-section .shead { margin-bottom: 26px; }
.story-embed { position: relative; aspect-ratio: 16 / 9; background: #000; }
.story-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Safeguard: inline icons inside muted text render at text size, never huge */
.muted > svg { width: 1em; height: 1em; vertical-align: -0.15em; flex: none; }

/* Aftercare portal */
.portal { display: grid; place-items: center; }
.portal__card { background: var(--card,#fff); border: 1px solid var(--line); border-top: 3px solid var(--magenta); border-radius: var(--radius-lg); padding: 38px 36px; max-width: 460px; width: 100%; box-shadow: var(--shadow); text-align: center; }
.portal__ico { width: 56px; height: 56px; border-radius: 14px; background: #fde7f1; color: var(--magenta); display: grid; place-items: center; margin: 0 auto 16px; }
.portal__card h2 { margin: 0 0 8px; font-size: 22px; }
.portal__card > p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 20px; }
.portal__form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.portal__form label { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; flex-direction: column; gap: 6px; }
.portal__form input { padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14.5px; }
.portal__form input:focus { outline: none; border-color: var(--magenta); }
.portal__note { margin: 4px 0 0; font-size: 13px; }
.portal__help { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; align-items: center; }
.portal__help .btn { width: 100%; justify-content: center; }

/* ---- Our Surgeons ---- */
.surgeon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .surgeon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .surgeon-grid { grid-template-columns: 1fr; } }
.surgeon-card { display: flex; flex-direction: column; background: var(--card,#fff); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.surgeon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.surgeon-card__photo { position: relative; aspect-ratio: 1/1; background: var(--brand-50); display: block; overflow: hidden; }
.surgeon-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.surgeon-card__ph { display: grid; place-items: center; height: 100%; color: var(--brand); opacity: .4; }
.surgeon-card__ph svg { width: 48px; height: 48px; }
.surgeon-card__badge { position: absolute; top: 12px; left: 12px; background: var(--magenta); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.surgeon-card__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.surgeon-card__body strong { font-size: 18px; color: var(--ink); }
.surgeon-card__role { color: var(--magenta); font-weight: 700; font-size: 13.5px; }
.surgeon-card__cred { color: var(--muted); font-size: 13px; }
.surgeon-card__go { margin-top: auto; padding-top: 10px; color: var(--brand-700); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.surgeon-card__go svg { width: 15px; height: 15px; }
/* profile */
.surgeon-wrap { display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 44px; align-items: start; padding-top: 44px; }
@media (max-width: 860px) { .surgeon-wrap { grid-template-columns: 1fr; gap: 28px; } }
.surgeon-aside { position: sticky; top: 96px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
@media (max-width: 860px) { .surgeon-aside { position: static; } }
.surgeon-aside__photo { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--brand-50); margin-bottom: 16px; }
.surgeon-aside__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.surgeon-aside__cred { font-weight: 700; color: var(--ink); font-size: 14px; margin: 0 0 8px; }
.surgeon-aside__exp { color: var(--brand-700); font-size: 13.5px; display: inline-flex; align-items: center; gap: 7px; margin: 0 0 14px; }
.surgeon-aside__exp svg { width: 16px; height: 16px; }
.surgeon-block { margin-top: 28px; }
.surgeon-block h2 { font-size: 20px; margin: 0 0 14px; }
.surgeon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.surgeon-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.surgeon-list li svg { width: 18px; height: 18px; color: var(--magenta); flex: none; margin-top: 2px; }

/* Compact nav dropdown (About) */
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 210px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s var(--ease-out); z-index: var(--z-mega);
}
.nav__has:hover .submenu, .nav__has:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { padding: 10px 14px; border-radius: 9px; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.submenu a:hover { background: var(--brand-50); color: var(--brand-700); }

/* OPD centre cards: name + full address + call link */
/* OPD centre cards: name + full address + call link */
.opd-grid--cards { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.opd-chip--full { align-items: flex-start; justify-content: flex-start; text-align: left; padding: 18px; gap: 12px; }
.opd-chip--full:hover { transform: none; border-color: var(--line); color: var(--ink); box-shadow: none; }
.opd-chip--full:hover .opd-chip__ico { background: var(--magenta-50); color: var(--magenta); }
.opd-chip__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1; }
.opd-chip__name { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.opd-chip__addr { font-size: 13px; font-weight: 400; line-height: 1.55; color: var(--ink-60, #5b5b5b); }
.opd-chip__call { font-size: 13px; font-weight: 600; color: var(--magenta); align-self: flex-start; white-space: nowrap; }
.opd-chip__call:hover { text-decoration: underline; }
@media (max-width: 640px) { .opd-grid--cards { grid-template-columns: 1fr; } }