/* ============================================================
   LAKSHMI SCHOOL, MADURAI
   Design system — light blue · white · warm gold
   Fraunces (display) · Inter (UI/body)
============================================================ */

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

:root {
  /* Brand — bright, airy blue */
  --blue:       #2f6fb3;   /* primary */
  --blue-dk:    #235a92;
  --blue-deep:  #17416e;   /* headings */
  --blue-lt:    #6aa6de;
  --sky:        #eef5fc;   /* soft section bg */
  --sky-2:      #e0edfa;
  --gold:       #c99a3f;
  --gold-lt:    #e4bf6d;
  --gold-dk:    #a67c2b;
  --ink:        #22344a;
  --ink-soft:   #5a6a80;
  --paper:      #ffffff;
  --line:       #e4eaf1;
  --line-blue:  #d3e2f2;
  --line-dk:    rgba(255,255,255,0.18);
  --white:      #ffffff;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --r:    10px;
  --r-lg: 22px;
  --r-pill: 999px;
  --sh:    0 4px 22px rgba(23,65,110,0.08);
  --sh-lg: 0 20px 56px rgba(23,65,110,0.14);
  --ease:  0.4s cubic-bezier(0.16,1,0.3,1);
  --wrap:  1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue-lt); color: var(--white); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ── Reveal on scroll — quiet, refined fade + rise ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════ TOP BAR ══════════════ */
.topbar { background: var(--blue-deep); color: var(--white); font-size: .8rem; }
.topbar__in { display: flex; align-items: center; gap: 14px; height: 40px; }
.topbar__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--blue-deep); font-weight: 800; font-size: .68rem;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease);
}
.topbar__badge:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,154,63,.4); }
.topbar__badge::before { content: "★"; font-size: .72em; }
.topbar__text { color: rgba(255,255,255,.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__link { margin-left: auto; color: var(--gold-lt); font-weight: 600; white-space: nowrap; }
.topbar__link:hover { color: var(--white); }
@media (max-width: 720px) { .topbar__text { display: none; } }

/* ══════════════ NAV ══════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease), background var(--ease);
}
.nav.scrolled { box-shadow: var(--sh); background: rgba(255,255,255,0.96); }
.nav__bar { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 48px; width: auto; flex-shrink: 0; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.28rem; color: var(--blue-deep); letter-spacing: -.01em; }
.brand__name--light { color: var(--white); }
.brand__sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 13px; border-radius: var(--r-pill); transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--blue); }
.nav__link.is-active { color: var(--blue-deep); font-weight: 600; }
.nav__cta {
  margin-left: 8px; background: var(--blue); color: var(--white);
  font-weight: 600; font-size: .92rem; padding: 10px 20px; border-radius: var(--r-pill);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.nav__cta:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: var(--sh); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-right: -8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--blue-deep); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 114px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); padding: 18px 24px 28px; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg); transform: translateY(calc(-100% - 130px)); transition: transform .42s var(--ease);
    max-height: calc(100vh - 114px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__link { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; text-align: center; padding: 15px; font-size: 1.05rem; }
}

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .98rem; padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  cursor: pointer; border: 1.5px solid transparent; white-space: nowrap;
}
.btn--gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--blue-deep); box-shadow: 0 8px 26px rgba(201,154,63,0.34); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(201,154,63,0.46); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: var(--sh); }
.btn--ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn--outline { border-color: var(--blue); color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ══════════════ HERO CAROUSEL ══════════════ */
.hero { position: relative; height: min(88vh, 780px); min-height: 540px; overflow: hidden; background: var(--sky); }
.carousel, .carousel__track, .slide { position: absolute; inset: 0; }
.slide {
  opacity: 0; transform: scale(1.06); transition: opacity 1.1s ease, transform 6s ease;
  background-size: cover; background-position: center;
}
.slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.slide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,32,58,.8) 0%, rgba(11,32,58,.45) 46%, rgba(11,32,58,.08) 100%), linear-gradient(0deg, rgba(11,32,58,.72), transparent 46%); }

