@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #122847;
  --navy-light:  #1A3A5C;
  --gold:        #B8975A;
  --gold-light:  #D4B07A;
  --gold-pale:   #F5EDD8;
  --cream:       #FAF8F4;
  --white:       #FFFFFF;
  --slate:       #4A5568;
  --slate-light: #718096;
  --border:      rgba(184,151,90,0.18);
  --border-light:rgba(11,31,58,0.08);
  --green:       #25D366;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fm: 'DM Mono', monospace;
  --ease: 0.32s cubic-bezier(.4,0,.2,1);
  --mw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--cream); color: var(--navy); line-height: 1.75; overflow-x: hidden; }

/* ── LAYOUT ─────────────────────────────────────── */
.w  { max-width: var(--mw); margin: 0 auto; padding: 0 40px; }
.sp { padding: 96px 0; }
.sp-sm { padding: 64px 0; }
@media (max-width: 640px) { .w { padding: 0 20px; } .sp { padding: 64px 0; } }

/* ── TYPOGRAPHY HELPERS ──────────────────────────── */
.lbl {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.lbl-light { color: rgba(184,151,90,.85); }
.h-display {
  font-family: var(--fd);
  font-weight: 500;
  line-height: 1.14;
  color: var(--navy);
}
.h-display em   { font-style: italic; color: var(--gold); }
.h-display-w    { color: var(--white); }
.h-display-w em { color: var(--gold); font-style: italic; }
.divider { width: 44px; height: 2px; background: var(--gold); margin: 18px 0 30px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fb); font-weight: 500; font-size: 14px;
  letter-spacing: .04em; padding: 14px 28px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--ease);
}
.btn-gold    { background: var(--gold);  color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-navy    { background: var(--navy);  color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-ghost-w { background: transparent; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.28); }
.btn-ghost-w:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-n { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost-n:hover { background: var(--navy); color: var(--white); }
.btn-wa      { background: var(--green); color: var(--white); }
.btn-wa:hover { background: #1dbe5b; }

/* ── TOP BAR ─────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  padding: 9px 0;
  text-align: center;
  letter-spacing: .02em;
}
.topbar a { color: var(--gold-light); text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--white); }
.topbar span { margin: 0 12px; opacity: .35; }

/* ── NAV ─────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; max-width: var(--mw);
  margin: 0 auto; padding: 0 40px;
}
.nav-logo { text-decoration: none; }
.nav-logo .nl-name { font-family: var(--fd); font-size: 18px; font-weight: 500; color: var(--navy); line-height: 1.18; display: block; }
.nav-logo .nl-role { font-family: var(--fm); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.nav-list { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-list a { font-size: 13.5px; color: var(--slate); text-decoration: none; transition: color var(--ease); }
.nav-list a:hover, .nav-list a.on { color: var(--navy); font-weight: 500; }
.nav-list .nc > a { background: var(--navy); color: var(--white); padding: 9px 20px; font-size: 13px; font-weight: 500; }
.nav-list .nc > a:hover { background: var(--navy-light); }
/* dropdown */
.nd { position: relative; }
.nd > a::after { content: ' ▾'; font-size: 9px; }
.dd {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  border: 1px solid var(--border-light); padding: 6px 0;
  box-shadow: 0 10px 40px rgba(11,31,58,.1);
}
.nd:hover .dd { display: block; }
.dd a { display: block; padding: 10px 20px; font-size: 13.5px; color: var(--slate); text-decoration: none; }
.dd a:hover { background: var(--gold-pale); color: var(--navy); }
@media (max-width: 900px) {
  .nav-list { display: none; }
  .nav-inner { padding: 0 20px; }
}

/* ── FLOATING CTA ────────────────────────────────── */
.fcta {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 300; display: flex; flex-direction: column;
  gap: 9px; align-items: flex-end;
}
.fcta a {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 18px; font-family: var(--fb);
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(0,0,0,.2);
  transition: transform var(--ease);
}
.fcta a:hover { transform: translateY(-2px); }
.fcta .f-wa   { background: var(--green); color: var(--white); }
.fcta .f-call { background: var(--navy);  color: var(--white); }

/* ── TRUST STRIP ─────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 26px 0;
}
.trust-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 190px; }
.ti-ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.ti-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.3; }
.ti-text small  { font-size: 11.5px; color: var(--slate-light); }

/* ── PAGE HERO ───────────────────────────────────── */
.ph {
  background: var(--navy); color: var(--white);
  padding: 76px 0 68px; position: relative; overflow: hidden;
}
.ph::after {
  content: ''; position: absolute; right: -220px; top: -220px;
  width: 560px; height: 560px;
  border: 1px solid rgba(184,151,90,.08); border-radius: 50%;
  pointer-events: none;
}
.ph-bc {
  font-family: var(--fm); font-size: 11px;
  letter-spacing: .1em; color: rgba(255,255,255,.32);
  margin-bottom: 22px;
}
.ph-bc a { color: var(--gold); text-decoration: none; }
.ph h1 {
  font-family: var(--fd); font-size: clamp(30px,4vw,52px);
  font-weight: 500; line-height: 1.14;
  color: var(--white); margin-bottom: 18px;
}
.ph h1 em { color: var(--gold); font-style: italic; }
.ph p {
  font-size: 16.5px; color: rgba(255,255,255,.64);
  max-width: 560px; line-height: 1.76;
}
.ph-chips {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px;
}
.ph-chip {
  background: rgba(184,151,90,.12);
  border: 1px solid rgba(184,151,90,.28);
  padding: 10px 16px; text-align: center;
}
.ph-chip .cn { font-family: var(--fd); font-size: 22px; color: var(--gold); line-height: 1; }
.ph-chip .cl { font-size: 11px; color: rgba(255,255,255,.48); margin-top: 3px; }

/* ── CREDENTIALS ─────────────────────────────────── */
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cred-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold); padding: 18px 20px;
}
.cc-title  { font-weight: 500; font-size: 13.5px; color: var(--navy); margin-bottom: 4px; line-height: 1.4; }
.cc-detail { font-size: 12px; color: var(--slate-light); }

/* ── MEDAL BAND ──────────────────────────────────── */
.medal-band {
  background: var(--navy); color: var(--white);
  padding: 20px 28px; display: flex;
  align-items: center; gap: 16px;
}
.mb-icon  { font-size: 22px; }
.mb-title { display: block; font-size: 14px; font-weight: 500; }
.mb-sub   { font-size: 12px; color: rgba(255,255,255,.48); }

/* ── EXPERTISE CARDS ─────────────────────────────── */
.ex-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border-light);
}
.ex-card {
  background: var(--white); padding: 34px 30px;
  position: relative; transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none; color: inherit;
  display: block;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(11,31,58,.1); z-index: 1; }
