/* ════════════════════════════════════════════════════════════════
   RN OXFORD PUBLIC SCHOOL — HOMEPAGE STYLES
   Compact · image + icon based · big visible typography
   ════════════════════════════════════════════════════════════════ */

:root {
  --pink: #c41472;
  --pink-deep: #9c0e59;
  --pink-light: #e8388e;
  --pink-pale: #fce8f3;
  --pink-tint: #fff5fb;

  --navy: #16082a;
  --navy-mid: #271050;
  --navy-soft: #3d1a6e;

  --gold: #f5a623;
  --gold-deep: #d4881a;

  --bg: #f9f7fc;
  --surface: #ffffff;
  --surface-2: #f4f0f9;
  --surface-alt: #fdfbff;

  --border: rgba(22, 8, 42, 0.08);
  --border-mid: rgba(22, 8, 42, 0.14);

  --text: #16082a;
  --text-muted: #4a3868;
  --text-faint: #8a7aa8;

  --font-head: "Plus Jakarta Sans", "Roboto", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(22, 8, 42, 0.06), 0 2px 8px rgba(22, 8, 42, 0.04);
  --sh-md: 0 6px 20px rgba(22, 8, 42, 0.08), 0 10px 30px rgba(22, 8, 42, 0.06);
  --sh-lg: 0 14px 40px rgba(22, 8, 42, 0.13), 0 20px 50px rgba(22, 8, 42, 0.08);
  --sh-pink: 0 6px 18px rgba(196, 20, 114, 0.3);
  --sh-gold: 0 6px 18px rgba(245, 166, 35, 0.32);

  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1240px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }

.ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   ANIMATION SYSTEM
   ════════════════════════════════════════════════════════════════ */

/* base reveal — hidden state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal-zoom  { opacity: 0; transform: scale(0.94);       transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }

/* visible state */
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
  opacity: 1;
  transform: none;
}

/* stagger children when parent enters */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s;  }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.6s;  }

/* keyframes */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pop-in {
  0%   { opacity: 0; transform: scale(0.5); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .announce__track { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════════════════════ */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #d8c8f5;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar__left, .top-bar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  font-weight: 500;
}
.top-bar__item:hover { color: var(--gold); }
.top-bar__item .ico { width: 16px; height: 16px; }
.top-bar__hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
}
.top-bar__hours .ico { width: 15px; height: 15px; }
.top-bar__social {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.top-bar__social:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.top-bar__social .ico { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .top-bar__left, .top-bar__right { gap: 14px; }
  .top-bar { font-size: 0.84rem; }
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.navbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo__img {
  display: block;
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__list li { white-space: nowrap; }
.nav__list a {
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav__list a:hover { background: var(--surface-2); color: var(--pink); }
.nav__cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: var(--r-full) !important;
  box-shadow: var(--sh-pink);
  margin-left: 6px;
}
.nav__cta:hover { background: var(--pink-deep) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.4px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 8px;
}
.mobile-menu a:hover { background: var(--surface-2); color: var(--pink); }
.mobile-menu__cta {
  display: block;
  text-align: center;
  background: var(--pink);
  color: #fff !important;
  padding: 12px !important;
  border-radius: var(--r-full);
  margin-top: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav__list { display: none; }
  .hamburger { display: flex; }
}

/* ════════════════════════════════════════════════════════════════
   HERO BANNER
   ════════════════════════════════════════════════════════════════ */
.hero-banner {
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}
.hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: hero-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════════════════════════════════════════
   ANNOUNCEMENT MARQUEE
   ════════════════════════════════════════════════════════════════ */
.announce {
  display: flex;
  align-items: stretch;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
}
.announce__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 30px 11px 22px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.74rem;
  white-space: nowrap;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}
.announce__label .ico { width: 14px; height: 14px; }
.announce__viewport { flex: 1; overflow: hidden; position: relative; }
.announce__viewport::before, .announce__viewport::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 50px; pointer-events: none; z-index: 2;
}
.announce__viewport::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.announce__viewport::after  { right: 0; background: linear-gradient(-90deg, var(--navy-mid), transparent); }
.announce__track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  padding: 11px 0;
  animation: announce-scroll 55s linear infinite;
  width: max-content;
}
.announce__track:hover { animation-play-state: paused; }
.announce__item { font-size: 0.92rem; color: #f4eaff; font-weight: 400; }
.announce__item b { color: var(--gold); font-weight: 700; }
.announce__dot { color: var(--gold); font-size: 0.45rem; opacity: 0.7; }
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .announce__label { font-size: 0.66rem; padding: 9px 24px 9px 16px; }
  .announce__item { font-size: 0.8rem; }
  .announce__track { animation-duration: 40s; gap: 18px; }
}

/* ════════════════════════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats-strip__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.stat-item { text-align: center; }
.stat-item__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.3rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item__num span { color: var(--pink); font-weight: 800; }
.stat-item__lbl {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-top: 6px;
}
@media (max-width: 760px) {
  .stats-strip__inner { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
}
@media (max-width: 480px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   SECTION SHELL · TYPOGRAPHY
   ════════════════════════════════════════════════════════════════ */
.sec {
  padding: clamp(28px, 4vw, 52px) clamp(16px, 4vw, 28px);
}
.sec--alt {
  background:
    linear-gradient(180deg, #ebe1f3 0%, #ded0ec 100%);
}
.sec__inner { max-width: var(--wrap); margin: 0 auto; }
.sec__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.sec__sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.eyebrow .ico { width: 13px; height: 13px; stroke-width: 2.4; }
.eyebrow--on-dark {
  background: rgba(245, 166, 35, 0.18);
  color: var(--gold);
}

.h-display {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 1.4rem + 2.3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 14px 0 4px;
}
.h-display em {
  font-style: normal;
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec__more {
  display: flex;
  width: max-content;
  margin: 30px auto 0;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--surface);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-full);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s var(--ease);
}
.sec__more:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.sec__more .ico { width: 16px; height: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.93rem;
  font-family: var(--font-body);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 16px; height: 16px; }
.btn--primary { background: var(--pink); color: #fff; box-shadow: var(--sh-pink); }
.btn--primary:hover { background: var(--pink-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border-mid); }
.btn--ghost:hover { border-color: var(--navy); background: var(--surface); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--sh-gold);
  position: relative;
  animation: pulse-ring 2.8s ease-out infinite;
}
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); animation: none; }
.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ════════════════════════════════════════════════════════════════
   ABOUT — photo mosaic + quote-led panel
   ════════════════════════════════════════════════════════════════ */
