/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --navy:      #002147;
  --navy-deep: #001230;
  --gold:      #c99a2e;
  --gold-lt:   #f0c95a;
  --ink:       #1a2535;
  --muted:     #5f7185;
  --paper:     #f9f8f5;
  --white:     #ffffff;
  --line:      #e0e6ee;
  --green:     #25D366;

  --shadow-sm: 0 2px 12px rgba(0,33,71,.07);
  --shadow:    0 12px 40px rgba(0,33,71,.13);
  --shadow-lg: 0 24px 60px rgba(0,33,71,.18);
  --radius:    10px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.22,1,.36,1);
  --dur:       260ms;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
iframe, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { max-width: 100%; }
input, select, textarea { min-width: 0; }
p, li, a, span { overflow-wrap: anywhere; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }

/* ═══════════════════════════════════════
   EYEBROW / SHARED TYPOGRAPHY
═══════════════════════════════════════ */
.eyebrow {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--gold-lt); }
.eyebrow.light::before { background: var(--gold-lt); }

.section-heading { margin-bottom: 52px; max-width: 720px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { margin-left: auto; margin-right: auto; }
.section-heading h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.14;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-heading p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════
   SCROLLING NEWS TICKER
═══════════════════════════════════════ */
.news-ticker {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: stretch;
  height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 49;
}
.ticker-label {
  background: var(--gold);
  color: var(--navy);
  padding: 0 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 4px 0 10px rgba(0,0,0,.18);
}
.ticker-label svg { flex-shrink: 0; }
.ticker-wrap {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg, var(--navy), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 500;
  padding: 0 36px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-item::after {
  content: '◆';
  position: absolute;
  right: 6px;
  color: var(--gold);
  font-size: .45rem;
  opacity: .7;
}
.ticker-item a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.ticker-item a:hover { color: var(--gold-lt); }
.ticker-new-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .news-ticker { height: 34px; }
  .ticker-label { padding: 0 14px; font-size: .65rem; gap: 6px; }
  .ticker-item { font-size: .74rem; padding: 0 24px; }
}

/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-left a,
.topbar-right a {
  display: flex; align-items: center; gap: 7px;
  transition: color var(--dur) var(--ease);
}
.topbar-left a:hover,
.topbar-right a:hover { color: var(--gold-lt); }
.topbar-right {
  display: flex; align-items: center; gap: 14px;
}
.topbar-right a {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.topbar-right a:hover {
  border-color: var(--gold);
  background: rgba(201,154,46,.18);
  color: var(--gold-lt);
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
}
.navbar {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--dur) var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,33,71,.11); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 84px; gap: 20px;
}
.brand img { width: 220px; height: auto; transition: opacity var(--dur) var(--ease); }
.brand:hover img { opacity: .82; }

.site-menu {
  display: flex; align-items: center; gap: 2px;
  font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy);
}
.nav-link {
  padding: 8px 11px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); background: rgba(201,154,46,.07); }
.nav-cta {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(201,154,46,.35);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav-cta:hover {
  background: #b8881f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,154,46,.45);
}
.nav-portal { font-size: 13px; opacity: .85; }

/* Compact desktop navigation so every item stays on one line. */
@media (min-width: 1181px) {
  .site-menu {
    gap: 0;
    font-size: 11.5px;
    letter-spacing: .035em;
    white-space: nowrap;
  }
  .nav-link,
  .nav-dropdown-toggle { padding: 8px; }
  .nav-portal { font-size: 11.5px; }
  .nav-cta {
    margin-left: 4px;
    padding: 9px 14px;
  }
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit;
  padding: 8px 11px; border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-dropdown-toggle:hover { color: var(--gold); background: rgba(201,154,46,.07); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,33,71,.12); z-index: 60;
  overflow: hidden;
}
.nav-dropdown-menu .nav-link { display: block; border-radius: 0; padding: 12px 16px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { display: block; }
.menu-toggle {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px; background: var(--white);
  gap: 5px;
  transition: border-color var(--dur) var(--ease);
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px;
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  color: var(--white);
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 1.3s ease, visibility 1.3s ease;
  z-index: 0;
}
.slide.active { opacity: 1; visibility: visible; z-index: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.07);
  transition: transform 9s ease-out;
  will-change: transform;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(0,18,48,.58) 0%, rgba(0,18,48,.22) 55%, rgba(0,18,48,.04) 100%),
    linear-gradient(to top, rgba(0,0,0,.18) 0%, transparent 40%);
}