.slide__cap { position: absolute; left: 0; right: 0; bottom: 92px; z-index: 3; }
.slide__cap-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.slide__kicker { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 8px; }
.slide__title { font-family: var(--ff-display); font-weight: 500; color: var(--white); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.16; max-width: 22ch; letter-spacing: -.01em; text-shadow: 0 2px 18px rgba(11,32,58,.5); }

/* Constant hero overlay (brand + CTA) */
.hero__lead { position: absolute; left: 0; right: 0; top: clamp(40px, 8vh, 82px); z-index: 4; pointer-events: none; }
.hero__lead-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.hero__eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px; text-shadow: 0 2px 12px rgba(11,32,58,.5); }
.hero__title { font-family: var(--ff-display); font-weight: 500; color: var(--white); font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.02; letter-spacing: -.02em; max-width: 16ch; text-shadow: 0 3px 24px rgba(11,32,58,.55); }
.hero__title em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.hero__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; pointer-events: auto; }

/* Controls */
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(11,32,58,.35); border: 1px solid rgba(255,255,255,.35); color: var(--white);
  cursor: pointer; backdrop-filter: blur(6px); transition: background var(--ease), transform var(--ease); opacity: .9;
}
.carousel__arrow:hover { background: var(--gold); color: var(--blue-deep); border-color: transparent; }
.carousel__arrow--prev { left: 20px; }
.carousel__arrow--next { right: 20px; }
.carousel__dots { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.dot { width: 34px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: background var(--ease), transform var(--ease); padding: 0; }
.dot.is-active { background: var(--gold-lt); transform: scaleY(1.6); }

@media (max-width: 720px) {
  .hero { height: auto; min-height: 0; }
  .carousel, .carousel__track { position: relative; height: 60vh; min-height: 400px; }
  .slide { inset: 0; }
  .slide__cap { bottom: 74px; }
  .hero__lead { position: relative; top: 0; background: var(--blue-deep); padding: 38px 0 42px; }
  .slide__scrim { background: linear-gradient(0deg, rgba(11,32,58,.85), rgba(11,32,58,.2) 62%); }
  .carousel__arrow { width: 42px; height: 42px; }
  .carousel__arrow--prev { left: 12px; } .carousel__arrow--next { right: 12px; }
}

/* ══════════════ STATS STRIP ══════════════ */
.stats { background: var(--sky); border-bottom: 1px solid var(--line-blue); }
.stats__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 42px 24px; }
.stat { display: flex; flex-direction: column; gap: 6px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line-blue); }
.stat__num { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1; color: var(--blue-deep); }
.stat__num em { color: var(--gold-dk); font-style: normal; }
.stat__label { font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 620px) { .stats__in { grid-template-columns: 1fr 1fr; gap: 30px 8px; } .stat:nth-child(3)::before { display: none; } }

/* ══════════════ HERITAGE STRIP ══════════════ */
.trust { background: var(--blue); color: var(--white); }
.trust__in { padding: 24px; text-align: center; }
.trust__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); font-weight: 700; margin-bottom: 6px; }
.trust__name { font-family: var(--ff-display); font-size: clamp(1rem, 2.4vw, 1.35rem); font-style: italic; color: rgba(255,255,255,0.95); font-weight: 400; }

/* ══════════════ SECTIONS ══════════════ */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--soft { background: var(--sky); }
.section__head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__sub { margin-top: 16px; font-size: 1.1rem; color: var(--ink-soft); line-height: 1.7; }