.about-v2 {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

/* Single campus photo */
.about-v2__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--surface-2);
  height: 100%;
  min-height: 360px;
}
.about-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-v2__photo:hover img { transform: scale(1.04); }
.about-v2__stamp {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  line-height: 1.05;
  box-shadow: var(--sh-gold), 0 0 0 4px rgba(255, 255, 255, 0.9);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  animation: float-soft 4.5s ease-in-out infinite;
}
.about-v2__stamp span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-v2__stamp strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  margin-top: 2px;
}

/* Content panel */
.about-v2__panel { padding-top: 4px; }

.about-v2__quote {
  position: relative;
  margin: 0 0 22px;
  padding: 22px 22px 22px 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.55;
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.about-v2__quote::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
}
.about-v2__qmark {
  width: 26px;
  height: 26px;
  color: var(--gold);
  opacity: 0.85;
}
.about-v2__qmark--open {
  position: absolute;
  top: 18px;
  left: 18px;
  transform: rotate(180deg);
}
.about-v2__qmark--close {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  transform: translateY(-2px);
}

.about-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.about-v2__chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.about-v2__chips span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.about-v2__chips .ico {
  width: 13px; height: 13px;
  color: var(--pink);
  stroke-width: 2.4;
}
.about-v2__chips span:hover .ico { color: var(--gold); }

.about-v2__copy {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-size: 0.96rem;
}

/* Vision & Mission as tagged text blocks (no card wrapper) */
.about-v2__vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
}
.about-v2__vm-item { position: relative; padding-left: 14px; }
.about-v2__vm-item::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 2px;
  background: var(--vm-rule, var(--pink));
}
.about-v2__vm-item--pink { --vm-rule: var(--pink); --vm-tag-bg: var(--pink); }
.about-v2__vm-item--gold { --vm-rule: var(--gold); --vm-tag-bg: var(--gold-deep); }
.about-v2__vm-tag {
  display: inline-block;
  background: var(--vm-tag-bg);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}
.about-v2__vm-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-v2 { grid-template-columns: 1fr; }
  .about-v2__photo {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-width: 520px;
    margin: 0 auto;
  }
  .about-v2__stamp { padding: 10px 16px; }
  .about-v2__stamp strong { font-size: 1.35rem; }
}
@media (max-width: 600px) {
  .about-v2__vm { grid-template-columns: 1fr; gap: 14px; }
  .about-v2__quote { font-size: 0.96rem; padding-left: 48px; }
}

