/* Scott Christian University — site styles */

:root {
  /* Corporate navy — anchored on the logo colour #004495 */
  --navy-900: #00306a;
  --navy-800: #004495;
  --navy-700: #0f57a6;
  --navy-600: #1c68b4;
  --navy-500: #3179c2;
  --brand:    #004495;
  --gold-500: #c8a45a;
  --gold-400: #d8bb78;
  --gold-100: #f1e6c5;
  --cream-100: #f5efe1;
  --cream-50:  #faf6ec;
  --paper:     #fbfaf5;
  --ink-900:   #14171c;
  --ink-700:   #2c3340;
  --ink-500:   #5b6373;
  --ink-300:   #9aa1ad;
  --ink-200:   #cfd3dc;
  --line:      #e6e1d2;
  --line-strong: #d6cfb8;
  --white:     #ffffff;

  --shadow-sm: 0 1px 2px rgba(6,26,54,.06), 0 1px 1px rgba(6,26,54,.04);
  --shadow-md: 0 10px 30px -12px rgba(6,26,54,.18), 0 4px 10px -6px rgba(6,26,54,.10);
  --shadow-lg: 0 30px 60px -20px rgba(6,26,54,.25);

  --serif: "Newsreader", "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
  color: var(--navy-900);
}
h1 { font-size: clamp(40px, 5.6vw, 76px); font-weight: 450; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.4vw, 46px); }
h3 { font-size: clamp(20px, 1.8vw, 26px); }
h4 { font-size: 18px; }

p { margin: 0 0 1em; color: var(--ink-700); }
.lede { font-size: 19px; color: var(--ink-700); line-height: 1.55; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-600);
}
.eyebrow.on-dark { color: var(--gold-400); }

.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* === Top utility bar === */
.utility {
  background: var(--navy-900);
  color: #cbd5e8;
  font-size: 13px;
}
.utility .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px; gap: 16px;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 22px; }
.utility a { color: #cbd5e8; transition: color .15s; }
.utility a:hover { color: var(--gold-400); }
.utility .divider { width: 1px; height: 14px; background: rgba(255,255,255,.15); }
.utility svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500; color: var(--navy-900);
  letter-spacing: -.01em;
}
.brand-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-500);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a, .main-nav > .nav-item > button {
  background: none; border: 0; cursor: pointer;
  font: 500 14.5px/1 var(--sans);
  color: var(--ink-900);
  padding: 10px 0;
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
}
.main-nav > a::after, .main-nav > .nav-item > button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -32px;
  height: 3px; background: var(--navy-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.main-nav > a:hover::after, .main-nav > .nav-item:hover > button::after,
.main-nav > a.active::after { transform: scaleX(1); }
.main-nav .caret { width: 10px; height: 10px; opacity: .6; }

.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: -16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; box-shadow: var(--shadow-md);
  min-width: 240px; padding: 10px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all .18s ease;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 14px; color: var(--ink-700);
}
.dropdown a:hover { background: var(--cream-100); color: var(--navy-800); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 14.5px/1 var(--sans);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy-800); color: white; }
.btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--ink-200); }
.btn-ghost:hover { border-color: var(--navy-800); }
.btn-light { background: white; color: var(--navy-900); }
.btn-light:hover { background: var(--cream-50); }
.btn-link {
  background: none; border: 0; padding: 0;
  color: var(--navy-700); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-link .arrow { transition: transform .18s; }
.btn-link:hover .arrow { transform: translateX(4px); }
.btn-link.on-dark { color: var(--gold-400); }

.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-900); margin: 5px 0;
  transition: transform .25s, opacity .2s;
}