.kicker { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 16px; }
.h2 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.15rem); line-height: 1.08; letter-spacing: -.02em; color: var(--blue-deep); }
.lead { margin-top: 20px; font-size: 1.22rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.body { margin-top: 18px; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-weight: 600; color: var(--blue); }
.link-arrow svg { transition: transform var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ══════════════ SILVER JUBILEE ══════════════ */
.jubilee { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--white) 0%, var(--sky) 100%); color: var(--ink); padding: clamp(72px, 11vw, 130px) 0; border-bottom: 1px solid var(--line-blue); }
.jubilee::before { content: ""; position: absolute; inset: 0; background: radial-gradient(760px 460px at 88% 6%, rgba(201,154,63,0.12), transparent 62%), radial-gradient(680px 460px at 4% 100%, rgba(47,111,179,0.1), transparent 60%); }
.jubilee__in { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (max-width: 900px) { .jubilee__in { grid-template-columns: 1fr; gap: 44px; } }
.jubilee__mark { text-align: center; }
.jubilee__num {
  font-family: var(--ff-display); font-weight: 600; font-size: clamp(8rem, 22vw, 15rem); line-height: .82; letter-spacing: -.04em;
  background: linear-gradient(160deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 26px rgba(201,154,63,.28));
}
.jubilee__ribbon { display: inline-block; margin-top: 10px; font-size: .8rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-dk); }
.jubilee__years { margin-top: 6px; font-family: var(--ff-display); font-style: italic; font-size: 1.35rem; color: var(--blue-deep); }
.jubilee__h { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; color: var(--blue-deep); }
.jubilee__p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.75; margin-bottom: 30px; max-width: 52ch; }
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--line-blue); padding-left: 26px; }
.milestone { position: relative; padding: 12px 0; }
.milestone::before { content: ""; position: absolute; left: -33px; top: 18px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,154,63,.16); }
.milestone__yr { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--blue); }
.milestone__txt { color: var(--ink-soft); font-size: .98rem; }

/* ══════════════ ABOUT (editorial + image) ══════════════ */
.about__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (max-width: 860px) { .about__in { grid-template-columns: 1fr; gap: 36px; } }
.about__figure { position: relative; }
.about__img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.about__badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: var(--r-lg);
  padding: 18px 24px; box-shadow: var(--sh-lg); border: 1px solid var(--line); text-align: center;
}
@media (max-width: 500px) { .about__badge { left: 12px; bottom: -16px; } }
.about__badge b { display: block; font-family: var(--ff-display); font-size: 1.8rem; color: var(--blue-deep); line-height: 1; }
.about__badge span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

/* ══════════════ VISION / MISSION — manifesto (blue band) ══════════════ */
.manifesto { background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dk) 100%); color: var(--white); position: relative; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; inset: 0; background: radial-gradient(760px 460px at 90% 0%, rgba(255,255,255,.16), transparent 60%); }
.manifesto__in { position: relative; padding: clamp(64px, 9vw, 110px) 0; }
.manifesto .kicker { color: var(--gold-lt); }
.manifesto__vision { font-family: var(--ff-display); font-weight: 400; font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.32; max-width: 22ch; color: var(--white); }
.manifesto__vision b { font-style: normal; font-weight: 600; color: var(--gold-lt); }
.words { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: clamp(40px,6vw,64px) 0 clamp(32px,5vw,48px); border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
@media (max-width: 720px) { .words { grid-template-columns: 1fr; } }
.word { padding: 30px 8px 30px 0; position: relative; }
.word + .word { padding-left: 34px; }
.word + .word::before { content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px; background: rgba(255,255,255,.22); }
@media (max-width: 720px) { .word + .word { padding-left: 0; } .word + .word::before { display: none; } .word { border-top: 1px solid rgba(255,255,255,.22); } }
.word:first-child { border-top: 0; }
.word__idx { font-family: var(--ff-display); font-size: .9rem; color: var(--gold-lt); font-weight: 600; }
.word__big { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--white); margin: 6px 0 8px; letter-spacing: -.01em; }
.word__desc { color: rgba(255,255,255,.82); font-size: .98rem; line-height: 1.6; }
.manifesto__mission { display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.manifesto__mtag { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); flex-shrink: 0; }
.manifesto__mtext { color: rgba(255,255,255,.92); font-size: 1.1rem; line-height: 1.7; max-width: 60ch; }

