:root {
  --pine: #14382f;
  --pine-deep: #0c241e;
  --pine-soft: #1f5244;
  --moss: #3c7a63;
  --brick: #c14b35;
  --brick-deep: #9a3423;
  --saffron: #e3a31a;
  --gold: #f2c14b;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --ink: #1b1712;
  --muted: #5f574c;
  --line: #e6dcc8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 56, 47, 0.12);
  --radius: 18px;
  --max: 1180px;
  --header-h: 92px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: 8px 14px;
}
.skip-link:focus { left: 8px; }

/* Top bar */
.topbar {
  background: var(--pine-deep);
  color: #f4ead4;
  font-size: 0.86rem;
  border-bottom: 3px solid var(--saffron);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 42px; flex-wrap: wrap; padding: 8px 0;
}
.topbar-contacts { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-contacts a, .topbar-contacts span { display: inline-flex; align-items: center; gap: 8px; opacity: 0.95; }
.topbar-contacts a:hover { color: var(--gold); }
.tb-icon {
  width: 18px; height: 18px;
  background: none; border-radius: 0;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tb-icon svg { width: 18px; height: 18px; display: block; }
.tb-icon svg path { fill: #f2c14b; }
.topbar-social { display: flex; gap: 8px; }
.social {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--pine-deep);
  transition: transform 0.2s ease, background 0.2s ease;
}
.social:hover { transform: translateY(-2px); background: #ffd56a; }
.social svg { width: 14px; height: 14px; display: block; }
.social svg path { fill: #14382f; }

/* Header */
.site-header {
  background: var(--pine);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  overflow: visible;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 88px; padding: 14px 0;
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: 12px; min-width: 0; flex: 0 1 340px;
}
.brand-mark {
  width: 64px; height: 64px; flex: 0 0 64px;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(242,193,75,.45);
  display: grid; place-items: center;
  overflow: hidden; padding: 5px;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  filter: none;
}
.brand-text {
  display: flex; flex-direction: column; gap: 1px; min-width: 0; line-height: 1.2;
}
.brand-text strong {
  color: var(--gold); font-size: 1.05rem; letter-spacing: 0.12em; font-weight: 700;
}
.brand-text span {
  color: #f4ead4; font-size: 0.72rem; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.brand-text span:last-child { color: #d7c9a8; font-size: 0.7rem; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0;
  background: rgba(255,255,255,.08); color: var(--gold);
  border-radius: 10px; cursor: pointer; place-items: center;
}
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  display: block; width: 20px; height: 2px; background: currentColor; position: relative;
  transition: transform .2s ease, top .2s ease, background .2s ease;
}
.nav-toggle span:before, .nav-toggle span:after {
  content: ""; position: absolute; left: 0;
}
.nav-toggle span:before { top: -6px; }
.nav-toggle span:after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span:before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:after { top: 0; transform: rotate(-45deg); }

.site-nav {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 18px; flex-wrap: nowrap; flex: 1; max-width: none;
}
.site-nav a {
  color: #f7f1e4; padding: 6px 0; font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.01em; position: relative; border-radius: 0;
  white-space: nowrap;
}
.site-nav a.nav-home {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  min-height: 36px;
  padding: 0 !important;
  margin: 0;
  flex: 0 0 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: var(--gold);
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
}
.site-nav a.nav-home svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.site-nav a.nav-home svg path { fill: #14382f; }
.site-nav a.nav-home .nav-home-label { display: none; }
.site-nav a.nav-home:hover, .site-nav a.nav-home.active {
  background: #ffd56a;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--gold);
}
.site-nav a.active:not(.nav-home) {
  background: rgba(242, 193, 75, 0.12);
}

/* Hero slider */
.hero {
  position: relative; height: min(78vh, 640px); min-height: 420px;
  overflow: hidden; background: #111;
}
.slides { height: 100%; }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72); }
.slide-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; padding: 48px 0 72px;
  background: linear-gradient(180deg, rgba(12,36,30,.15) 0%, rgba(12,36,30,.72) 100%);
  color: white;
}
.kicker {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.slide-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.08; max-width: 16ch; font-weight: 600;
}
.slide-copy p { max-width: 46ch; margin: 14px 0 22px; color: #f3ead8; }
.hero-nav, .hero-dots { position: absolute; z-index: 3; }
.hero-nav { right: 22px; bottom: 22px; display: flex; gap: 8px; }
.hero-nav button, .to-top {
  width: 44px; height: 44px; border: 0; cursor: pointer;
  background: var(--saffron); color: var(--pine-deep); font-size: 1.2rem;
  display: grid; place-items: center;
}
.hero-dots { left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer;
}
.hero-dots button.active { background: var(--gold); width: 22px; border-radius: 99px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.8rem; border: 0; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--saffron); color: var(--ink); }
.btn-gold:hover { background: var(--gold); }
.btn-dark { background: var(--pine); color: white; }
.btn-line { background: transparent; border: 1.5px solid var(--pine); color: var(--pine); }

.section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-pine { background: var(--pine); color: #f6f0e4; }

.section-head { margin-bottom: 28px; }
.section-head h2, .page-hero h1, .serif {
  font-family: "Cormorant Garamond", serif; font-weight: 600; color: var(--pine-deep);
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; }
.rule {
  width: 64px; height: 3px; background: var(--saffron); margin: 12px 0 16px; border: 0;
}

/* About preview */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%; height: 460px; object-fit: cover; border-radius: 6px;
  box-shadow: var(--shadow);
}
.about-photo:after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--saffron); z-index: -1;
}
.badge {
  position: absolute; left: -16px; bottom: 28px;
  background: var(--brick); color: white; padding: 16px 18px; max-width: 180px;
  font-family: "Cormorant Garamond", serif; font-size: 1.25rem; line-height: 1.2;
}
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 26px;
}
.fact {
  background: var(--paper); border: 1px solid var(--line); padding: 14px;
  text-align: center;
}
.fact b { display: block; color: var(--brick); font-size: 1.15rem; }
.fact span { font-size: 0.78rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* Beyond academics */
.beyond-sec {
  padding: 90px 0;
  background:
    radial-gradient(circle at 0 20%, rgba(227,163,26,.18), transparent 42%),
    linear-gradient(180deg, #f3eee4 0%, #ebe4d4 100%);
}
.beyond-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end;
  margin-bottom: 36px;
}
.beyond-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--pine-deep); line-height: 1; }
.beyond-head blockquote {
  background: var(--pine); color: #f6f0e4; padding: 26px 28px;
  border-left: 6px solid var(--gold); position: relative;
}
.beyond-head blockquote p {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.25rem; line-height: 1.4;
}
.beyond-head cite { display: block; color: var(--gold); font-size: 0.82rem; margin: 10px 0 16px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.beyond-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.beyond-card {
  background: #fff; border-radius: 22px 22px 8px 8px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(20,56,47,.1);
  position: relative; transition: transform .3s ease;
}
.beyond-card:nth-child(2) { transform: translateY(-18px); }
.beyond-card:hover { transform: translateY(-10px); }
.beyond-card:nth-child(2):hover { transform: translateY(-28px); }
.beyond-num { display: none !important; }
.beyond-photo { height: 210px; overflow: hidden; }
.beyond-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.beyond-card:hover .beyond-photo img { transform: scale(1.08); }
.beyond-body { padding: 20px 20px 24px; }
.beyond-body h3 { font-family: "Cormorant Garamond", serif; font-size: 1.45rem; color: var(--pine-deep); margin-bottom: 8px; }
.beyond-body p { color: var(--muted); font-size: 0.92rem; }

/* Overlay pillars */
.pillars-sec {
  padding: 80px 0 90px;
  background: var(--pine-deep);
  color: #f6f0e4;
}
.pillars-intro h2, .pillars-intro .kicker { color: var(--gold); }
.pillars-intro h2 { color: #fff; }
.pillars-intro .rule { background: var(--gold); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar {
  position: relative; min-height: 420px; overflow: hidden;
  border: 1px solid rgba(242,193,75,.25);
}
.pillar img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease; filter: brightness(.55);
}
.pillar:hover img { transform: scale(1.08); filter: brightness(.7); }
.pillar-copy {
  position: relative; z-index: 1; height: 100%; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px; background: linear-gradient(180deg, transparent 30%, rgba(8,22,18,.88) 100%);
}
.pillar-copy span {
  color: var(--gold); font-weight: 700; letter-spacing: .16em; font-size: 0.78rem;
}
.pillar-copy h3 {
  font-family: "Cormorant Garamond", serif; font-size: 2.2rem; color: #fff; margin: 6px 0 10px;
}
.pillar-copy p { color: #e7dfd0; font-size: 0.95rem; }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trio-card {
  background: #eef3f0; padding: 0 0 22px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.trio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.trio-card img { width: 100%; height: 210px; object-fit: cover; }
.trio-card h3 {
  font-family: "Cormorant Garamond", serif; font-size: 1.7rem;
  color: var(--pine-deep); margin: 18px 0 8px;
}
.trio-card p { padding: 0 18px; color: var(--muted); text-align: justify; }

/* Principal */
.principal {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.principal img { width: 100%; height: 420px; object-fit: cover; }
.gold-word { color: var(--saffron); font-weight: 700; }

/* Mission */
.mission {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: stretch;
}
.mission-list { display: grid; gap: 16px; margin-top: 8px; }
.mission-list li { color: var(--muted); }
.mission-list strong { color: var(--saffron); }
.mission-panel {
  background: linear-gradient(165deg, #16493c, #0d2b24);
  color: white; padding: 32px 28px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.mission-panel h3 {
  font-family: "Cormorant Garamond", serif; color: var(--gold);
  font-size: 2.2rem; line-height: 1.1;
}
.mission-panel .sub { color: var(--gold); margin-bottom: 8px; }
.mission-panel p { color: #e7f0ea; margin: 10px 0 18px; }
.mission-points { display: grid; gap: 12px; }
.mission-points div {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid rgba(242, 193, 75, .35);
  font-size: 0.95rem;
}
.icon-dot {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
  background: rgba(242,193,75,.15); color: var(--gold);
  display: grid; place-items: center; font-weight: 700;
}

/* Gallery marquee */
.gallery-banner {
  background: var(--pine-deep); color: white; text-align: center; padding: 28px 16px 10px;
}
.gallery-banner h2 { color: white; letter-spacing: .12em; font-size: clamp(1.4rem, 3vw, 2rem); }
.gallery-banner .rule { margin: 12px auto 18px; background: white; width: 80px; }
.marquee {
  overflow: hidden; background: var(--cream); padding: 18px 0 8px;
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee a { flex: 0 0 280px; height: 180px; overflow: hidden; }
.marquee img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Affiliations */
.logos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.logo-chip {
  background: white; border: 1px solid var(--line); min-height: 110px;
  display: grid; place-items: center; text-align: center; padding: 16px;
  font-weight: 600; color: var(--pine);
}
.logo-chip span { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 400; margin-top: 4px; }

/* Footer */
.site-footer { background: #101916; color: #d7d0c3; padding: 54px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .85fr 1.15fr; gap: 36px; }
.site-footer h3 { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.45rem; margin-bottom: 14px; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul, .site-footer li { list-style: none; list-style-type: none; }
.site-footer li { margin-bottom: 8px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand img {
  height: 72px; width: auto; max-width: 120px; object-fit: contain;
  background: #fff; padding: 6px; border-radius: 12px;
}
.footer-name {
  color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.35rem; display: block;
}
.footer-about { color: #cfc6b6; }
.footer-about p { color: inherit; margin: 0 0 8px; }
.visit-list { display: flex; flex-direction: column; gap: 14px; }
.visit-item {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start;
}
.visit-icon {
  width: 22px; height: 22px;
  background: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.visit-icon svg { width: 22px; height: 22px; display: block; }
.visit-icon svg path { fill: #f2c14b; }
.visit-item span { display: block; color: var(--gold); font-size: 0.75rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.visit-item p, .visit-item a { color: #d7d0c3; margin: 0; }
.copy {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 16px;
  font-size: 0.85rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  align-items: center;
}
.copy .designed a { color: var(--gold); font-weight: 600; }
.copy .designed a:hover { color: #fff; }

.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.to-top.hidden { opacity: 0; pointer-events: none; }

/* Inner pages */
.page-hero {
  background:
    linear-gradient(120deg, rgba(12,36,30,.82), rgba(193,75,53,.45)),
    url("../image/campus-front.jpg") center/cover no-repeat;
  color: white; padding: 72px 0 54px;
}
.page-hero h1 { color: white; font-size: clamp(2.1rem, 5vw, 3.6rem); }
.crumbs { color: #f0e3c4; font-size: 0.88rem; margin-bottom: 8px; }
.crumbs a:hover { color: var(--gold); }

.prose p { color: var(--muted); margin-bottom: 14px; }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: start; }
.split img { width: 100%; height: 380px; object-fit: cover; }

.staff-table-wrap { overflow-x: auto; background: var(--paper); border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 14px 16px; }
th {
  background: var(--pine); color: var(--gold); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; font-size: 0.78rem;
}
tr:nth-child(even) { background: #f3eee3; }
td { border-bottom: 1px solid var(--line); }
tfoot td {
  background: var(--pine); color: var(--gold); font-weight: 700; border: 0;
}

.student-intro { margin-bottom: 28px; }
.student-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px;
}
.student-stat {
  background: var(--paper); border: 1px solid var(--line); padding: 18px 16px;
  min-height: 130px; display: flex; flex-direction: column; justify-content: center;
}
.student-stat span { color: var(--pine); font-weight: 600; font-size: 0.92rem; }
.student-stat strong {
  font-family: "Cormorant Garamond", serif; font-size: 2.4rem; line-height: 1.1;
  color: var(--saffron); margin: 6px 0 2px;
}
.student-stat em { font-style: normal; color: var(--muted); font-size: 0.8rem; }
.student-total {
  background: var(--pine); color: #f6f0e4; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.student-total span { letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; color: var(--gold); }
.student-total b { font-family: "Cormorant Garamond", serif; font-size: 2.4rem; }
.student-table { min-width: 0; }
.student-table table { min-width: 0; }
.slide-text { max-width: 46ch; margin: 14px 0 22px; color: #f3ead8; }
.footer-about p { color: inherit; margin: 0; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.gallery-grid a { display: block; overflow: hidden; height: 230px; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

.certs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cert-card {
  background: var(--paper); border: 1px solid var(--line); padding: 22px;
  display: flex; flex-direction: column; gap: 10px; min-height: 180px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert-icon {
  width: 42px; height: 42px; background: #f7e7c2; color: var(--brick-deep);
  display: grid; place-items: center; font-weight: 800;
}
.cert-card h3 { font-size: 1.05rem; color: var(--pine-deep); }
.cert-card p { color: var(--muted); font-size: 0.88rem; flex: 1; }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card {
  background: var(--paper); border-top: 4px solid var(--saffron);
  padding: 28px 22px; box-shadow: var(--shadow); text-align: center;
}
.contact-card h3 { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; margin: 8px 0; }
.contact-card p, .contact-card a { color: var(--muted); }
.map-wrap { margin-top: 28px; border: 1px solid var(--line); overflow: hidden; min-height: 360px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

.doc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.pdf-viewer {
  background: var(--paper); border: 1px solid var(--line); overflow: hidden;
}
.pdf-viewer iframe { width: 100%; height: 82vh; min-height: 560px; border: 0; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,20,16,.92); z-index: 80;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 44px; height: 44px;
  background: var(--saffron); border: 0; cursor: pointer; font-size: 1.4rem;
}

.site-footer .footer-name {
  color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.35rem; margin-bottom: 8px; display: block;
}

.video-band { background: var(--pine-deep); color: #f6f0e4; padding: 72px 0; }
.video-band h2 { color: #fff; }
.video-band .rule { background: var(--gold); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.video-card {
  position: relative; overflow: hidden; border: 1px solid rgba(242,193,75,.28);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.video-card video { width: 100%; height: 320px; object-fit: cover; display: block; background: #000; }
.video-card p {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: 12px 14px; font-size: 0.85rem;
  background: linear-gradient(transparent, rgba(8,20,16,.85));
}

@media (max-width: 980px) {
  .video-grid { grid-template-columns: 1fr; }
  .site-nav { max-width: none; }
  .about-grid, .beyond-head, .principal, .mission, .split, .footer-grid {
    grid-template-columns: 1fr;
  }
  .beyond-cards, .pillars, .trio, .logos, .gallery-grid, .certs, .contact-cards, .facts, .student-stats {
    grid-template-columns: 1fr 1fr;
  }
  .beyond-card:nth-child(2), .beyond-card:hover, .beyond-card:nth-child(2):hover { transform: none; }
  .about-photo:after { display: none; }
  .badge { left: 12px; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-toggle { display: grid; flex: 0 0 46px; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    width: 100%;
    background: #0c241e;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 10px;
    border-top: 1px solid rgba(242,193,75,.28);
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
    z-index: 80;
    max-height: min(78vh, calc(100dvh - 72px));
    overflow-y: auto;
    max-width: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    font-size: 1.02rem;
    font-weight: 600;
    padding: 13px 22px;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: #f7f1e4;
    background: transparent;
  }
  .site-nav a:hover, .site-nav a.active:not(.nav-home) {
    color: var(--gold);
    background: rgba(242,193,75,.1);
  }
  .site-nav a.nav-home {
    width: auto !important;
    height: auto !important;
    min-width: 0;
    min-height: 0;
    flex: 0 0 auto;
    align-self: stretch;
    justify-content: flex-start;
    gap: 12px;
    margin: 4px 12px 8px;
    padding: 10px 14px !important;
    border-radius: 999px;
    border-bottom: 0;
    background: var(--gold) !important;
    color: #14382f;
  }
  .site-nav a.nav-home .nav-home-label {
    display: inline;
    font-size: 1rem;
    font-weight: 700;
    color: #14382f;
    letter-spacing: 0.02em;
  }
  .site-nav a.nav-home:hover, .site-nav a.nav-home.active {
    background: #ffd56a !important;
  }
  .brand { flex: 1; min-width: 0; }
  .brand img { height: 44px; max-width: none; }
  .brand-text span { white-space: normal; }
  .brand-mark { width: 52px; height: 52px; flex-basis: 52px; }
  .brand-mark img { height: auto; }
  .hero { min-height: 360px; height: 68vh; }
  .beyond-cards, .pillars, .trio, .logos, .gallery-grid, .certs, .contact-cards, .facts, .student-stats {
    grid-template-columns: 1fr;
  }
  .pillar, .pillar-copy { min-height: 320px; }
  .header-inner { min-height: 72px; }
  .section { padding: 56px 0; }
  .about-photo img, .principal img, .split img { height: 280px; }
  .marquee a { flex-basis: 220px; height: 140px; }
}