/* === Hero === */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(200,164,90,.18), transparent 60%),
    radial-gradient(700px 400px at 5% 90%, rgba(46,111,184,.30), transparent 65%);
  z-index: -1;
}
.hero-pattern {
  position: absolute; right: -200px; top: -100px; width: 800px; height: 800px;
  z-index: -1; opacity: .07;
}
.hero .container {
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-text .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-text .eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold-400);
}
.hero h1 { color: white; }
.hero h1 em {
  font-style: italic; color: var(--gold-400); font-weight: 500;
}
.hero .lede {
  color: #d6dbe8; margin-top: 24px; max-width: 540px;
  font-size: 19px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-meta {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 36px; line-height: 1; color: white; font-weight: 500;
}
.hero-meta-item .label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: .14em; color: #94a3bf; margin-top: 8px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(200,164,90,.10) 0px, rgba(200,164,90,.10) 12px,
      rgba(200,164,90,.04) 12px, rgba(200,164,90,.04) 24px),
    linear-gradient(180deg, #143a6e 0%, #0b2545 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gold-100);
}
.hero-visual .placeholder code {
  font-family: var(--mono); font-size: 12px;
  color: rgba(241,230,197,.75);
  background: rgba(0,0,0,.25); padding: 6px 12px; border-radius: 4px;
  margin-top: 12px;
}
.hero-badge {
  position: absolute; left: -24px; bottom: 40px;
  background: var(--white); color: var(--navy-900);
  padding: 18px 22px; border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .seal { width: 46px; height: 46px; }
.hero-badge .seal-text { line-height: 1.2; }
.hero-badge .seal-text strong {
  display: block; font-family: var(--serif); font-size: 22px; color: var(--navy-900);
}
.hero-badge .seal-text span {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-500);
}

/* Quick links bar */
.quick-links {
  background: white;
  border-bottom: 1px solid var(--line);
}
.quick-links .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ql {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  transition: background .18s;
  cursor: pointer;
}
.ql:last-child { border-right: 0; }
.ql:hover { background: var(--cream-50); }
.ql .ico {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--cream-100); color: var(--navy-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.ql .label { display: block; font-weight: 700; font-size: 15px; color: var(--navy-900); }
.ql .sub { display: block; font-size: 13px; color: var(--ink-500); margin-top: 2px; }

/* === Section primitives === */
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-cream { background: var(--cream-50); }
.section-navy { background: var(--navy-900); color: white; }
.section-paper { background: var(--paper); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; display: inline-block; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 17px; }

.section-head.center { margin-inline: auto; text-align: center; }

/* === About strip === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 5/6;
  background: var(--cream-100);
  border-radius: 4px;
  overflow: hidden;
}
.about-image .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(11,37,69,.06) 0, rgba(11,37,69,.06) 10px, transparent 10px, transparent 20px),
    var(--cream-100);
  color: var(--navy-700);
}
.about-image code {
  font-family: var(--mono); font-size: 12px;
  background: rgba(255,255,255,.6); padding: 6px 12px; border-radius: 4px;
}
.about-image .floating-card {
  position: absolute; right: -40px; bottom: 60px;
  background: var(--navy-900); color: white;
  padding: 24px 28px; border-radius: 4px; max-width: 280px;
  box-shadow: var(--shadow-lg);
}
.about-image .floating-card .quote {
  font-family: var(--serif); font-size: 18px; line-height: 1.4;
  font-style: italic; margin: 0 0 14px;
}
.about-image .floating-card .author {
  font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-400);
}

.about-text h2 .accent { color: var(--navy-600); font-style: italic; }
.about-text .pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px;
}
.pillar {
  padding-left: 16px; border-left: 2px solid var(--gold-500);
}
.pillar h4 { color: var(--navy-900); margin-bottom: 6px; font-family: var(--sans); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.pillar p { font-size: 15px; color: var(--ink-500); margin: 0; }

/* === Schools / programmes === */
.schools-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.school-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.school-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.school-card .img {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(45deg, rgba(11,37,69,.08) 0, rgba(11,37,69,.08) 10px, transparent 10px, transparent 20px),
    var(--cream-100);
  display: grid; place-items: center;
  color: var(--navy-800);
  position: relative;
}
.school-card .img code {
  font-family: var(--mono); font-size: 11px;
  background: rgba(255,255,255,.7); padding: 6px 10px; border-radius: 3px;
}
.school-card .img .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); color: var(--navy-800);
  padding: 6px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.school-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.school-card h3 { margin-bottom: 12px; }