/* ══════════════ WHY — bento ══════════════ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(150px, auto); gap: 16px; }
.bento__cell { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform var(--ease), box-shadow var(--ease); }
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.bento__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.bento__h { font-family: var(--ff-display); font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.bento__p { font-size: .98rem; line-height: 1.6; }

/* feature (big, blue) */
.bento__cell--feature { grid-column: span 2; grid-row: span 2; background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dk) 100%); color: var(--white); }
.bento__cell--feature::after { content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); }
.bento__cell--feature .bento__kicker { color: var(--gold-lt); }
.bento__cell--feature .bento__h { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--white); }
.bento__cell--feature .bento__p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 34ch; }

/* photo cell */
.bento__cell--photo { grid-column: span 2; grid-row: span 1; color: var(--white); background-size: cover; background-position: center; }
.bento__cell--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,32,58,.82), rgba(11,32,58,.15) 70%); z-index: 0; }
.bento__cell--photo > * { position: relative; z-index: 1; }
.bento__cell--photo .bento__kicker { color: var(--gold-lt); }
.bento__cell--photo .bento__h { color: var(--white); font-size: 1.4rem; }
.bento__cell--photo .bento__p { color: rgba(255,255,255,.85); }

/* stat cell */
.bento__cell--stat { grid-column: span 1; grid-row: span 1; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--blue-deep); justify-content: center; text-align: left; }
.bento__stat-num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; }
.bento__stat-label { font-weight: 600; font-size: .92rem; margin-top: 6px; }

/* light cells */
.bento__cell--light { background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh); padding-top: 92px; }
.bento__cell--light .bento__kicker { color: var(--gold-dk); }
.bento__cell--light .bento__h { color: var(--blue-deep); font-size: 1.28rem; }
.bento__cell--light .bento__p { color: var(--ink-soft); }
.bento__ic { position: absolute; top: 26px; left: 30px; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--sky); color: var(--blue); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--feature { grid-column: span 2; grid-row: span 1; min-height: 220px; }
  .bento__cell--photo { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell, .bento__cell--feature, .bento__cell--photo { grid-column: span 1; }
}