.slide-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding-bottom: 40px;
}
.slide-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 18px;
  opacity: 0; transform: translateY(-20px);
}
.slide-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: currentColor; border-radius: 2px; flex-shrink: 0;
}
.slide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.08; font-weight: 700;
  color: var(--white); margin: 0 0 22px;
  opacity: 0; transform: translateY(-30px);
}
.slide-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.72;
  color: rgba(255,255,255,.84);
  margin: 0 0 34px; max-width: 580px;
  opacity: 0; transform: translateX(-36px);
}
.slide-btn {
  display: inline-flex; align-items: center; height: 52px;
  padding: 0 34px;
  background: var(--gold); color: var(--navy);
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201,154,46,.45);
  opacity: 0; transform: translateY(20px);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.slide-btn:hover { background: #b8881f; box-shadow: 0 8px 28px rgba(201,154,46,.55); }

/* Slide-in animations */
.slide.active .slide-eyebrow { animation: fromTop .8s var(--spring) forwards .15s; }
.slide.active .slide-title   { opacity: 1; transform: none; animation: none; }
.slide.active .slide-sub     { animation: fromLeft .9s var(--spring) forwards .55s; }
.slide.active .slide-btn     { animation: fadeUp .7s var(--spring) forwards .85s; }

@keyframes fromTop  { to { opacity:1; transform:translateY(0); } }
@keyframes fromLeft { to { opacity:.88; transform:translateX(0); } }
@keyframes fadeUp   { to { opacity:1; transform:translateY(0); } }

/* Typing cursor */
.type-cursor {
  display: inline-block;
  width: 3px; height: .82em;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 3px; border-radius: 1px;
  animation: typeBlink .65s step-end infinite;
}
@keyframes typeBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; display: grid; place-items: center;
  width: 50px; height: 50px;
  background: rgba(0,0,0,.32);
  border: 1.5px solid rgba(255,255,255,.32);
  border-radius: 50%; color: white;
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrow:hover.slider-prev { transform: translateY(-50%) translateX(-2px); }
.slider-arrow:hover.slider-next { transform: translateY(-50%) translateX(2px); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 10px;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.38); border: none; padding: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease), border-radius var(--dur) var(--ease);
}
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ═══════════════════════════════════════
   STATS RIBBON
═══════════════════════════════════════ */
.stats-ribbon {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 2;
}
.stats-ribbon::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.09);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 700; line-height: 1;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

/* ═══════════════════════════════════════
   ADMISSIONS
═══════════════════════════════════════ */
.admissions-section { background: var(--off-white, #f7f8fb); }
.admissions-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin: 40px 0 32px;
}
.admission-card {
  background: var(--white); border: 2px solid var(--line);
  border-radius: 14px; padding: 28px 24px; min-width: 160px;
  text-align: center; flex: 1 1 160px; max-width: 200px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.admission-card:hover {
  border-color: var(--gold); box-shadow: 0 6px 24px rgba(0,33,71,.1);
}
.admission-icon { font-size: 32px; margin-bottom: 12px; }
.admission-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.admissions-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ═══════════════════════════════════════
   ABOUT + NEWS
═══════════════════════════════════════ */
.about-news { background: var(--white); }
.about-news-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px; align-items: start;
}
.about-col h2, .news-col h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16; color: var(--navy);
  margin-bottom: 18px;
}
.about-col p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-col p:last-of-type { margin-bottom: 28px; }

/* Outlined buttons */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 26px;
  border: 2px solid var(--navy);
  border-radius: 6px; color: var(--navy);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.gold { border-color: var(--gold); color: var(--gold); }
.btn-outline.gold:hover { background: var(--gold); color: var(--navy); }