.school-card p { color: var(--ink-500); font-size: 15px; flex: 1; }
.school-card .programs {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 20px;
}
.school-card .programs span {
  font-size: 12px; padding: 4px 10px; background: var(--cream-100);
  border-radius: 999px; color: var(--navy-800);
}
.school-card .footer-link {
  border-top: 1px solid var(--line); padding-top: 16px;
}

/* === Stats / Achievements === */
.stats {
  background: var(--navy-900); color: white;
  position: relative; overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 250px at 90% 50%, rgba(200,164,90,.10), transparent);
}
.stats .container { position: relative; padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.stat:last-child { border-right: 0; }
.stat:first-child { padding-left: 0; }
.stat .num {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 64px);
  font-weight: 500; line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #a9b7d0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label {
  display: block;
  font-size: 14px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-400); margin-top: 14px; font-weight: 600;
}
.stat p { color: #98a4bd; margin-top: 12px; font-size: 14px; }

/* === News grid === */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: white; border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .22s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card .img {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(0deg, rgba(11,37,69,.06) 0, rgba(11,37,69,.06) 8px, transparent 8px, transparent 16px),
    var(--cream-100);
  position: relative;
  display: grid; place-items: center;
  color: var(--navy-800);
}
.news-card .img code {
  font-family: var(--mono); font-size: 11px;
  background: rgba(255,255,255,.7); padding: 4px 8px; border-radius: 3px;
}
.news-card.feature .img { aspect-ratio: 16/10; }
.news-card .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.news-card .meta {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  color: var(--navy-600); margin-bottom: 10px;
}
.news-card .meta .dot { color: var(--ink-300); margin: 0 8px; }
.news-card h3 { font-size: 22px; margin-bottom: 12px; }
.news-card.feature h3 { font-size: 22px; }
.news-card p { color: var(--ink-500); font-size: 14.5px; flex: 1; }
.news-card .more { margin-top: 16px; }

/* === Events list === */
.events {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.events-list { display: flex; flex-direction: column; }
.event {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: 28px; align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.event:last-child { border-bottom: 1px solid var(--line); }
.event .date {
  background: var(--navy-800); color: white;
  padding: 14px 0; text-align: center; border-radius: 4px;
  width: 80px;
}
.event .date .month {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-400);
}
.event .date .day {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  line-height: 1.1; margin-top: 4px;
}
.event h4 { color: var(--navy-900); font-family: var(--serif); font-weight: 500; font-size: 19px; }
.event .where { color: var(--ink-500); font-size: 13.5px; margin-top: 4px; }

.events-feature {
  background: var(--navy-900); color: white;
  padding: 48px; border-radius: 4px;
  position: relative; overflow: hidden;
}
.events-feature::after {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,90,.18), transparent 70%);
}
.events-feature .eyebrow.on-dark { display: inline-block; margin-bottom: 20px; }
.events-feature h3 { color: white; font-size: 30px; margin-bottom: 16px; }
.events-feature p { color: #c4cce0; margin-bottom: 28px; }

/* === Voices / testimonials === */
.voices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.voice {
  background: white; border: 1px solid var(--line);
  padding: 36px 32px; border-radius: 4px;
  display: flex; flex-direction: column;
}
.voice .mark {
  font-family: var(--serif); font-size: 60px; line-height: 0.7;
  color: var(--gold-500); height: 30px;
}
.voice .quote {
  font-family: var(--serif); font-size: 19px; line-height: 1.5;
  color: var(--navy-900); margin: 14px 0 32px; flex: 1;
}
.voice .person { display: flex; align-items: center; gap: 14px; }
.voice .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(0,68,149,.10) 0 6px, transparent 6px 12px),
    var(--cream-100);
  display: grid; place-items: center;
  color: var(--navy-700);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.voice .avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice .avatar svg { width: 28px; height: 28px; opacity: .55; }