.ex-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.ex-card:hover::before { transform: scaleX(1); }
.ex-num   { font-family: var(--fm); font-size: 11px; color: var(--gold); letter-spacing: .1em; margin-bottom: 16px; display: block; }
.ex-card h3 { font-family: var(--fd); font-size: 20px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.ex-desc  { font-size: 14px; color: var(--slate); line-height: 1.68; margin-bottom: 18px; }
.ex-list  { list-style: none; border-top: 1px solid var(--border-light); padding-top: 14px; margin-bottom: 16px; }
.ex-list li { font-size: 13px; color: var(--slate-light); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.ex-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.ex-out { background: var(--gold-pale); padding: 9px 14px; display: flex; align-items: center; gap: 10px; }
.eo-val  { font-family: var(--fd); font-size: 19px; color: var(--navy); font-weight: 500; white-space: nowrap; }
.eo-lbl  { font-size: 12px; color: var(--slate); }

/* ── NANO COMPARE ────────────────────────────────── */
.cmp-table { background: rgba(255,255,255,.04); border: 1px solid rgba(184,151,90,.22); }
.cmp-head  { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.cmp-head div { padding: 13px 16px; font-family: var(--fm); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.cmp-h-m   { color: rgba(255,255,255,.32); }
.cmp-h-g   { color: var(--gold); }
.cmp-row   { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.05); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row div { padding: 12px 16px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.cr-lbl  { font-size: 12px !important; color: rgba(255,255,255,.38) !important; }
.cr-bad  { color: #FF6E6E !important; }
.cr-good { color: #4ECB91 !important; font-weight: 500; }

/* ── NANO STAT GRID ──────────────────────────────── */
.ns-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,151,90,.2);
}
.ns-cell { background: var(--navy); padding: 24px 20px; text-align: center; }
.ns-cell .nv { font-family: var(--fd); font-size: 32px; color: var(--gold); line-height: 1; }
.ns-cell .nl { font-size: 12px; color: rgba(255,255,255,.48); margin-top: 6px; }

/* ── JOURNEY ─────────────────────────────────────── */
.journey-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative;
}
.journey-row::before {
  content: ''; position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border-light);
}
.j-step { text-align: center; padding: 0 18px; }
.j-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
  transition: border-color var(--ease), background var(--ease);
}
.j-step:hover .j-circle { border-color: var(--gold); background: var(--gold-pale); }
.j-num   { font-family: var(--fd); font-size: 22px; color: var(--navy); }
.j-title { font-weight: 500; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.j-desc  { font-size: 13px; color: var(--slate-light); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────── */
.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tc {
  background: var(--white); border: 1px solid var(--border-light);
  padding: 26px; display: flex; flex-direction: column; gap: 13px;
}
.tc.feat { background: var(--navy); border-color: transparent; }
.tc-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.tc-tag {
  display: inline-block; font-family: var(--fm); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px;
  background: var(--gold-pale); color: var(--gold); align-self: flex-start;
}
.tc.feat .tc-tag { background: rgba(184,151,90,.18); color: var(--gold-light); }
.tc-q { font-family: var(--fd); font-size: 15.5px; font-style: italic; color: var(--navy); line-height: 1.68; flex: 1; }
.tc.feat .tc-q { color: rgba(255,255,255,.9); }
.tc-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.tc.feat .tc-name { color: var(--gold); }
.tc-det  { font-size: 12px; color: var(--slate-light); }
.tc.feat .tc-det  { color: rgba(255,255,255,.4); }

/* ── WHEN GRID ───────────────────────────────────── */
.when-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.when-card { padding: 20px; border: 1px solid var(--border-light); background: var(--cream); border-left: 3px solid var(--gold); font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── OUTCOME GRID ────────────────────────────────── */
.out-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border-light); }
.out-card { background: var(--white); padding: 28px; text-align: center; }
.oc-val { font-family: var(--fd); font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.oc-lbl { font-size: 13.5px; color: var(--slate); }

/* ── PULL QUOTE ──────────────────────────────────── */
.pull-q { background: var(--gold-pale); border: 1px solid var(--border); padding: 44px 48px; }
.pq-quote { font-family: var(--fd); font-size: 19px; font-style: italic; color: var(--navy); line-height: 1.7; margin-bottom: 18px; }
.pq-attr  { font-size: 13.5px; color: var(--slate-light); }

/* ── SIDEBAR CARD ────────────────────────────────── */
.sidebar-card { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--gold); padding: 28px; }
.sidebar-card h3 { font-family: var(--fd); font-size: 20px; font-weight: 500; margin-bottom: 16px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sc-list li { font-size: 14px; color: var(--slate); display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.sc-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sc-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 9px; flex-shrink: 0; }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-sec {
  background: var(--navy); padding: 96px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before, .cta-sec::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-sec::before { left: -280px; bottom: -280px; width: 660px; height: 660px; border: 1px solid rgba(184,151,90,.07); }
.cta-sec::after  { left: -140px; bottom: -140px; width: 440px; height: 440px; border: 1px solid rgba(184,151,90,.11); }
.cta-in { position: relative; z-index: 1; }
.cta-in .lbl { text-align: center; }
.cta-in h2 { font-family: var(--fd); font-size: clamp(26px,3.5vw,46px); font-weight: 500; color: var(--white); margin-bottom: 14px; line-height: 1.18; }
.cta-in h2 em { color: var(--gold); font-style: italic; }
.cta-in p { font-size: 16px; color: rgba(255,255,255,.58); max-width: 480px; margin: 0 auto 42px; line-height: 1.76; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cta-strip {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 38px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.cs-item { text-align: center; }
.cs-lbl   { font-family: var(--fm); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); display: block; margin-bottom: 4px; }
.cs-val   { font-size: 15.5px; font-weight: 500; color: var(--white); }
.cs-val a { color: var(--gold); text-decoration: none; }
.cs-div   { width: 1px; height: 38px; background: rgba(255,255,255,.1); }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: #07162A; color: rgba(255,255,255,.52); padding: 58px 0 30px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 46px; }
.ft-name { font-family: var(--fd); font-size: 19px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.ft-role { font-family: var(--fm); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ft-about { font-size: 13.5px; line-height: 1.7; max-width: 300px; }
.ft-col h4 { font-family: var(--fm); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 16px; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 9px; }
.ft-col a  { color: rgba(255,255,255,.52); text-decoration: none; font-size: 13.5px; transition: color var(--ease); }
.ft-col a:hover { color: var(--gold); }
.ft-bot { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.ft-disc { font-size: 11px; color: rgba(255,255,255,.22); }

/* ── MISC ────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.icon-check { color: #4ECB91; font-size: 17px; flex-shrink: 0; line-height: 1.35; }
.bg-white  { background: var(--white); }
.bg-navy   { background: var(--navy); }
.bg-cream  { background: var(--cream); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .ex-grid  { grid-template-columns: 1fr 1fr; }
  .ft-grid  { grid-template-columns: 1fr 1fr; }
  .tg       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .two-col  { grid-template-columns: 1fr; gap: 40px; }
  .cred-grid{ grid-template-columns: 1fr; }
  .ns-grid  { grid-template-columns: 1fr 1fr; }
  .journey-row { grid-template-columns: 1fr 1fr; }
  .journey-row::before { display: none; }
  .when-grid{ grid-template-columns: 1fr 1fr; }
  .out-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ex-grid  { grid-template-columns: 1fr; }
  .tg       { grid-template-columns: 1fr; }
  .journey-row { grid-template-columns: 1fr; }
  .when-grid{ grid-template-columns: 1fr; }
  .out-grid { grid-template-columns: 1fr; }
  .three-col{ grid-template-columns: 1fr; }
  .ft-grid  { grid-template-columns: 1fr; }
  .pull-q   { padding: 28px 24px; }
  .ns-grid  { grid-template-columns: 1fr 1fr; }
  .trust-row { gap: 16px; }
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.anim > * { animation: fUp .55s ease both; }
.anim > *:nth-child(1) { animation-delay: .0s; }
.anim > *:nth-child(2) { animation-delay: .08s; }
.anim > *:nth-child(3) { animation-delay: .16s; }
.anim > *:nth-child(4) { animation-delay: .24s; }
.anim > *:nth-child(5) { animation-delay: .32s; }

/* ══════════════════════════════════════════════════
   MEDIA SYSTEM — photos, videos, lightbox, carousel
   ══════════════════════════════════════════════════ */

/* ── HOVER ZOOM (wrap any img container) ─────────── */
.hover-zoom { overflow: hidden; }
.hover-zoom img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.hover-zoom:hover img { transform: scale(1.04); }

/* ── DOCTOR PROFILE PHOTO ─────────────────────────
   Used in: hero right panel, about bio column       */
.dr-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 20% top;
  display: block;
}

/* ── AWARD INSET ─────────────────────────────────
   Absolute-positioned overlay on about photo wrap  */
.award-inset {
  position: absolute;
  right: -18px; bottom: 80px;
  width: 112px; height: 82px;
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: 0 6px 24px rgba(11,31,58,.22);
  z-index: 2;
}
.award-inset img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 900px) { .award-inset { right: 0; } }

/* ── LANDSCAPE CROP STRIP ─────────────────────────
   Journey section panorama below steps             */
.media-strip {
  width: 100%; height: 320px;
  overflow: hidden; position: relative;
  margin-top: 52px;
}
.media-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .6s ease;
}
.media-strip:hover img { transform: scale(1.03); }
.media-strip-overlay {
  position: absolute; inset: 0;
  background: rgba(11,31,58,.16);
  pointer-events: none;
}
@media (max-width: 640px) { .media-strip { height: 220px; } }

/* ── BEFORE/AFTER CARD ───────────────────────────
   Full-height portrait, never cropped             */
.ba-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ba-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.ba-label {
  padding: 10px 14px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy);
  text-align: center;
}

/* ── PHONE FRAME (portrait video/image display) ──── */
.phone-frame {
  border-radius: 28px;
  border: 2.5px solid rgba(184,151,90,.35);
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--navy-mid);
  box-shadow: 0 16px 48px rgba(11,31,58,.22);
}
.phone-frame img,
.phone-frame video {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── VIDEO THUMBNAIL + PLAY BUTTON ────────────────
   Works inside .phone-frame or standalone          */
.video-thumb {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; display: block;
  object-fit: cover; object-position: top center;
  transition: transform .5s ease;
}
.video-thumb:hover img { transform: scale(1.04); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(184,151,90,.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  pointer-events: none;
}
.video-thumb:hover .play-btn {
  transform: translate(-50%,-50%) scale(1.14);
  background: var(--gold);
}
.play-btn svg { margin-left: 4px; }
.video-label {
  padding: 10px 14px 14px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(11,31,58,.92);
  text-align: center;
}
.video-label strong {
  display: block;
  font-size: 13px;
  color: var(--white);
  font-family: var(--fb);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* ── VIDEO CAROUSEL (patients.html) ───────────────
   Snap scroll, 3 phone frames wide on desktop     */
.video-carousel-wrap { position: relative; margin-bottom: 0; }
.video-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.video-carousel::-webkit-scrollbar { display: none; }
.vc-item {
  scroll-snap-align: start;
  flex: 0 0 calc(33.33% - 14px);
  min-width: 260px;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--ease);
  color: var(--navy);
}
.carousel-btn:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
@media (max-width: 900px) {
  .vc-item { flex: 0 0 80%; }
}
@media (max-width: 640px) {
  .vc-item { flex: 0 0 88%; }
}

/* ── DOCTOR + PATIENT PHOTO (hospital section) ────── */
.hosp-photo-col {
  position: relative;
  overflow: hidden;
  height: 320px;
  flex-shrink: 0;
}
.hosp-photo-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .5s ease;
}
.hosp-photo-col:hover img { transform: scale(1.03); }

/* ── LIGHTBOX OVERLAY ─────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,22,42,.96);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lb-overlay.open { display: flex; }
.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lb-inner video {
  max-width: 100%;
  max-height: 88vh;
  outline: none;
}
.lb-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  transition: background .25s;
}
.lb-close:hover { background: rgba(184,151,90,.5); }

/* ── CREDENTIAL CARDS (about / about teaser) ──────── */
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cred-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold); padding: 18px 20px;
}
.cc-title  { font-weight: 500; font-size: 13.5px; color: var(--navy); margin-bottom: 4px; line-height: 1.4; }
.cc-detail { font-size: 12px; color: var(--slate-light); }

/* ── MEDAL BAND ───────────────────────────────────── */
.medal-band {
  background: var(--navy); color: var(--white);
  padding: 20px 28px; display: flex; align-items: center; gap: 16px;
}
.mb-icon  { font-size: 22px; }
.mb-title { display: block; font-size: 14px; font-weight: 500; }
.mb-sub   { font-size: 12px; color: rgba(255,255,255,.48); }

/* ── EXPERTISE CARDS ─────────────────────────────── */
.ex-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border-light);
}
.ex-card {
  background: var(--white); padding: 34px 30px;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none; color: inherit; display: block;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(11,31,58,.1); z-index: 1; }
.ex-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.ex-card:hover::before { transform: scaleX(1); }
.ex-num   { font-family: var(--fm); font-size: 11px; color: var(--gold); letter-spacing: .1em; margin-bottom: 16px; display: block; }
.ex-card h3 { font-family: var(--fd); font-size: 20px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.ex-desc  { font-size: 14px; color: var(--slate); line-height: 1.68; margin-bottom: 18px; }
.ex-list  { list-style: none; border-top: 1px solid var(--border-light); padding-top: 14px; margin-bottom: 16px; }
.ex-list li { font-size: 13px; color: var(--slate-light); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.ex-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.ex-out { background: var(--gold-pale); padding: 9px 14px; display: flex; align-items: center; gap: 10px; }
.eo-val  { font-family: var(--fd); font-size: 19px; color: var(--navy); font-weight: 500; white-space: nowrap; }
.eo-lbl  { font-size: 12px; color: var(--slate); }

/* ── PAGE HERO ────────────────────────────────────── */
.ph::after {
  content: ''; position: absolute; right: -220px; top: -220px;
  width: 560px; height: 560px;
  border: 1px solid rgba(184,151,90,.08); border-radius: 50%;
  pointer-events: none;
}
.ph-bc { font-family: var(--fm); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.32); margin-bottom: 22px; }
.ph-bc a { color: var(--gold); text-decoration: none; }
.ph-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.ph-chip { background: rgba(184,151,90,.12); border: 1px solid rgba(184,151,90,.28); padding: 10px 16px; text-align: center; }
.ph-chip .cn { font-family: var(--fd); font-size: 22px; color: var(--gold); line-height: 1; }
.ph-chip .cl { font-size: 11px; color: rgba(255,255,255,.48); margin-top: 3px; }

/* ── COMPARE TABLE ───────────────────────────────── */
.cmp-table { background: rgba(255,255,255,.04); border: 1px solid rgba(184,151,90,.22); }
.cmp-head  { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.cmp-head div { padding: 13px 16px; font-family: var(--fm); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.cmp-h-m   { color: rgba(255,255,255,.32); }
.cmp-h-g   { color: var(--gold); }
.cmp-row   { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.05); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row div { padding: 12px 16px; font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ── NANO STAT GRID ──────────────────────────────── */
.ns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(184,151,90,.2); }
.ns-cell { background: var(--navy); padding: 24px 20px; text-align: center; }
.ns-cell .nv { font-family: var(--fd); font-size: 32px; color: var(--gold); line-height: 1; }
.ns-cell .nl { font-size: 12px; color: rgba(255,255,255,.48); margin-top: 6px; }

/* ── JOURNEY STEPS ───────────────────────────────── */
.journey-row { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.journey-row::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border-light); }
.j-step { text-align: center; padding: 0 18px; }
.j-circle { width: 70px; height: 70px; border-radius: 50%; background: var(--white); border: 2px solid var(--border-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; z-index: 1; transition: border-color var(--ease), background var(--ease); }
.j-step:hover .j-circle { border-color: var(--gold); background: var(--gold-pale); }
.j-num   { font-family: var(--fd); font-size: 22px; color: var(--navy); }
.j-title { font-weight: 500; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.j-desc  { font-size: 13px; color: var(--slate-light); line-height: 1.6; }

/* ── TESTIMONIAL GRID ────────────────────────────── */
.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tc { background: var(--white); border: 1px solid var(--border-light); padding: 26px; display: flex; flex-direction: column; gap: 13px; }
.tc.feat { background: var(--navy); border-color: transparent; }
.tc-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.tc-tag { display: inline-block; font-family: var(--fm); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; background: var(--gold-pale); color: var(--gold); align-self: flex-start; }
.tc.feat .tc-tag { background: rgba(184,151,90,.18); color: var(--gold-light); }
.tc-q { font-family: var(--fd); font-size: 15.5px; font-style: italic; color: var(--navy); line-height: 1.68; flex: 1; }
.tc.feat .tc-q { color: rgba(255,255,255,.9); }
.tc-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.tc.feat .tc-name { color: var(--gold); }
.tc-det  { font-size: 12px; color: var(--slate-light); }
.tc.feat .tc-det  { color: rgba(255,255,255,.4); }

/* ── WHEN / OUTCOME / PULL QUOTE / SIDEBAR ──────── */
.when-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.when-card { padding: 20px; border: 1px solid var(--border-light); background: var(--cream); border-left: 3px solid var(--gold); font-size: 14px; color: var(--slate); line-height: 1.6; }
.out-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border-light); }
.out-card { background: var(--white); padding: 28px; text-align: center; }
.oc-val { font-family: var(--fd); font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.oc-lbl { font-size: 13.5px; color: var(--slate); }
.pull-q { background: var(--gold-pale); border: 1px solid var(--border); padding: 44px 48px; }
.pq-quote { font-family: var(--fd); font-size: 19px; font-style: italic; color: var(--navy); line-height: 1.7; margin-bottom: 18px; }
.pq-attr  { font-size: 13.5px; color: var(--slate-light); }
.sidebar-card { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--gold); padding: 28px; }
.sidebar-card h3 { font-family: var(--fd); font-size: 20px; font-weight: 500; margin-bottom: 16px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sc-list li { font-size: 14px; color: var(--slate); display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.sc-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sc-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 9px; flex-shrink: 0; }

/* ── LIGHTBOX SCRIPT HELPER ─────────────────────── */
.lightbox-trigger { cursor: zoom-in; }

/* ── RESPONSIVE OVERRIDES ────────────────────────── */
@media (max-width: 1024px) {
  .ex-grid  { grid-template-columns: 1fr 1fr; }
  .ft-grid  { grid-template-columns: 1fr 1fr; }
  .tg       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .two-col  { grid-template-columns: 1fr; gap: 40px; }
  .cred-grid{ grid-template-columns: 1fr; }
  .ns-grid  { grid-template-columns: 1fr 1fr; }
  .journey-row { grid-template-columns: 1fr 1fr; }
  .journey-row::before { display: none; }
  .when-grid{ grid-template-columns: 1fr 1fr; }
  .out-grid { grid-template-columns: 1fr 1fr; }
  .hosp-photo-col { width: 100%; }
  .award-inset { right: 0; }
}
@media (max-width: 640px) {
  .ex-grid  { grid-template-columns: 1fr; }
  .tg       { grid-template-columns: 1fr; }
  .journey-row { grid-template-columns: 1fr; }
  .when-grid{ grid-template-columns: 1fr; }
  .out-grid { grid-template-columns: 1fr; }
  .three-col{ grid-template-columns: 1fr; }
  .ft-grid  { grid-template-columns: 1fr; }
  .pull-q   { padding: 28px 24px; }
  .ns-grid  { grid-template-columns: 1fr 1fr; }
  .trust-row { gap: 16px; }
  .media-strip { height: 200px; }
  .vc-item  { flex: 0 0 90%; }
}

/* ── SHARED LIGHTBOX + CAROUSEL JS INLINE STYLE ─── */
/* These selectors support the inline JS at bottom of each page */
body.lb-open { overflow: hidden; }

/* ── TESTI + B/A RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .testi-with-ba { grid-template-columns: 1fr !important; }
  .testi-with-ba .ba-card { max-width: 280px; }
}

/* ══════════════════════════════════════════════════
   REAL MEDIA ASSET OVERRIDES
   Applied when actual photos/videos are present
   ══════════════════════════════════════════════════ */

/* ── HERO PHOTO (square asset in tall panel) ───── */
.hero-right img.dr-photo {
  object-position: center 15%;  /* Show face, not chest */
}

/* ── BEFORE/AFTER — full portrait, no crop ──────── */
.ba-card img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
  background: var(--cream);
}

/* ── AWARD INSET — landscape image in small frame ── */
.award-inset img {
  object-fit: cover;
  object-position: center 30%;  /* Show trophy moment, not sky */
}

/* ── HAPPY PATIENTS — landscape in panorama strip ── */
.media-strip img {
  object-position: center 35%;  /* Faces visible in crop */
}

/* ── HOSPITAL SECTION PHOTO ─────────────────────── */
.hosp-photo-col img {
  object-fit: cover;
  object-position: center 20%;
}

/* ── VIDEO THUMBNAIL — portrait frame ──────────── */
.phone-frame .video-thumb img {
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: center top;
}

/* ── BEFORE/AFTER RESPONSIVE ────────────────────── */
@media (max-width: 900px) {
  /* Stack B/A + testimonials vertically */
  .testi-with-ba {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .testi-with-ba .ba-card {
    max-width: 340px;
    margin: 0 auto;
  }
  /* Shrink video carousel items on small screens */
  .vc-item {
    flex: 0 0 85%;
    min-width: 240px;
  }
}

@media (max-width: 640px) {
  /* Hero photo hidden on mobile - text only */
  .hero-right { display: none !important; }
  /* Full-width before/after on mobile */
  .testi-with-ba .ba-card { max-width: 100%; }
  /* Video carousel single view */
  .vc-item { flex: 0 0 92%; min-width: 220px; }
  /* Award inset repositioned on mobile */
  .award-inset { right: 8px; bottom: 60px; width: 90px; height: 66px; }
}

/* ── PERFORMANCE: lazy load fade-in ────────────── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}
