/* ============================================================
   DRISHTI EYE HOSPITAL — Digital Shijil Mockup
   Palette: deep cobalt blue × white × azure accent
   Fonts: Poppins (display + body) · Noto Sans Kannada · JetBrains Mono
   No Lenis. Native scroll only. Reveal safe (fallback-open).
   ============================================================ */

:root{
  --cobalt:        #1B3D7D;
  --cobalt-deep:   #0F2456;
  --cobalt-mid:    #2451A3;
  --cobalt-soft:   #3B6BC7;
  --azure:         #0EA5E9;
  --azure-deep:    #0284C7;
  --azure-pale:    #BAE6FD;
  --azure-blush:   #E0F2FE;
  --white:         #FFFFFF;
  --off-white:     #F8FAFF;
  --sky-tint:      #EEF4FF;
  --sky-deep:      #DBEAFE;
  --ink:           #0F172A;
  --ink-soft:      #374151;
  --mute:          #5A6B8A;
  --mute-soft:     #8A99B0;
  --gold:          #F59E0B;
  --gold-deep:     #D97706;
  --line:          rgba(27,61,125,0.12);
  --line-soft:     rgba(27,61,125,0.07);

  --display: "Poppins", system-ui, -apple-system, sans-serif;
  --sans:    "Poppins", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  --kannada: "Noto Sans Kannada", sans-serif;

  --gutter:  clamp(20px, 4vw, 64px);
  --col-max: 1320px;
  --ease:    cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

::selection{ background: var(--cobalt); color: var(--white); }

/* ---------- PITCH BAR ---------- */
.pitch-bar{
  background: var(--cobalt-deep);
  color: rgba(255,255,255,0.82);
  padding: 10px var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .03em;
  display: flex;
  gap: 14px;
  align-items: center;
  line-height: 1.5;
}
.pitch-bar code{
  color: var(--azure-pale);
  background: rgba(255,255,255,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-family: var(--mono);
}
.pitch-bar strong{ color: var(--white); }
.pitch-bar__dot{
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.25);
}
@media (max-width: 640px){
  .pitch-bar{ font-size: 10px; gap: 10px; }
  .pitch-bar code{ display: none; }
}

/* ---------- Kannada ---------- */
.kannada{ font-family: var(--kannada); }

/* ---------- typography ---------- */
.eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1,h2,h3,h4{
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--cobalt);
  margin: 0 0 .4em;
}
h1{ font-size: clamp(38px, 6.6vw, 92px); }
h2{ font-size: clamp(30px, 4.4vw, 60px); }
h3{ font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2; }
h4{ font-size: clamp(17px, 1.6vw, 22px); }

p{ margin:0 0 1.1em; max-width: 65ch; color: var(--ink-soft); }
.lede{ font-size: clamp(17px, 1.5vw, 21px); color: var(--ink); line-height: 1.55; }