/* News list */
.news-list { margin: 28px 0 28px; display: flex; flex-direction: column; gap: 0; }
.news-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur) var(--ease);
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item:hover { padding-left: 6px; }
.news-item time {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.news-item h3 {
  font-size: 17px; line-height: 1.35;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
}
.news-item h3 a { color: var(--navy); transition: color var(--dur) var(--ease); }
.news-item h3 a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   WHAT WE OFFER
═══════════════════════════════════════ */
.offering {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.offering .eyebrow { color: var(--gold-lt); }
.offering .eyebrow::before { background: var(--gold-lt); }
.offering .section-heading.centered h2 { color: var(--white); }
.offering .section-heading.centered p  { color: rgba(255,255,255,.68); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
  border-color: rgba(201,154,46,.45);
}
.offer-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.offer-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.offer-card:hover .offer-img-wrap img { transform: scale(1.07); }
.offer-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,33,71,.62);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.offer-card:hover .offer-overlay { opacity: 1; }
.offer-card h3 {
  padding: 22px 22px 10px;
  font-size: 20px; color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
}
.offer-card p {
  padding: 0 22px 24px;
  font-size: 14.5px; line-height: 1.68;
  color: rgba(255,255,255,.68); margin: 0;
}

/* ═══════════════════════════════════════
   VALUES BANNER
═══════════════════════════════════════ */
.values-banner {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-banner-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px; align-items: start;
}
.values-banner-grid > div:first-child h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16; color: var(--navy);
  margin-bottom: 0;
}
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-pill {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.value-pill:first-child { border-top: 1px solid var(--line); }
.value-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700;
  color: var(--gold); opacity: .55; flex-shrink: 0;
  line-height: 1; padding-top: 3px;
}
.value-pill h3 {
  font-size: 20px; margin-bottom: 6px; color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
}
.value-pill p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 220px;
  transition: transform 500ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 18px 16px;
  background: linear-gradient(to top, rgba(0,18,48,.75), transparent);
  color: var(--white); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════ */
.video-section {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.video-section .section-heading h2 { color: var(--white); }
.video-section .section-heading p  { color: rgba(255,255,255,.72); }
.video-frame {
  max-width: 860px; margin: 0 auto;
}
.video-thumb {
  position: relative; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 2px solid rgba(201,154,46,.3);
}
.video-thumb img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  filter: brightness(.72);
  transition: filter 400ms var(--ease);
}
.video-thumb:hover img { filter: brightness(.55); }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: grid; place-items: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,154,46,.92);
  box-shadow: 0 0 0 14px rgba(201,154,46,.2), 0 8px 30px rgba(0,0,0,.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: pulse 2.8s ease-in-out infinite;
}
.play-btn:hover {
  transform: translate(-50%,-50%) scale(1.12);
  box-shadow: 0 0 0 20px rgba(201,154,46,.12), 0 12px 40px rgba(0,0,0,.5);
  animation: none;
}
.play-btn svg { width: 52px; height: 52px; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 14px rgba(201,154,46,.2), 0 8px 30px rgba(0,0,0,.4); }
  50%      { box-shadow: 0 0 0 22px rgba(201,154,46,.07), 0 8px 30px rgba(0,0,0,.4); }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px; align-items: start;
}
.contact-info h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16; color: var(--navy); margin-bottom: 14px;
}
.contact-info > p { color: var(--muted); margin-bottom: 36px; }

.info-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(201,154,46,.1);
  border-radius: 10px; color: var(--gold);
}
.info-icon svg { width: 18px; height: 18px; }
.info-item strong {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 4px;
}
.info-item span {
  display: block; color: var(--muted); font-size: 14.5px; line-height: 1.65;
}
.info-item a { color: var(--navy); font-weight: 600; transition: color var(--dur) var(--ease); }
.info-item a:hover { color: var(--gold); }

.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 24px;
  background: var(--green); color: #0a3a1a;
  font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-btn:hover {
  background: #1db854;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--navy);
}
input, textarea {
  border: 1.5px solid #cdd5e0;
  border-radius: 7px;
  padding: 12px 15px;
  font: 15px 'Inter', sans-serif;
  color: var(--ink); background: var(--paper);
  outline: none; width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
input:focus, textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,154,46,.14);
}
textarea { resize: vertical; }
.submit-btn {
  align-self: flex-start;
  height: 50px; padding: 0 32px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 7px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,33,71,.25);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.submit-btn:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,154,46,.4);
}
.form-note {
  font-size: 13.5px; color: var(--muted); min-height: 20px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-logo { width: 200px; max-width: 100%; margin-bottom: 16px; opacity: .92; filter: brightness(0) invert(1); }
.footer-brand h2 {
  font-size: 22px; line-height: 1.25;
  color: var(--white); margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}
.footer-brand p { font-size: 14px; line-height: 1.78; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-socials a:hover {
  border-color: var(--gold); background: var(--gold); color: var(--navy);
}

.footer-links h3, .footer-contact h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 14px; margin-bottom: 10px;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--gold-lt); padding-left: 4px; }