/* ══════════════ ACADEMICS split ══════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
@media (max-width: 700px) { .split { grid-template-columns: 1fr; } }
.split__col { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dk) 100%); color: var(--white); border-radius: var(--r-lg); padding: 40px 34px; }
.split__col::before { content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%); }
.split__tag { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-lt); background: rgba(255,255,255,0.16); padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 18px; }
.split__h { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.split__p { color: rgba(255,255,255,0.86); font-size: 1.02rem; line-height: 1.7; }
.streams { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 700px) { .streams { grid-template-columns: 1fr 1fr; } }
.stream { background: var(--sky); border: 1px solid var(--line-blue); border-radius: var(--r); padding: 20px; text-align: center; font-weight: 600; color: var(--blue-deep); font-size: .96rem; transition: transform var(--ease), border-color var(--ease), background var(--ease); }
.stream:hover { transform: translateY(-3px); border-color: var(--blue); background: var(--white); }

/* ══════════════ LAKSHMI STARS ══════════════ */
.section--stars { background: var(--sky); }
.stars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .stars { grid-template-columns: 1fr 1fr; } }
.star { background: var(--white); border: 1px solid var(--line-blue); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--sh); transition: transform var(--ease), box-shadow var(--ease); }
.star:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.star__medal { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 14px; }
.star__medal--gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--blue-deep); }
.star__medal--silver { background: linear-gradient(135deg, #e8e8ea, #b9bcc2); color: #2a2d33; }
.star__medal--bronze { background: linear-gradient(135deg, #d9a679, #b87a45); color: #3a2412; }
.star p { color: var(--ink); font-weight: 500; font-size: 1.02rem; }

/* ══════════════ TOPPERS ══════════════ */
.toppers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .toppers { grid-template-columns: 1fr; } }
.topper { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh); border-top: 4px solid var(--gold); transition: transform var(--ease), box-shadow var(--ease); }
.topper:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.topper__exam { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 18px; }
.topper__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.topper__list li { font-family: var(--ff-display); font-size: 1.24rem; font-weight: 500; color: var(--blue-deep); padding-left: 24px; position: relative; }
.topper__list li::before { content: "★"; position: absolute; left: 0; color: var(--gold); font-size: .9rem; top: 5px; }

/* ══════════════ CTA (photo) ══════════════ */
.cta { position: relative; overflow: hidden; color: var(--white); padding: clamp(64px, 10vw, 120px) 0; background-size: cover; background-position: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(23,65,110,.92) 0%, rgba(23,65,110,.72) 60%, rgba(35,90,146,.6) 100%); }
.cta__in { position: relative; max-width: 720px; }
.cta .kicker { color: var(--gold-lt); }
.cta__h { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 18px; }
.cta__p { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 54ch; margin-bottom: 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ══════════════ CONTACT ══════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: stretch; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.contact__list li { display: flex; gap: 16px; font-size: 1.04rem; color: var(--ink-soft); line-height: 1.55; }
.contact__list strong { color: var(--blue-deep); font-weight: 600; }
.contact__list a:hover { color: var(--blue); }
.contact__ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--sky); color: var(--blue); }
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh); min-height: 340px; }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: var(--blue-dk); color: rgba(255,255,255,0.72); padding: clamp(56px,8vw,84px) 0 0; }
.footer__in { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dk); }
@media (max-width: 800px) { .footer__in { grid-template-columns: 1fr; gap: 40px; } }
.footer__logo { height: 56px; width: auto; background: var(--white); padding: 8px; border-radius: 12px; margin-bottom: 16px; }
.footer__tag { font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.9); margin: 0 0 14px; max-width: 40ch; line-height: 1.5; }
.footer__lvs { font-size: .84rem; color: rgba(255,255,255,0.6); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 520px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__h { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); font-weight: 700; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.78); font-size: .96rem; transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 24px 30px; font-size: .82rem; color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════════════════════
   INTERIOR PAGES — shared components
════════════════════════════════════════════════════════════ */

/* ── Dropdown nav ── */
.nav__item { position: relative; }
.nav__btn {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer;
  font-family: var(--ff-body); font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 13px; border-radius: var(--r-pill); transition: color .2s;
}
.nav__btn:hover, .nav__item:hover .nav__btn { color: var(--blue); }
.nav__btn svg { transition: transform var(--ease); }
.nav__item:hover .nav__btn svg { transform: rotate(180deg); }
.nav__drop {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--sh-lg); padding: 8px; opacity: 0; visibility: hidden; transition: opacity var(--ease), transform var(--ease);
}
.nav__item:hover .nav__drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop a { display: block; padding: 10px 14px; border-radius: 9px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); transition: background .18s, color .18s; }
.nav__drop a:hover { background: var(--sky); color: var(--blue-deep); }

@media (max-width: 960px) {
  .nav__item { width: 100%; }
  .nav__btn { width: 100%; justify-content: space-between; padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__item:hover .nav__btn svg { transform: none; }
  .nav__drop {
    position: static; transform: none; opacity: 1; visibility: visible; min-width: 0;
    box-shadow: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 4px 0 10px 12px; background: transparent;
  }
  .nav__drop a { padding: 10px 12px; font-size: .98rem; }
}

/* ── Interior page hero ── */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dk) 100%); color: var(--white); padding: clamp(52px, 8vw, 92px) 0 clamp(48px, 7vw, 78px); }
.page-hero--photo { background-size: cover; background-position: center; }
.page-hero--photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(23,65,110,.92), rgba(23,65,110,.72) 65%, rgba(35,90,146,.6)); }
.page-hero::after { content: ""; position: absolute; top: -80px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(201,154,63,.28), transparent 70%); }
.page-hero__in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 18px; font-weight: 500; }
.crumb a { color: rgba(255,255,255,.75); } .crumb a:hover { color: var(--white); }
.crumb span { color: var(--gold-lt); }
.page-hero__eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
.page-hero__title { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -.02em; max-width: 18ch; }
.page-hero__sub { margin-top: 18px; font-size: clamp(1.05rem, 2vw, 1.22rem); color: rgba(255,255,255,.88); max-width: 60ch; line-height: 1.6; }