/* ════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.why-card h3,
.why-card p,
.why-card ul,
.why-card ul li { transition: color 0.3s var(--ease); }
.why-card .why-card__ico { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.why-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  box-shadow: var(--sh-lg);
}
.why-card:hover h3 { color: #fff; }
.why-card:hover p { color: rgba(255, 255, 255, 0.8); }
/* The inline color: var(--text-muted) on the <ul> stays legible on the
   default surface but disappears against the dark hover gradient. Force
   any nested list (and its bullet ● glyphs) to near-white on hover. */
.why-card:hover ul,
.why-card:hover ul li { color: rgba(255, 255, 255, 0.88) !important; }
.why-card:hover .why-card__ico { transform: scale(1.06) rotate(-4deg); box-shadow: var(--sh-md); }
.why-card__ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: var(--sh-sm);
}
.why-card__ico .ico { width: 24px; height: 24px; stroke-width: 2.2; }
.why-card__ico--pink  { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%); }
.why-card__ico--gold  { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); }
.why-card__ico--blue  { background: linear-gradient(135deg, #4f6bef 0%, #2842c4 100%); }
.why-card__ico--green { background: linear-gradient(135deg, #2ec06a 0%, #1d8f4a 100%); }
.why-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .why-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   FACILITIES — SHOWCASE (stage + thumbnail rail)
   ════════════════════════════════════════════════════════════════ */
.fac-showcase {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  align-items: stretch;
  height: 460px;
}
.fac-showcase__stage {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 100%;
  background: var(--navy);
  box-shadow: var(--sh-lg);
  isolation: isolate;
}
.fac-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: opacity 0.4s ease, transform 1.2s var(--ease);
  z-index: 0;
}
.fac-showcase:hover .fac-showcase__img { transform: scale(1.04); }
.fac-showcase__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 8, 42, 0) 30%, rgba(22, 8, 42, 0.88) 100%),
    linear-gradient(90deg, rgba(22, 8, 42, 0.35) 0%, rgba(22, 8, 42, 0) 50%);
  z-index: 1;
  pointer-events: none;
}
.fac-showcase__ico {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-gold);
  z-index: 2;
  animation: float-soft 4.5s ease-in-out infinite;
}
.fac-showcase__ico .ico { width: 24px; height: 24px; stroke-width: 2.4; }
.fac-showcase__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(22px, 3vw, 38px);
  color: #fff;
  z-index: 2;
  max-width: 60ch;
}
.fac-showcase__tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.95);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}
.fac-showcase__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fac-showcase__desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}
.fac-showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s, transform 0.3s var(--ease);
}
.fac-showcase__arrow--prev { left: 16px; }
.fac-showcase__arrow--next { right: 16px; }
.fac-showcase__stage:hover .fac-showcase__arrow { opacity: 1; }
.fac-showcase__arrow:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.fac-showcase__arrow .ico { width: 20px; height: 20px; }

/* Thumbnail rail */
.fac-showcase__rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  height: 100%;
  padding-right: 4px;
}
.fac-showcase__rail::-webkit-scrollbar { width: 4px; }
.fac-showcase__rail::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }
.fac-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
}
.fac-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.4s var(--ease), filter 0.25s var(--ease);
  filter: brightness(0.78) saturate(0.95);
}
.fac-thumb:hover img { transform: scale(1.06); filter: brightness(0.92) saturate(1); }
.fac-thumb.active {
  border-color: var(--gold);
  transform: translateX(-4px);
}
.fac-thumb.active img { filter: brightness(1) saturate(1.05); }
.fac-thumb.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--gold);
}
.fac-thumb__lbl {
  position: absolute;
  bottom: 6px;
  left: 8px;
  right: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

@media (max-width: 900px) {
  .fac-showcase {
    grid-template-columns: 1fr;
    height: auto;
  }
  .fac-showcase__stage {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .fac-showcase__rail {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto;
    padding-bottom: 6px;
  }
  .fac-thumb {
    flex: 0 0 130px;
    aspect-ratio: 4 / 3;
  }
  .fac-thumb.active { transform: translateY(-4px); }
  .fac-thumb.active::after { display: none; }
}
@media (max-width: 520px) {
  .fac-showcase__caption { padding: 18px; }
  .fac-showcase__ico { width: 42px; height: 42px; top: 16px; left: 16px; }
  .fac-showcase__ico .ico { width: 20px; height: 20px; }
}

/* ════════════════════════════════════════════════════════════════
   ACADEMICS
   ════════════════════════════════════════════════════════════════ */
.acad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.acad-card {
  position: relative;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.acad-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent, var(--gold));
  z-index: 3;
}
.acad-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-glow, rgba(245, 166, 35, 0.22)), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s var(--ease);
}
.acad-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.acad-card:hover::after { opacity: 1.3; }