.voice .person .name { font-weight: 700; color: var(--navy-900); font-size: 14.5px; }
.voice .person .role { color: var(--ink-500); font-size: 13px; }

/* === CTA strip === */
.cta-strip {
  background: var(--navy-900); color: white;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 10% 50%, rgba(200,164,90,.16), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(46,111,184,.30), transparent 70%);
}
.cta-strip .container {
  position: relative; padding: 90px 0;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: center;
}
.cta-strip h2 { color: white; max-width: 600px; }
.cta-strip p { color: #c4cce0; max-width: 540px; margin-top: 16px; font-size: 18px; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* === Footer === */
.site-footer {
  background: var(--navy-900); color: #b9c3d8;
  padding: 80px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-name { color: white; }
.footer-brand .brand-tag { color: var(--gold-400); }
.footer-brand p { color: #98a4bd; margin: 18px 0 24px; font-size: 14.5px; max-width: 320px; }
.footer-brand .socials { display: flex; gap: 10px; }
.footer-brand .socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  transition: background .18s;
}
.footer-brand .socials a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-col h5 {
  color: white; font-family: var(--sans); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; margin: 0 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #b9c3d8; font-size: 14.5px; transition: color .15s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col .contact-line {
  display: flex; gap: 12px; margin-bottom: 14px;
  font-size: 14.5px; align-items: flex-start;
}
.footer-col .contact-line svg {
  width: 16px; height: 16px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #7c89a4;
}
.footer-bottom a { color: #7c89a4; }
.footer-bottom a:hover { color: var(--gold-400); }
.footer-bottom .links { display: flex; gap: 24px; }

/* === Sub-page hero / breadcrumb === */
.page-hero {
  background: var(--navy-900); color: white;
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(200,164,90,.12), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(28,104,180,.30), transparent 70%);
}
.page-hero .container {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.page-hero-copy { min-width: 0; }
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: #b9c3d8; margin-bottom: 24px;
}
.crumbs a { color: var(--gold-400); }
.crumbs .sep { color: rgba(255,255,255,.3); }
.page-hero h1 { color: white; max-width: 640px; }
.page-hero .lede { color: #c4cce0; max-width: 560px; margin-top: 20px; }
.page-hero-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, rgba(255,255,255,.02) 12px 24px),
    linear-gradient(180deg, #0f57a6 0%, #00306a 100%);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(241,230,197,.85);
}
.page-hero-media .placeholder svg { width: 46px; height: 46px; opacity: .55; }
.page-hero-media code {
  font-family: var(--mono); font-size: 12px;
  color: rgba(241,230,197,.85);
  background: rgba(0,0,0,.28); padding: 6px 12px; border-radius: 4px;
}

/* === Mission/vision pillars === */
.pillars-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.pillar-card {
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.pillar-card .num {
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  color: var(--gold-500); letter-spacing: .14em;
}
.pillar-card h3 { margin: 14px 0 14px; }
.pillar-card p { color: var(--ink-500); margin: 0; }

/* === Forms === */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 13px; font-weight: 700; color: var(--navy-900);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  font: 400 15px/1.4 var(--sans);
  padding: 14px 16px;
  border: 1px solid var(--ink-200);
  border-radius: 4px;
  background: white;
  transition: border-color .15s, box-shadow .15s;
  color: var(--ink-900);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(46,111,184,.15);
}
.form-field.full { grid-column: 1 / -1; }
.form-field textarea { resize: vertical; min-height: 120px; }

/* === Programmes table === */
.prog-table {
  width: 100%; border-collapse: collapse;
  background: white; border: 1px solid var(--line);
}
.prog-table thead {
  background: var(--cream-100);
}
.prog-table th, .prog-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.prog-table th {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; color: var(--navy-900);
}
.prog-table td { font-size: 14.5px; color: var(--ink-700); }
.prog-table tr:last-child td { border-bottom: 0; }
.prog-table .level {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
}
.prog-table .level.b { background: #e1eaf7; color: var(--navy-700); }
.prog-table .level.m { background: #f1e6c5; color: #836310; }
.prog-table .level.d { background: #e9f0e3; color: #3d5a25; }
.prog-table .level.c { background: var(--cream-100); color: var(--ink-700); }

/* === Misc === */
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  position: relative; padding-left: 28px; margin-bottom: 14px;
  font-size: 16px; color: var(--ink-700);
}
.list-clean li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 2px; background: var(--gold-500);
}

.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.kv .row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.kv .k { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-500); font-weight: 700; }
.kv .v { font-size: 16px; color: var(--navy-900); margin-top: 4px; }

/* === Responsive === */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .hero .container { grid-template-columns: 1fr; padding: 60px 0 70px; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .quick-links .container { grid-template-columns: repeat(2, 1fr); }
  .ql:nth-child(2n) { border-right: 0; }
  .ql:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .events, .cta-strip .container { grid-template-columns: 1fr; gap: 40px; }
  .page-hero .container { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-media { max-width: 520px; }
  .schools-grid, .news-grid, .voices, .pillars-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat:nth-child(2) { border-right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-strip-actions { justify-content: flex-start; }
  .utility .container { display: none; }
  .form-grid, .kv { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .quick-links .container { grid-template-columns: 1fr; }
  .ql { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat { border-right: 0; padding: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  h1 { font-size: 40px; }
  .hero-video-overlay h1 { font-size: 38px; }
  .build-grid { grid-template-columns: 1fr; }
  .academics-overview { grid-template-columns: 1fr; }
  .lect-grid { grid-template-columns: 1fr; }
  .lp-shell { grid-template-columns: 1fr; }
  .lp-rail { display: none; }
  .lp-hero { grid-template-columns: 1fr; }
}

/* ============================================================
   Homepage hero video + Build Leadership
   ============================================================ */
.hero-video {
  position: relative;
  background: var(--navy-900);
  color: white;
  overflow: hidden;
}
.hero-video .stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  margin-inline: auto;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 16px, rgba(255,255,255,.015) 16px 32px),
    linear-gradient(120deg, #00306a 0%, #004495 55%, #0f57a6 100%);
  overflow: hidden;
}
.hero-video video,
.hero-video .stage > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video .video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: rgba(241,230,197,.9);
}
.hero-video .video-placeholder .play {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.35);
  display: grid; place-items: center;
  backdrop-filter: blur(2px);
}
.hero-video .video-placeholder .play svg { width: 30px; height: 30px; margin-left: 4px; }
.hero-video .video-placeholder code {
  font-family: var(--mono); font-size: 12.5px;
  color: rgba(241,230,197,.9);
  background: rgba(0,0,0,.32); padding: 7px 14px; border-radius: 5px;
}
.hero-video .video-placeholder .dims {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 60px;
  background: linear-gradient(180deg, rgba(0,28,66,.15) 0%, rgba(0,28,66,0) 30%, rgba(0,28,66,.78) 100%);
  pointer-events: none;
}
.hero-video-overlay .container { width: min(1240px, 92%); }
.hero-video-overlay .eyebrow.on-dark {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.hero-video-overlay .eyebrow.on-dark::before {
  content: ""; width: 32px; height: 1px; background: var(--gold-400);
}
.hero-video-overlay h1 { color: white; max-width: 760px; }
.hero-video-overlay h1 em { font-style: italic; color: var(--gold-400); font-weight: 500; }
.hero-video-overlay .lede { color: #e7ecf6; max-width: 560px; margin-top: 18px; }
.hero-video-overlay .hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; pointer-events: auto; }

/* Build Leadership */
.build {
  background: var(--paper);
}
.build-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.build-media {
  position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md);
  background:
    repeating-linear-gradient(135deg, rgba(0,68,149,.08) 0 12px, transparent 12px 24px),
    var(--cream-100);
}
.build-media img { width: 100%; height: 100%; object-fit: cover; }
.build-media .placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; color: var(--navy-700);
}
.build-media .placeholder svg { width: 46px; height: 46px; opacity: .5; }
.build-media code {
  font-family: var(--mono); font-size: 12px;
  background: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 4px; color: var(--navy-800);
}
.build-points { display: grid; gap: 22px; margin-top: 32px; }
.build-point { display: flex; gap: 16px; align-items: flex-start; }
.build-point .ico {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--cream-100); color: var(--navy-700);
  display: grid; place-items: center;
}
.build-point .ico svg { width: 22px; height: 22px; }
.build-point h4 { color: var(--navy-900); font-family: var(--sans); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.build-point p { font-size: 14.5px; color: var(--ink-500); margin: 0; }

/* ============================================================
   Academics \u2014 short 3-col overview + expandable detail
   ============================================================ */
.academics-overview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.school-tile {
  background: white; border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.school-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.school-tile .img {
  aspect-ratio: 16/10; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(0,68,149,.08) 0 10px, transparent 10px 20px),
    var(--cream-100);
  display: grid; place-items: center; color: var(--navy-800);
}
.school-tile .img code {
  font-family: var(--mono); font-size: 11px;
  background: rgba(255,255,255,.7); padding: 6px 10px; border-radius: 3px;
}
.school-tile .img .tag {
  position: absolute; top: 14px; left: 14px;
  background: white; color: var(--navy-800);
  padding: 6px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.school-tile .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.school-tile h3 { margin-bottom: 10px; }
.school-tile p { color: var(--ink-500); font-size: 14.5px; flex: 1; margin-bottom: 18px; }
.school-tile .count {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.school-tile .count span {
  font-size: 12px; padding: 4px 10px; background: var(--cream-100);
  border-radius: 999px; color: var(--navy-800);
}
.school-tile .toggle {
  margin-top: auto; width: 100%; justify-content: space-between;
  background: var(--navy-800); color: white; border: 0;
  padding: 13px 18px; border-radius: 999px; cursor: pointer;
  font: 600 14px/1 var(--sans); display: inline-flex; align-items: center;
  transition: background .18s;
}
.school-tile .toggle:hover { background: var(--navy-900); }
.school-tile .toggle svg { width: 16px; height: 16px; transition: transform .25s ease; }
.school-tile.open .toggle svg { transform: rotate(180deg); }

.school-detail {
  display: none;
  margin-top: 40px;
  scroll-margin-top: 110px;
}
.school-detail.open { display: block; animation: detailIn .35s ease both; }
@keyframes detailIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Lecturers listing
   ============================================================ */
.lect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lect-card {
  background: white; border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.lect-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.lect-card .photo {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,68,149,.08) 0 10px, transparent 10px 20px),
    var(--cream-100);
  display: grid; place-items: center; color: var(--navy-700);
}
.lect-card .photo img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.lect-card .photo svg { width: 40px; height: 40px; opacity: .5; }
.lect-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.lect-card .school-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  color: var(--navy-600); margin-bottom: 8px;
}
.lect-card h3 { font-size: 21px; margin-bottom: 4px; }
.lect-card .title { color: var(--gold-500); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.lect-card p { color: var(--ink-500); font-size: 14px; flex: 1; margin: 0 0 18px; }
.lect-card .view {
  border-top: 1px solid var(--line); padding-top: 16px;
  color: var(--navy-700); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.lect-card .view .arrow { transition: transform .18s; }
.lect-card:hover .view .arrow { transform: translateX(4px); }

/* ============================================================
   Lecturer dedicated profile page
   ============================================================ */
.lp-hero {
  display: grid; grid-template-columns: .9fr 1.1fr;
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
}
.lp-hero-photo {
  position: relative; min-height: 360px; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,68,149,.10) 0 12px, transparent 12px 24px),
    var(--cream-100);
  display: grid; place-items: center; color: var(--navy-700);
}
.lp-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-hero-photo .ph { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lp-hero-photo .ph svg { width: 56px; height: 56px; opacity: .5; }
.lp-hero-photo code { font-family: var(--mono); font-size: 12px; background: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 4px; }
.lp-hero-text { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.lp-hero-text .school-tag {
  font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
  color: var(--navy-600); margin-bottom: 14px;
}
.lp-hero-text h1 { font-size: clamp(32px, 4vw, 50px); }
.lp-hero-text .title { color: var(--gold-500); font-size: 19px; font-weight: 600; margin-top: 8px; }
.lp-hero-text .summary { color: var(--ink-700); font-size: 16px; margin-top: 18px; max-width: 520px; }
.lp-social { display: flex; gap: 12px; margin-top: 26px; }
.lp-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-100); color: var(--navy-700);
  display: grid; place-items: center; transition: background .18s, color .18s;
}
.lp-social a:hover { background: var(--navy-800); color: white; }
.lp-social svg { width: 18px; height: 18px; }

.lp-shell {
  display: grid; grid-template-columns: 320px 1fr; gap: 28px;
  align-items: start;
}
.lp-rail {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 16px;
}
.lp-card {
  background: white; border: 1px solid var(--line); border-radius: 8px;
  padding: 26px;
}
.lp-card h4 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--navy-900);
  margin-bottom: 16px;
}
.lp-card h4 svg { width: 18px; height: 18px; color: var(--navy-600); }
.lp-card p { font-size: 14.5px; color: var(--ink-700); margin: 0 0 12px; }
.lp-detail-row { padding: 12px 0; border-top: 1px solid var(--line); }
.lp-detail-row:first-of-type { border-top: 0; }
.lp-detail-row .k { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); font-weight: 700; }
.lp-detail-row .v { font-size: 14.5px; color: var(--navy-900); margin-top: 3px; }
.lp-main { display: flex; flex-direction: column; gap: 28px; }
.lp-tabs {
  display: flex; gap: 8px; border-bottom: 1px solid var(--line);
  margin-bottom: 4px; flex-wrap: wrap;
}
.lp-tab {
  background: none; border: 0; cursor: pointer;
  font: 600 14.5px/1 var(--sans); color: var(--ink-500);
  padding: 14px 16px; position: relative;
}
.lp-tab.active { color: var(--navy-900); }
.lp-tab.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px;
  height: 2px; background: var(--gold-500);
}
.lp-panel { display: none; }
.lp-panel.active { display: flex; flex-direction: column; gap: 24px; animation: detailIn .3s ease both; }
.lp-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.lp-item:first-child { border-top: 0; padding-top: 0; }
.lp-item .marker {
  width: 46px; height: 46px; border-radius: 8px; flex-shrink: 0;
  background: var(--cream-100); color: var(--navy-700);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600;
}
.lp-item h5 { font-family: var(--sans); font-size: 16px; color: var(--navy-900); margin: 0 0 2px; }
.lp-item .org { color: var(--navy-600); font-size: 13.5px; font-weight: 600; }
.lp-item .when { color: var(--ink-500); font-size: 13px; margin-top: 2px; }
.lp-item p { font-size: 14px; color: var(--ink-600, var(--ink-500)); margin: 8px 0 0; }
.lp-skills { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-skills span {
  font-size: 13px; padding: 8px 16px; background: var(--cream-100);
  border-radius: 999px; color: var(--navy-800); font-weight: 500;
}

/* ============================================================
   Photo fills for card / image containers (real photography)
   ============================================================ */
.school-card .img img,
.school-tile .img img,
.news-card .img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.about-image > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