/* ── Prose ── */
.prose { max-width: 68ch; }
.prose p { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.prose p strong, .prose strong { color: var(--blue-deep); font-weight: 600; }
.lede-p { font-size: 1.28rem; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 24px; }

/* ── Tiles (generic feature cards) ── */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.tile:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--blue-lt); }
.tile__ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--sky); color: var(--blue); margin-bottom: 18px; }
.tile__h { font-family: var(--ff-display); font-size: 1.26rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 10px; }
.tile__p { color: var(--ink-soft); font-size: .98rem; line-height: 1.65; }
.tile__p + .tile__p { margin-top: 10px; }

/* ── Metrics ── */
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.metric { background: var(--white); border: 1px solid var(--line-blue); border-radius: var(--r-lg); padding: 30px 24px; text-align: center; box-shadow: var(--sh); }
.metric__num { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; color: var(--blue); }
.metric__num em { font-style: normal; color: var(--gold-dk); }
.metric__label { margin-top: 10px; font-size: .86rem; color: var(--ink-soft); font-weight: 500; letter-spacing: .02em; }

/* ── People (committee / staff) ── */
.people { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh); transition: transform var(--ease), box-shadow var(--ease); }
.person:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.person__avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-lt), var(--blue)); color: var(--white); display: grid; place-items: center; font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 16px; }
.person__name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--blue-deep); }
.person__role { font-size: .9rem; color: var(--gold-dk); font-weight: 600; margin-top: 4px; letter-spacing: .01em; }

/* ── Awards ── */
.awards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.award { position: relative; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--sh); transition: transform var(--ease), box-shadow var(--ease); }
.award:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.award__name { font-family: var(--ff-display); font-size: 1.14rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 6px; }
.award__by { font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4 / 3; box-shadow: var(--sh); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { aspect-ratio: 3 / 4; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (max-width: 560px) { .gallery__item--wide { grid-column: span 1; } }
.gallery__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px; background: linear-gradient(0deg, rgba(11,32,58,.8), transparent); color: var(--white); font-size: .88rem; font-weight: 500; }

/* ── Publications ── */
.pubs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pub { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh); transition: transform var(--ease), box-shadow var(--ease); }
.pub:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.pub__badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); background: var(--sky); padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 16px; }
.pub__h { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 10px; }
.pub__p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; margin-bottom: 16px; }
.pub__meta { font-size: .86rem; color: var(--ink-soft); font-weight: 500; }

/* ── Interviews (jubilee) ── */
.interviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.interview { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh); display: flex; gap: 16px; align-items: center; transition: transform var(--ease), box-shadow var(--ease); }
.interview:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.interview__play { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: var(--white); display: grid; place-items: center; }
.interview__names { font-family: var(--ff-display); font-size: 1.06rem; font-weight: 500; color: var(--blue-deep); line-height: 1.35; }

/* ── Pillars (academic levels) ── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--sh); border-top: 4px solid var(--blue); }
.pillar__stage { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 8px; }
.pillar__h { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 14px; }
.pillar__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pillar__list li { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: .98rem; line-height: 1.5; }
.pillar__list li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ── Chips ── */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { background: var(--white); border: 1px solid var(--line-blue); border-radius: var(--r-pill); padding: 12px 22px; font-weight: 600; color: var(--blue-deep); font-size: .96rem; box-shadow: var(--sh); transition: transform var(--ease), border-color var(--ease); }
.chip:hover { transform: translateY(-3px); border-color: var(--blue); }