.acad-card--pink { --accent: var(--pink-light); --accent-glow: rgba(232, 56, 142, 0.22); }
.acad-card--blue { --accent: #4f6bef; --accent-glow: rgba(79, 107, 239, 0.22); }
.acad-card--gold { --accent: var(--gold); --accent-glow: rgba(245, 166, 35, 0.22); }

.acad-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.acad-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22, 8, 42, 0.55) 100%);
  pointer-events: none;
}
.acad-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.acad-card:hover .acad-card__img img { transform: scale(1.06); }

.acad-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.acad-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  align-self: flex-start;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.acad-card__tag .ico { width: 12px; height: 12px; stroke-width: 2.4; }
.acad-card__tag--pink { color: var(--pink-light); }
.acad-card__tag--blue { color: #8ea1ff; }
.acad-card__tag--gold { color: var(--gold); }

.acad-card h3 {
  font-size: 1.36rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.01em;
}
.acad-card p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 16px;
}
.acad-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.acad-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.acad-card ul li .ico {
  width: 14px;
  height: 14px;
  color: var(--accent, var(--gold));
  stroke-width: 3;
  flex-shrink: 0;
}

@media (max-width: 900px) { .acad-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .acad-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   OLYMPIADS — chips
   ════════════════════════════════════════════════════════════════ */
.oly-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.oly-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.3s var(--ease);
}
.oly-chip:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-color: var(--gold-deep);
  box-shadow: var(--sh-gold);
}
.oly-chip__ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-gold);
  transition: none;
}
.oly-chip:hover .oly-chip__ico {
  background: rgba(22, 8, 42, 0.18);
  color: var(--navy);
}
.oly-chip__ico .ico { width: 22px; height: 22px; stroke-width: 2.2; transition: none; }
.oly-chip strong,
.oly-chip span { transition: none; }
.oly-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 800;
}
.oly-chip span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.oly-chip:hover strong { color: var(--navy); }
.oly-chip:hover span { color: rgba(22, 8, 42, 0.7); }
@media (max-width: 880px) { .oly-chips { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .oly-chips { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   BEYOND ACADEMICS — full-bleed editorial cards
   ════════════════════════════════════════════════════════════════ */
.act-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.act-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  aspect-ratio: 3 / 4;
  background: var(--navy);
  box-shadow: var(--sh-md);
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.act-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.act-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.95) saturate(1.05);
}
.act-card:hover .act-card__img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1.1);
}
.act-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(22, 8, 42, 0.15) 55%, rgba(22, 8, 42, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.act-card__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.5rem, 2.5rem + 2.5vw, 5.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
  letter-spacing: -0.04em;
  z-index: 2;
  pointer-events: none;
  transition: -webkit-text-stroke 0.3s, color 0.3s;
}
.act-card:hover .act-card__num {
  color: rgba(245, 166, 35, 0.95);
  -webkit-text-stroke: 2px var(--gold);
}
.act-card__overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 22px 22px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.act-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.95);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  align-self: flex-start;
  margin-bottom: 12px;
}
.act-card__tag .ico { width: 12px; height: 12px; stroke-width: 2.5; }
.act-card h3 {
  font-size: 1.32rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}
.act-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin-bottom 0.4s var(--ease);
}
.act-card:hover p {
  max-height: 120px;
  opacity: 1;
}
.act-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.act-card:hover .act-card__more {
  transform: translateX(0);
  opacity: 1;
}
.act-card__more .ico { width: 14px; height: 14px; stroke-width: 2.5; }

.act-chips {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.act-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid var(--border-mid);
  transition: all 0.2s var(--ease);
}
.act-chips span:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.act-chips span .ico { width: 12px; height: 12px; }