.footer-contact h3 { margin-bottom: 20px; }
.footer-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-info-item svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-info-item span { font-size: 14px; line-height: 1.65; }
.footer-info-item a { transition: color var(--dur) var(--ease); }
.footer-info-item a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-apply {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.footer-apply:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 56px; height: 56px;
  background: var(--green); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: waBounce 3.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }
.scroll-top svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
  .scroll-top { bottom: 82px; right: 18px; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
/* Collapse the full navigation before its items become crowded. */
@media (min-width: 961px) and (max-width: 1180px) {
  .menu-toggle { display: flex; }
  .site-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 50;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-menu.is-open { display: flex; }
  .nav-link {
    padding: 14px 10px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .nav-cta {
    margin: 14px 0 0;
    text-align: center;
    border-bottom: 0 !important;
    border-radius: 6px;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    text-align: left;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0,33,71,.035);
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu .nav-link { padding-left: 24px; }
}

@media (max-width: 960px) {
  .topbar-inner { justify-content: center; }

  .menu-toggle { display: flex; }
  .site-menu {
    position: fixed;
    top: 84px; left: 0; right: 0;
    display: none; flex-direction: column;
    align-items: stretch; gap: 0;
    padding: 12px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 50;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .site-menu.is-open { display: flex; }
  .nav-link {
    padding: 14px 10px; border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .nav-cta { margin: 14px 0 0; text-align: center; border-bottom: 0 !important; border-radius: 6px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    text-align: left;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0,33,71,.035);
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu .nav-link { padding-left: 24px; }

  .hero { height: 560px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.09); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.09); }

  .about-news-grid,
  .values-banner-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-row: auto; }

  .section { padding: 72px 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .topbar { display: none; }

  .nav-inner { min-height: 68px; }
  .brand img { width: 175px; }
  .brand { min-width: 0; }
  .site-menu {
    top: 68px;
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
    padding-inline: 16px;
  }
  .menu-toggle { flex: 0 0 44px; }

  .hero { min-height: 480px; height: 88vh; max-height: 640px; }
  .slide-content { padding-bottom: 72px; }
  .slider-arrow { display: none; }

  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(24px, 7vw, 36px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }
  .stat-number { font-size: clamp(32px, 9vw, 48px); }

  .about-news-grid,
  .values-banner-grid,
  .contact-grid { gap: 36px; }

  .offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
  .submit-btn { width: 100%; }
  input, select, textarea { font-size: 16px !important; }

  .footer-grid { grid-template-columns: 1fr; padding: 48px 0 36px; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-links a { display: block; padding: 6px 0; }
  .footer-info-item { align-items: flex-start; }
  .footer-socials a { width: 44px; height: 44px; }
  .filter-btn, .news-filter button { min-height: 44px; }

  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }

}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤ 420px)
═══════════════════════════════════════ */
@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 155px; }
  .nav-inner { min-height: 62px; }
  .site-menu {
    top: 62px;
    max-height: calc(100vh - 62px);
    max-height: calc(100dvh - 62px);
  }

  .hero { min-height: 420px; }
  .slide-title { font-size: clamp(26px, 8.5vw, 36px); }
  .slide-sub { font-size: 13.5px; margin-bottom: 24px; }
  .slide-btn { height: 46px; padding: 0 24px; font-size: 12px; }

  .stat-item { padding: 22px 10px; }
  .stat-number { font-size: 30px; }
  .hero-dots { bottom: 20px; }
  .dot { width: 7px; height: 7px; }
  .dot.active { width: 20px; }

  .value-pill { gap: 14px; padding: 20px 0; }
  .value-num { font-size: 24px; }
  .value-pill h3 { font-size: 17px; }

  .contact-form { padding: 18px 14px; }
  .footer-grid { gap: 24px; padding: 40px 0 28px; }
  .footer-brand h2 { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════
   INNER PAGE — SHARED COMPONENTS
═══════════════════════════════════════ */

/* Page banner */
.page-banner {
  position: relative; height: 340px;
  display: flex; align-items: flex-end; padding-bottom: 56px;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.06); transition: transform 9s ease;
}
.page-banner.loaded .page-banner-bg { transform: scale(1); }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,33,71,.86) 0%, rgba(0,18,48,.72) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-eyebrow {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-lt); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px;
}
.page-banner-eyebrow a { color: inherit; text-decoration: none; opacity: .7; }
.page-banner-eyebrow a:hover { opacity: 1; }
.page-banner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  color: #fff; line-height: 1.1; margin: 0;
}
.page-banner h1 em { font-style: italic; color: var(--gold-lt); }