/* ---------- structure ---------- */
.wrap{
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section{ position: relative; }

/* ---------- skip / a11y ---------- */
.skip{
  position: absolute; left: -9999px; top: 0;
  background: var(--cobalt); color: var(--white); padding: 12px 18px;
  font-family: var(--mono); font-size: 12px; z-index: 999;
}
.skip:focus{ left: 12px; top: 12px; }
:focus-visible{ outline: 2px solid var(--azure); outline-offset: 3px; border-radius: 2px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav__inner{
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brandmark{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 16px; font-weight: 600;
  color: var(--cobalt); letter-spacing: -.01em;
}
.brandmark__eye{
  flex-shrink: 0; color: var(--cobalt);
}
.brandmark__text{
  display: flex; flex-direction: column; line-height: 1.1;
}
.brandmark__text small{
  font-family: var(--kannada); font-size: 10px; letter-spacing: .02em;
  color: var(--mute); margin-top: 2px;
}
.nav__links{
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500;
  color: var(--cobalt);
}
.nav__links a{
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav__links a:hover{ color: var(--cobalt-mid); }
.nav__links a.active::after{
  content:""; position: absolute; left:0; right:0; bottom:-3px;
  height: 2px; background: var(--azure);
}
.nav__cta{
  background: var(--cobalt); color: var(--white);
  padding: 11px 22px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover{ background: var(--cobalt-mid); transform: translateY(-1px); }

.nav__burger{
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__burger span{
  width: 22px; height: 1.5px; background: var(--cobalt);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 880px){
  .nav__links, .nav__cta{ display: none; }
  .nav__burger{ display: flex; }
  .nav.is-open .nav__menu{
    position: fixed; inset: 64px 0 0 0;
    background: var(--white);
    padding: 40px var(--gutter);
    display: flex; flex-direction: column; gap: 24px;
    align-items: flex-start;
  }
  .nav.is-open .nav__links{ display: flex; flex-direction: column; gap: 16px; font-size: 22px; font-family: var(--display); font-weight: 600; }
  .nav.is-open .nav__cta{ display: inline-block; font-size: 15px; padding: 14px 28px; margin-top: 16px; }
  .nav.is-open .nav__burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2){ opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
.nav__menu{ display: contents; }

.nav.is-scrolled{
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(27,61,125,.08);
}

/* =====================================================
   HERO
   ===================================================== */
.hero{
  padding: clamp(130px, 16vw, 200px) 0 clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before{
  content: "";
  position: absolute; top: 10%; right: -8%;
  width: 58vw; height: 58vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 35% 35%, var(--azure-blush) 0%, transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy h1{
  font-size: clamp(42px, 7vw, 96px);
  line-height: .98;
  margin-bottom: 28px;
}
.hero__copy h1 em{
  font-style: italic;
  color: var(--cobalt-mid);
  display: inline-block;
}
.hero__meta{
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 32px;
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center;
}
.hero__meta::before{
  content:""; width: 24px; height: 1px; background: var(--azure);
}
.hero__lede{
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 40px;
}
.hero__cta{
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--cobalt); color: var(--white);
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  letter-spacing: .01em;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__cta:hover{ background: var(--cobalt-mid); transform: translateY(-2px); }
.hero__cta-sec{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 24px;
  color: var(--cobalt);
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--cobalt);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.hero__cta-sec:hover{ color: var(--cobalt-mid); border-color: var(--cobalt-mid); }
.hero__ctas{ display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* hero portrait */
.hero__portrait{
  position: relative;
  display: grid; place-items: center;
}
.hero__portrait-ring{
  position: relative;
  width: min(92%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sky-deep);
  box-shadow: 0 40px 80px -30px rgba(27,61,125,.35);
  z-index: 1;
  margin: 0;
}
.hero__portrait::before{
  content:""; position:absolute;
  border-radius:50%;
  border: 1px solid var(--azure); opacity:.4;
  width: min(96%, 484px); height: min(96%, 484px);
  left:50%; top:50%; transform: translate(-50%,-50%);
}
.hero__doc-ph{
  width:100%; height:100%;
  background: linear-gradient(160deg, var(--cobalt-mid) 0%, var(--cobalt-deep) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px; text-align: center; padding: 32px;
}
.hero__doc-ph-text{
  font-family: var(--mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin: 0;
}
.hero__doc-ph-text span{ font-size: 9px; opacity: .6; }
.hero__seal{
  position: absolute; z-index: 2;
  right: 2%; bottom: 4%;
  width: clamp(90px, 11vw, 126px); height: clamp(90px, 11vw, 126px);
  border-radius: 50%;
  background: var(--cobalt); color: var(--white);
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 16px 40px rgba(27,61,125,.3);
  padding: 10px;
}
.hero__seal strong{
  font-family: var(--kannada); font-size: clamp(22px,2.6vw,32px); line-height:1;
  color: var(--azure-pale); display:block; font-weight:600;
}
.hero__seal span{
  font-family: var(--mono); font-size: 8.5px; letter-spacing:.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top:5px; line-height:1.3;
}
.hero__badge{
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(27,61,125,.16);
  max-width: 260px;
}
.hero__badge .eyebrow{ margin-bottom: 6px; display: block; }
.hero__badge p{
  font-family: var(--display); font-size: 15px; font-style: italic; font-weight: 400;
  color: var(--cobalt); margin: 0; line-height: 1.4;
}
.hero__badge--float{
  position: absolute; left: -2%; bottom: 14%; z-index: 3;
}
@media (max-width: 880px){
  .hero{ padding-top: 110px; }
  .hero__grid{ grid-template-columns: 1fr; gap: 48px; }
  .hero__portrait-ring{ width: min(82%, 360px); }
  .hero__badge--float{ left: 0; bottom: 6%; }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust{
  background: var(--cobalt);
  color: var(--white);
  padding: clamp(40px, 5vw, 64px) 0;
}
.trust__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.trust__item{
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 22px;
}
.trust__item:first-child{ border-left: 0; padding-left: 0; }
.trust__num{
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--azure-pale);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  letter-spacing: -.02em;
}
.trust__num.kannada{ font-family: var(--kannada); }
.trust__lbl{
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  max-width: 22ch;
}
@media (max-width: 760px){
  .trust__grid{ grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .trust__item{ border-left: 0; padding-left: 0; }
}

/* =====================================================
   STORY / ABOUT
   ===================================================== */
.story{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.story__inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story__visual{
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sky-deep);
}
.story__visual-ph{
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--cobalt-mid) 0%, var(--cobalt-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.story__visual-cap{
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
  margin-top: 12px; display: block;
}
.story__copy h2{ margin-top: 0; max-width: 18ch; }
.story__copy h2 em{ color: var(--cobalt-mid); font-style: italic; }
.story__dropcap{
  float: left;
  font-family: var(--display);
  font-size: 72px; font-weight: 700;
  line-height: .9;
  color: var(--cobalt-mid);
  padding: 6px 14px 0 0;
}
.story__sig{
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.story__sig-name{
  font-family: var(--display); font-style: italic; font-size: 20px; font-weight: 500;
  color: var(--cobalt);
}
.story__sig-role{
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
}
@media (max-width: 880px){
  .story__inner{ grid-template-columns: 1fr; }
  .story__visual{ position: relative; top: 0; aspect-ratio: 4/3.5; }
}

/* =====================================================
   SERVICES (treatments)
   ===================================================== */
.treatments{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--off-white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head h2{ margin: 0; max-width: 14ch; }
.section-head p{ margin: 0; }
@media (max-width: 760px){
  .section-head{ grid-template-columns: 1fr; align-items: start; gap: 16px; }
}
.tx-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tx-card{
  background: var(--off-white);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  transition: background .35s var(--ease);
}
.tx-card:hover{ background: var(--white); }
.tx-card__head{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
}
.tx-card__code{
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cobalt-mid);
}
.tx-card__dur{
  font-family: var(--mono); font-size: 11px; letter-spacing: .15em;
  color: var(--mute);
}
.tx-card h3{
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 14px;
  color: var(--cobalt);
}
.tx-card__summary{
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.55;
}
.tx-card__for{
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.5;
}
.tx-card__for strong{
  display: block;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 6px;
}
/* photo cards */
.tx-card--photo{ padding: 0; overflow: hidden; }
.tx-card--photo .tx-card__media{
  aspect-ratio: 16/10; overflow: hidden; background: var(--sky-deep);
}
.tx-card__media-ph{
  width:100%; height:100%;
  background: linear-gradient(135deg, var(--cobalt-mid) 0%, var(--cobalt-soft) 100%);
  min-height: 200px;
}
.tx-card--photo .tx-card__pad{
  padding: clamp(24px,2.6vw,38px); display:flex; flex-direction:column; flex:1;
}
@media (max-width: 760px){
  .tx-grid{ grid-template-columns: 1fr; }
}

/* =====================================================
   CLINIC BAND
   ===================================================== */
.clinic-band{
  position: relative; overflow: hidden;
  background: var(--cobalt-deep); color: var(--white);
  min-height: clamp(300px, 36vw, 460px);
  display: grid; align-items: center;
}
.clinic-band__scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14,165,233,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(59,107,199,.22) 0%, transparent 50%);
}
.clinic-band__inner{ position: relative; z-index:1; padding: clamp(60px, 8vw, 100px) 0; }
.clinic-band h2{ color: var(--white); max-width: 18ch; }
.clinic-band h2 em{ color: var(--azure-pale); font-style: italic; }
.clinic-band p{ color: rgba(255,255,255,.8); max-width: 52ch; }
.clinic-band .eyebrow{ color: var(--azure-pale); }

/* =====================================================
   JOURNEY
   ===================================================== */
.journey{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cobalt);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.journey::before{
  content: "";
  position: absolute; top: 0; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.15), transparent 65%);
  pointer-events: none;
}
.journey .section-head h2{ color: var(--white); }
.journey .section-head p{ color: rgba(255,255,255,.7); }
.journey .eyebrow{ color: var(--azure-pale); }
.journey-steps{
  position: relative;
  padding-top: 20px;
}
.journey-steps::before{
  content:"";
  position: absolute; left: 6%; top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.22), transparent);
}
.journey-step{
  display: grid;
  grid-template-columns: 12% 1fr 1.4fr;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.journey-step:last-child{ border-bottom: 1px solid rgba(255,255,255,.1); }
.journey-step__n{
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--azure-pale);
  line-height: 1;
  position: relative;
  padding-left: 4px;
}
.journey-step__n::before{
  content: "";
  position: absolute; left: -10px; top: .5em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 0 4px var(--cobalt);
}
.journey-step__t h3{ color: var(--white); margin-bottom: 6px; }
.journey-step__t small{
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--azure-pale);
}
.journey-step__b{
  color: rgba(255,255,255,.77);
  line-height: 1.55;
  font-size: 16px;
  max-width: 50ch;
}
.journey-step__b p{ color: inherit; margin: 0; }
@media (max-width: 760px){
  .journey-steps::before{ display: none; }
  .journey-step{ grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .journey-step__n::before{ display: none; }
}

/* =====================================================
   DOCTOR
   ===================================================== */
.doctor{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.doctor__inner{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.doctor__portrait{
  aspect-ratio: 1 !important;
  border-radius: 50%;
  max-width: 440px; margin-inline: auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px -30px rgba(27,61,125,.35);
  background: var(--sky-deep);
}
.doctor__portrait-ph{
  width:100%; height:100%;
  background: linear-gradient(160deg, var(--cobalt-mid) 0%, var(--cobalt-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.doctor__portrait-cap{
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  padding: 10px 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cobalt);
  border-radius: 999px; width: max-content; text-align: center;
}
.doctor__copy h2{ margin-top: 0; max-width: 16ch; }
.doctor__creds{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 24px 0 32px;
}
.doctor__cred{
  font-family: var(--mono); font-size: 11px; letter-spacing: .15em;
  padding: 8px 14px;
  border: 1px solid var(--azure-deep);
  border-radius: 999px;
  color: var(--cobalt-mid);
}
.doctor__interests{
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.doctor__interest small{
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cobalt-mid);
  display: block; margin-bottom: 6px;
}
.doctor__interest p{ margin: 0; font-size: 15px; color: var(--cobalt); line-height: 1.4; }
@media (max-width: 880px){
  .doctor__inner{ grid-template-columns: 1fr; }
  .doctor__portrait{ max-width: 320px; }
}

/* =====================================================
   PATIENT VOICES
   ===================================================== */
.stories{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--azure-blush);
  position: relative;
  overflow: hidden;
}
.stories::before{
  content: "";
  position: absolute; bottom: -30%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 60%);
  pointer-events: none;
}
.stories .section-head h2 em{ color: var(--cobalt-mid); font-style: italic; }
.stories-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.story-card{
  background: var(--white);
  padding: clamp(28px, 3vw, 44px);
  border-radius: 4px;
  border: 1px solid rgba(27,61,125,.07);
  position: relative;
}
.story-card__mark{
  position: absolute; top: 14px; right: 24px;
  font-family: var(--display); font-size: 60px; line-height: 1; font-weight: 700;
  color: var(--azure-pale);
  pointer-events: none;
}
.story-card__quote{
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.48;
  color: var(--cobalt);
  margin-bottom: 24px;
}
.story-card__by{
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.story-card__init{
  width: 38px; height: 38px;
  background: var(--cobalt); color: var(--white);
  font-family: var(--display); font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.story-card__meta{ display: flex; flex-direction: column; }
.story-card__name{ font-size: 14px; color: var(--cobalt); font-weight: 600; }
.story-card__year{ font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-top: 2px; }
.story-card.is-pending{ background: rgba(240,245,255,.5); border-style: dashed; }
.story-card.is-pending .story-card__name{ font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--mute); }
@media (max-width: 760px){
  .stories-grid{ grid-template-columns: 1fr; gap: 20px; }
}

/* =====================================================
   FAQ
   ===================================================== */
.faqs{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.faq-list{
  max-width: 880px;
  margin: 0 auto;
}
.faq{
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq:last-child{ border-bottom: 1px solid var(--line); }
.faq summary{
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 600;
  color: var(--cobalt);
  line-height: 1.3;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq__icon{
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform .35s var(--ease);
}
.faq__icon::before, .faq__icon::after{
  content: ""; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--cobalt-mid);
  transform-origin: center;
}
.faq__icon::after{ transform: rotate(90deg); transition: transform .35s var(--ease); }
.faq[open] .faq__icon::after{ transform: rotate(0); }
.faq__body{
  margin-top: 16px;
  padding-right: 44px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq__body p{ margin: 0; }

/* =====================================================
   BOOK FORM
   ===================================================== */
.book{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cobalt);
  color: var(--white);
}
.book__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
}
.book .eyebrow{ color: var(--azure-pale); }
.book__copy h2{ color: var(--white); }
.book__copy p{ color: rgba(255,255,255,.78); }
.book__assurance{
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid; gap: 16px;
  list-style: none; padding-left: 0; margin-left: 0;
}
.book__assurance li{
  display: flex; gap: 14px; align-items: baseline;
  font-size: 14px; color: rgba(255,255,255,.82);
}
.book__assurance li::before{
  content:""; flex-shrink: 0;
  width: 8px; height: 8px; background: var(--azure-pale);
  margin-top: 7px; border-radius: 50%;
}
.book__form{
  background: var(--white);
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row--1{ grid-template-columns: 1fr; }
.form-field{ display: flex; flex-direction: column; }
.form-field label{
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cobalt);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select{
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font: inherit; font-size: 15px;
  color: var(--ink);
  transition: border-color .25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  outline: 0;
  border-color: var(--cobalt-mid);
}
.form-field textarea{ min-height: 96px; resize: vertical; }
.book__submit{
  margin-top: 8px;
  background: var(--cobalt); color: var(--white);
  padding: 16px 32px;
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.book__submit:hover{ background: var(--cobalt-mid); transform: translateY(-2px); }
.book__privacy{
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  color: var(--mute); margin-top: 16px;
}
@media (max-width: 880px){
  .book__grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

/* =====================================================
   VISIT
   ===================================================== */
.visit{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--off-white);
}
.visit__inner{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
}
.visit__info h2{ margin-top: 0; max-width: 12ch; }
.visit__block{
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.visit__block:last-child{ border-bottom: 0; }
.visit__block small{
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cobalt-mid);
  display: block; margin-bottom: 10px;
}
.visit__block p{ margin: 0; font-size: 16px; color: var(--cobalt); line-height: 1.5; }
.visit__phones{ display: grid; gap: 6px; }
.visit__phones a{
  font-family: var(--display); font-size: 19px; font-weight: 600;
  color: var(--cobalt);
  transition: color .25s var(--ease);
}
.visit__phones a:hover{ color: var(--cobalt-mid); }
.visit__map{
  aspect-ratio: 4/4.5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sky-deep);
  border: 1px solid var(--line-soft);
  position: relative;
  display: flex; align-items: end; justify-content: stretch;
}
.visit__map--static{
  background:
    linear-gradient(135deg, rgba(27,61,125,.06), rgba(14,165,233,.1)),
    repeating-linear-gradient(0deg, transparent 0, transparent 28px, rgba(27,61,125,.06) 28px, rgba(27,61,125,.06) 29px),
    repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(27,61,125,.06) 28px, rgba(27,61,125,.06) 29px),
    var(--sky-tint);
}
.visit__pin{
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background: var(--cobalt-mid); border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(27,61,125,.2), 0 0 0 14px rgba(27,61,125,.1);
}
.visit__pin::after{
  content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 6px; height: 6px; background: var(--white); border-radius: 50%;
}
.visit__map-link{
  position: relative; z-index: 1;
  margin: 18px;
  background: var(--white);
  padding: 14px 20px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; color: var(--cobalt);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(27,61,125,.12);
  align-self: flex-end;
}
.visit__map-link svg{ flex-shrink: 0; }
.visit__map-label{
  position: absolute; top: 24px; left: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cobalt-mid);
}
@media (max-width: 880px){
  .visit__inner{ grid-template-columns: 1fr; }
  .visit__map{ aspect-ratio: 4/3; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.foot{
  background: var(--cobalt-deep);
  color: rgba(255,255,255,.75);
  padding: clamp(60px, 6vw, 100px) 0 32px;
}
.foot__top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 28px;
}
.foot__brand .brandmark{ color: var(--white); }
.foot__brand .brandmark__eye{ color: var(--azure-pale); }
.foot__brand .brandmark__text small{ color: rgba(255,255,255,.55); font-family: var(--kannada); }
.foot__brand p{ color: rgba(255,255,255,.58); font-size: 14px; margin: 20px 0 0; max-width: 36ch; }
.foot__col h5{
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--azure-pale);
  margin: 0 0 18px; font-weight: 500;
}
.foot__col ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a{
  font-size: 14px; color: rgba(255,255,255,.75);
  transition: color .25s var(--ease);
}
.foot__col a:hover{ color: var(--azure-pale); }
.foot__bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .15em;
  color: rgba(255,255,255,.45);
}
.foot__bottom a{ color: rgba(255,255,255,.65); }
@media (max-width: 760px){
  .foot__top{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__brand{ grid-column: 1 / -1; }
}

/* =====================================================
   REVEAL (fallback safe — content always visible)
   ===================================================== */
.reveal{ opacity:1; transform:none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal:not(.is-in){ opacity:0; transform:translateY(18px); }
.js .reveal.is-in{ opacity:1; transform:none; }
.js .reveal.is-in > *{ animation: rise .7s var(--ease) both; }
.js .reveal.is-in.stagger > *:nth-child(1){ animation-delay:.02s }
.js .reveal.is-in.stagger > *:nth-child(2){ animation-delay:.08s }
.js .reveal.is-in.stagger > *:nth-child(3){ animation-delay:.14s }
.js .reveal.is-in.stagger > *:nth-child(4){ animation-delay:.20s }
@keyframes rise{ from{ opacity:0; transform:translateY(12px); } to{ opacity:1; transform:none; } }

@media (prefers-reduced-motion: reduce){
  .reveal, .js .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .js .reveal.is-in > *{ animation: none !important; }
  html{ scroll-behavior: auto; }
}

/* =====================================================
   POLISHES
   ===================================================== */
/* underline draw on .uline */
.uline{
  position: relative; display: inline;
  background-image: linear-gradient(var(--azure), var(--azure));
  background-repeat: no-repeat;
  background-position: 0 92%; background-size: 0% 2px;
  transition: background-size .9s var(--ease);
}
.is-in .uline{ background-size: 100% 2px; }

/* count-up tabular */
.trust__num[data-count]{ font-variant-numeric: tabular-nums; }

/* magnetic */
.magnetic{ will-change: transform; }