@media (max-width: 980px) { .act-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .act-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   HOUSES
   ════════════════════════════════════════════════════════════════ */
.house-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.house-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
}
.house-card--red    { --accent: #e63946; --accent-soft: rgba(230, 57, 70, 0.12); }
.house-card--blue   { --accent: #1d4ed8; --accent-soft: rgba(29, 78, 216, 0.12); }
.house-card--green  { --accent: #15803d; --accent-soft: rgba(21, 128, 61, 0.12); }
.house-card--yellow { --accent: #ca9a04; --accent-soft: rgba(202, 154, 4, 0.12); }
.house-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.house-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-soft);
}
.house-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.house-card:hover .house-card__photo img { transform: scale(1.04); }

.house-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.house-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  border-top: none;
  z-index: 10;
}
.house-card__body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.house-card__body p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 560px) { .house-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   LEADERSHIP — horizontal cards (photo left, content right)
   ════════════════════════════════════════════════════════════════ */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.leader {
  position: relative;
  display: grid;
  grid-template-columns: 152px 1fr;
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  isolation: isolate;
  min-height: 200px;
}
.leader:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.leader::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--accent, var(--pink));
  z-index: 3;
}
.leader::after {
  content: "\201C";
  position: absolute;
  bottom: -28px;
  right: 12px;
  font-family: "Georgia", serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent, var(--pink));
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.leader--gold { --accent: #f5a623; }
.leader--pink { --accent: #c41472; }
.leader--navy { --accent: #271050; }
.leader--teal { --accent: #0e7c7b; }

.leader__photo {
  position: relative;
  overflow: hidden;
  background: var(--accent);
}
.leader__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent) 85%, transparent) 0%,
    transparent 60%);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s var(--ease);
}
.leader:hover .leader__photo img { transform: scale(1.05); }

.leader__content {
  padding: 22px 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.leader__role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  align-self: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.leader__role .ico { width: 11px; height: 11px; stroke-width: 2.5; }

.leader__name {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.leader__qual {
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.leader__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Featured Founder card — full width, larger photo */
.leader--featured {
  grid-column: 1 / -1;
  grid-template-columns: 240px 1fr;
  min-height: 240px;
  background:
    linear-gradient(135deg, #fff 60%, rgba(245, 166, 35, 0.06) 100%);
}
.leader--featured .leader__photo img { object-position: center 22%; }
.leader--featured .leader__content { padding: 30px 36px; }
.leader--featured .leader__name {
  font-size: 1.55rem;
}
.leader--featured .leader__qual { font-size: 0.82rem; }
.leader--featured .leader__bio {
  font-size: 0.98rem;
  max-width: 70ch;
}
.leader--featured::after { font-size: 9rem; bottom: -36px; right: 24px; opacity: 0.08; }

@media (max-width: 900px) {
  .leader-grid { grid-template-columns: 1fr; }
  .leader--featured { grid-template-columns: 152px 1fr; min-height: 200px; }
  .leader--featured .leader__content { padding: 22px 24px; }
  .leader--featured .leader__name { font-size: 1.25rem; }
  .leader--featured .leader__bio { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .leader, .leader--featured { grid-template-columns: 110px 1fr; min-height: 180px; }
  .leader__content { padding: 16px 16px 18px; }
  .leader__name { font-size: 1.05rem; }
  .leader__bio { font-size: 0.82rem; }
}

/* Section header — minimal dark pill, centered */
.hv-min {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 28px;
}
.hv-min__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hv-min__tick { display: none; }
.hv-min__sub { margin-left: auto; margin-right: auto; }
.hv-min__pill {
  background: linear-gradient(135deg, var(--navy) 0%, var(--pink-deep) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(22, 8, 42, 0.18);
}
.hv-min__title--about { margin-bottom: 0; }
.hv-min__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 18px;
}
.hv-min__sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 60ch;
}

/* ════════════════════════════════════════════════════════════════
   ACHIEVEMENTS
   ════════════════════════════════════════════════════════════════ */
.ach-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
}
.ach-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--navy);
  display: flex;
}
.ach-hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.ach-hero__ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 8, 42, 0.92) 100%);
  color: #fff;
}
.ach-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 10px;
}
.ach-hero__tag .ico { width: 13px; height: 13px; stroke-width: 2.4; }
.ach-hero h3 {
  color: #fff;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.ach-hero p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  max-width: 56ch;
}