/* Inner-page section eyebrow */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }

/* Inner section heading */
.inner-section { padding: 88px 0 72px; }
.inner-section.alt { background: #f8f9fc; }
.inner-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin: 0 0 20px;
}
.inner-h2 em { font-style: italic; color: var(--gold); }
.inner-p { font-size: .95rem; color: #4a5468; line-height: 1.8; margin: 0 0 16px; }

/* Two-col grid */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* Admissions campus choices */
.campus-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Contact details */
.contact-detail-row > div { min-width: 0; }
.contact-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}
.contact-phone-list a { white-space: nowrap; }

/* Placeholder notice — used wherever school must supply verified content */
.placeholder-notice {
  background: #fffbeb; border: 2px dashed #d4a016;
  border-radius: 10px; padding: 20px 24px;
  font-size: .85rem; color: #7a5c00; line-height: 1.6;
}
.placeholder-notice strong { display: block; margin-bottom: 4px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }

/* Info-card grid */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.info-card {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  border: 1.5px solid var(--line); box-shadow: 0 4px 18px rgba(0,33,71,.06);
  transition: box-shadow .24s, border-color .24s;
}
.info-card:hover { box-shadow: 0 10px 36px rgba(0,33,71,.12); border-color: var(--gold); }
.info-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.info-card-icon svg { color: var(--gold-lt); }
.info-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.info-card p { font-size: .84rem; color: #6a7385; line-height: 1.6; margin: 0; }

/* CTA strip */
.page-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  padding: 72px 0; text-align: center;
}
.page-cta h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: #fff; margin: 0 0 12px; }
.page-cta h2 em { font-style: italic; color: var(--gold-lt); }
.page-cta p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 28px; line-height: 1.65; }
.page-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy); font-size: .88rem; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  transition: transform .22s, box-shadow .22s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,154,46,.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-size: .88rem; font-weight: 600;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.35); transition: all .22s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* Level pills */
.level-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.level-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,33,71,.06); color: var(--navy); font-size: .85rem; font-weight: 600;
  padding: 10px 18px; border-radius: 50px; border: 1.5px solid rgba(0,33,71,.1);
  transition: all .2s;
}
.level-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.level-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Steps list */
.steps { display: grid; gap: 24px; margin-top: 32px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  color: var(--gold-lt); font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.step-body h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.step-body p { font-size: .87rem; color: #6a7385; line-height: 1.6; margin: 0; }

/* Contact map wrapper */
.map-wrap { border-radius: 14px; overflow: hidden; height: 280px; background: #e8ecf0; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: .87rem; color: #8a94a6; }

/* Responsive — inner pages */
@media (max-width: 768px) {
  .page-banner { height: 260px; padding-bottom: 36px; }
  .page-banner h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .inner-section { padding: 60px 0 48px; }
  .page-cta { padding: 52px 0; }
  .campus-choice-grid { grid-template-columns: 1fr; gap: 20px; }
  .two-col img[style*="height:340px"] { height: 260px !important; }
  .info-card { min-width: 0; }
}
@media (max-width: 600px) {
  .info-cards { grid-template-columns: 1fr; gap: 14px; }
  .info-card { padding: 22px 18px; }
  .placeholder-notice { padding: 16px; }
  .level-grid { gap: 8px; }
  .level-pill { width: 100%; border-radius: 12px; padding: 10px 14px; }
  .step { gap: 14px; }
  .step-num { width: 38px; height: 38px; }
  .map-wrap { height: 230px; }
  .contact-detail-row { align-items: flex-start !important; padding: 14px !important; }
  .contact-phone-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .contact-phone-list > span { display: none; }
  .two-col img[style*="height:340px"] { height: 220px !important; }
}
@media (max-width: 420px) {
  .page-banner { height: 210px; padding-bottom: 24px; }
  .page-cta-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
}