/* ── Results table ── */
.rtable { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--line); font-size: .96rem; }
.rtable th { background: var(--blue-deep); color: var(--white); font-weight: 600; text-align: left; padding: 15px 18px; font-size: .84rem; letter-spacing: .04em; text-transform: uppercase; }
.rtable td { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--ink); }
.rtable tr:nth-child(even) td { background: var(--sky); }
.rtable__wrap { overflow-x: auto; border-radius: var(--r-lg); }

/* ── Split intro (image + text) ── */
.imgblock { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.imgblock--rev .imgblock__media { order: 2; }
@media (max-width: 820px) { .imgblock { grid-template-columns: 1fr; gap: 30px; } .imgblock--rev .imgblock__media { order: 0; } }
.imgblock__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-lg); object-fit: cover; }

/* ── Laureates (toppers with real photos) ── */
.laureate-group + .laureate-group { margin-top: clamp(36px, 5vw, 52px); }
.laureate-group__h { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); }
.laureate-group__h::after { content: ""; flex: 1; height: 1px; background: var(--line-blue); }
.laureates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
@media (max-width: 620px) { .laureates { grid-template-columns: repeat(3, 1fr); gap: 22px 10px; } }
.laureate { text-align: center; }
.laureate__photo {
  width: clamp(88px, 13vw, 128px); aspect-ratio: 1; border-radius: 50%;
  object-fit: cover; object-position: top center; margin: 0 auto 16px;
  border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold-lt), 0 10px 24px rgba(23,65,110,.16);
  background: var(--sky); transition: transform var(--ease), box-shadow var(--ease);
}
.laureate:hover .laureate__photo { transform: translateY(-4px); box-shadow: 0 0 0 2px var(--gold), 0 16px 30px rgba(23,65,110,.22); }
.laureate__name { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 600; color: var(--blue-deep); line-height: 1.2; }
.laureate__meta { font-size: .74rem; color: var(--gold-dk); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 5px; }

/* ── Hallmarks (classic editorial — replaces bento) ── */
.hallmarks { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .hallmarks { grid-template-columns: 1fr; gap: 36px; } }
.hallmarks__figure { position: relative; }
.hallmarks__figure img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.hallmarks__seal { position: absolute; bottom: -22px; right: -18px; background: var(--white); border-radius: 50%; width: 108px; height: 108px; display: grid; place-content: center; text-align: center; box-shadow: var(--sh-lg); border: 1px solid var(--line); }
@media (max-width: 500px) { .hallmarks__seal { right: 12px; } }
.hallmarks__seal b { font-family: var(--ff-display); font-size: 1.7rem; color: var(--blue-deep); line-height: 1; }
.hallmarks__seal span { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); font-weight: 700; }
.hallmark { display: flex; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.hallmark:first-child { border-top: 0; padding-top: 0; }
.hallmark:last-child { padding-bottom: 0; }
.hallmark__num { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--gold); line-height: 1.1; min-width: 2.2ch; }
.hallmark__h { font-family: var(--ff-display); font-size: 1.34rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 7px; letter-spacing: -.01em; }
.hallmark__p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }

/* ── Videos (real YouTube interviews, click-to-load) ── */
.videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.video { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--line); background: var(--white); transition: transform var(--ease), box-shadow var(--ease); }
.video:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.video__frame { position: relative; aspect-ratio: 16 / 9; cursor: pointer; overflow: hidden; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dk) 100%); }
.video__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,32,58,.5), transparent 60%); }
.video__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.video__play span { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(11,32,58,.35); display: grid; place-items: center; transition: transform var(--ease), background var(--ease); }
.video__frame:hover .video__play span { transform: scale(1.08); background: var(--gold-lt); }
.video__play svg { color: var(--blue-deep); margin-left: 4px; }
.video iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.video__cap { padding: 16px 20px; }
.video__names { font-family: var(--ff-display); font-size: 1.06rem; font-weight: 600; color: var(--blue-deep); line-height: 1.3; }
.video__role { font-size: .8rem; color: var(--gold-dk); font-weight: 600; letter-spacing: .04em; margin-top: 3px; }