.ach-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.ach-mini {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.ach-mini img { width: 100%; height: 100%; object-fit: cover; }
.ach-mini__ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 8, 42, 0.9) 100%);
  color: #fff;
}
.ach-mini__ov span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
}
.ach-mini__ov span .ico { width: 12px; height: 12px; stroke-width: 2.4; }
.ach-mini__ov h4 {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .ach-grid { grid-template-columns: 1fr; }
  .ach-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .ach-hero { min-height: 280px; }
}
@media (max-width: 560px) {
  .ach-side { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   ADMISSIONS CTA
   ════════════════════════════════════════════════════════════════ */
.cta-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 200px at top right, rgba(245, 166, 35, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 240px at bottom left, rgba(196, 20, 114, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-card__media { position: relative; min-height: 320px; }
.cta-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85);
}
.cta-card__body {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
  z-index: 1;
}
.cta-card__body .h-display { color: #fff; }
.cta-card__body .h-display em {
  background: linear-gradient(120deg, var(--gold) 0%, #ffd279 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-card__body p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 14px 0 22px;
  max-width: 50ch;
}
.cta-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta-card__addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  max-width: 56ch;
}
.cta-card__addr .ico {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 880px) {
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__media { min-height: 220px; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, #0c041a 100%);
  color: #b5a7d3;
  padding-top: 56px;
  font-size: 0.96rem;
}
.footer__main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px 36px;
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1.05fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.footer__col, .footer__brand { min-width: 0; }
.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.footer__logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.footer__logo-img {
  display: block;
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
}

.footer__affil {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.13);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__affil-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.footer__desc {
  font-size: 0.96rem;
  color: #b5a7d3;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__social {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #b5a7d3;
  transition: all 0.2s;
}
.footer__social:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer__social .ico { width: 16px; height: 16px; }

.footer__col-head {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer__col-head::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2.5px;
  background: var(--gold);
}

.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a {
  font-size: 0.96rem;
  color: #b5a7d3;
  transition: color 0.2s, padding 0.2s;
}
.footer__nav-list a:hover { color: var(--gold); padding-left: 4px; }

.footer__contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer__contact-icon {
  width: 30px; height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__contact-icon .ico { width: 14px; height: 14px; }
.footer__contact-label {
  display: block;
  font-size: 0.7rem;
  color: #8a7aa8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 2px;
}
.footer__contact-value {
  font-size: 0.9rem;
  color: #d8c8f5;
  line-height: 1.45;
}
.footer__contact-value a { transition: color 0.2s; }
.footer__contact-value a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 24px;
}
.footer__bottom-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}
.footer__copyright {
  font-size: 0.9rem;
  color: #8a7aa8;
}
.footer__copyright a { color: var(--gold); }

@media (max-width: 1080px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── 100% Attendance honour-roll slider ─────────────── */
.hr-slider {
  position: relative;
  margin: 32px auto 0;
  max-width: 1180px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #16082a 0%, #2b1258 100%);
  box-shadow:
    0 10px 30px rgba(22, 8, 42, 0.18),
    0 2px 8px rgba(22, 8, 42, 0.08);
  padding-bottom: 44px;
}
.hr-slider__track {
  position: relative;
  aspect-ratio: 1600 / 660;
  width: 100%;
}
.hr-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hr-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hr-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hr-slider__nav {
  position: absolute;
  top: calc((100% - 44px) / 2);
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(22, 8, 42, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hr-slider__nav:hover { background: rgba(214, 51, 132, 0.85); transform: translateY(-50%) scale(1.06); }
.hr-slider__nav:focus-visible { outline: 2px solid #f5a623; outline-offset: 3px; }
.hr-slider__nav--prev { left: 14px; }
.hr-slider__nav--next { right: 14px; }
.hr-slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 8px;
}
.hr-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hr-slider__dot:hover { background: rgba(255, 255, 255, 0.7); }
.hr-slider__dot.is-active { background: #f5a623; transform: scale(1.2); }
.hr-slider__dot:focus-visible { outline: 2px solid #f5a623; outline-offset: 2px; }
@media (max-width: 720px) {
  .hr-slider__nav { width: 36px; height: 36px; }
  .hr-slider__nav--prev { left: 8px; }
  .hr-slider__nav--next { right: 8px; }
  .hr-slider { padding-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .hr-slide { transition: none; }
}

/* ════════════════════════════════════════════════════════════════
   IMAGE MODAL
   ════════════════════════════════════════════════════════════════ */
.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-modal.is-active {
  display: flex;
  opacity: 1;
}
.image-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.image-modal__close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 100000;
  transition: color 0.3s, transform 0.2s;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal__close:hover {
  color: #ddd;
}
.image-modal__content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: block;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
