@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

/* ============ DESIGN TOKENS ============ */
:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --primary: #1e3a5f;
  --primary-deep: #14294a;
  --accent: #f59e0b;
  --accent-soft: #fbbf24;
  --paper: #f8fafc;
  --surface: #ffffff;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --success: #10b981;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, .07), 0 2px 4px -2px rgba(15, 23, 42, .05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, .1), 0 8px 10px -6px rgba(15, 23, 42, .06);
  --shadow-xl: 0 30px 60px -15px rgba(15, 23, 42, .18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --container: 1200px;
}

/* ============ RESET & BASE ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: #fff; }

.shell { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

.skip-link {
  position: absolute; top: -48px; left: 16px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ============ TOP BAR ============ */
.topbar { background: var(--ink); color: #cbd5e1; font-size: 12.5px; letter-spacing: .02em; }
.topbar-inner { height: 40px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--accent-soft); font-weight: 600; transition: color var(--transition); }
.topbar a:hover { color: #fff; }

/* ============ COLLEGE IDENTITY ============ */
.college-identity {
  padding: 22px 24px 18px; text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}
.identity-name { display: flex; align-items: center; justify-content: center; gap: 18px; }
.identity-name img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(15,23,42,.08)); }
.identity-name a {
  font: 600 clamp(20px, 2.4vw, 30px)/1.2 var(--serif);
  color: var(--primary) !important;
  letter-spacing: -.01em;
}
.college-identity span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 500; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
}
.header-inner { height: 68px; display: flex; align-items: center; }

.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff; display: grid; place-items: center;
  font: 600 16px var(--serif);
  box-shadow: var(--shadow-md);
}
.brand strong { display: block; font: 600 18px/1.2 var(--serif); color: var(--ink); }
.brand small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }

.main-menu { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; }
.main-menu > a, .main-menu > .menu-item { padding: 8px 14px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); }
.main-menu > a:hover, .main-menu > .menu-item:hover { background: var(--line-soft); }
.main-menu > a:first-child { background: var(--primary); color: #fff; }
.main-menu > a:first-child:hover { background: var(--primary-deep); }
.main-menu .menu-item { position: relative; }
.main-menu button { background: none; border: 0; color: inherit; font: inherit; display: flex; align-items: center; gap: 6px; }
.main-menu .chevron { flex: none; color: var(--muted); transition: transform var(--transition), color var(--transition); }
.main-menu .menu-item:hover .chevron,
.main-menu .menu-item:focus-within .chevron,
.main-menu .menu-item.expanded .chevron { transform: rotate(180deg); color: var(--primary); }
.main-menu .submenu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0; z-index: 60;
  min-width: 250px; padding: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  animation: dropdownIn .18s ease-out;
}
@keyframes dropdownIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.main-menu .menu-item:hover > .submenu,
.main-menu .menu-item:focus-within > .submenu,
.main-menu .menu-item.expanded > .submenu { display: block; }
.main-menu .submenu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 500; color: var(--ink-soft); transition: background var(--transition), color var(--transition), padding-left var(--transition); }
.main-menu .submenu a:hover { background: var(--line-soft); color: var(--primary); padding-left: 18px; }

.menu-button { display: none; border: 0; background: none; font-size: 26px; color: var(--ink); padding: 6px; border-radius: var(--radius-sm); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 620px;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  isolation: isolate;
}
.hero-image { position: absolute; inset: 0; z-index: -2; background: url('images/College-Front-1-1-scaled.jpg') center/cover; transform: scale(1.05); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(10, 20, 40, .92) 0%, rgba(15, 30, 60, .72) 45%, rgba(15, 30, 60, .35) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 80% 20%, rgba(245, 158, 11, .12) 0%, transparent 60%);
}
.hero-content { position: relative; padding: 80px 0; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  padding: 7px 16px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #fde68a; margin-bottom: 24px;
  animation: fadeUp .7s .1s both;
}
.hero h1 {
  font: 600 clamp(44px, 6vw, 72px)/1.05 var(--serif);
  letter-spacing: -.03em; margin: 0 0 22px;
  animation: fadeUp .7s .2s both;
}
.hero h1 em { color: var(--accent-soft); font-style: italic; font-weight: 500; }
.hero-copy { max-width: 500px; font-size: 17.5px; line-height: 1.7; color: #dbe4ee; margin: 0 0 34px; animation: fadeUp .7s .3s both; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; animation: fadeUp .7s .4s both; }
.hero-scroll {
  position: absolute; bottom: 30px; right: max(24px, calc((100vw - var(--container)) / 2));
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #cbd5e1;
  animation: fadeUp .7s .6s both;
}
.hero-scroll span { display: block; height: 1px; width: 44px; background: rgba(255,255,255,.4); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============ BUTTONS ============ */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  border: 0; transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 0; transition: transform var(--transition); }
.button:hover span { transform: translateX(4px); }
.button-gold { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); color: #1a1206; box-shadow: 0 8px 20px -6px rgba(245, 158, 11, .5); }
.button-gold:hover { box-shadow: 0 12px 28px -6px rgba(245, 158, 11, .6); }
.button-outline { border: 1.5px solid rgba(255, 255, 255, .5); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.button-outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.button-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px -6px rgba(30, 58, 95, .4); }
.button-primary:hover { background: var(--primary-deep); }

.arrow-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; color: var(--primary); transition: gap var(--transition); }
.arrow-link span { font-size: 20px; color: var(--accent); transition: transform var(--transition); }
.arrow-link:hover { gap: 14px; }
.arrow-link:hover span { transform: translateX(3px); }

/* ============ EYEBROW & SECTION HEADINGS ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); text-transform: uppercase; letter-spacing: .16em;
  font-size: 12px; font-weight: 700; margin: 0 0 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.light { color: var(--accent-soft); }
.eyebrow.light::before { background: var(--accent-soft); }

.section { padding: 110px 0; }
.section h2 { font: 600 clamp(36px, 4.2vw, 54px)/1.12 var(--serif); letter-spacing: -.03em; margin: 0; }
.section h2 em { color: var(--accent); font-style: italic; font-weight: 500; }

/* ============ INTRO ============ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: start; }
.intro-copy { padding-top: 26px; font-size: 17px; color: var(--muted); }
.intro-copy p { margin: 0 0 20px; }
.intro-copy .arrow-link { margin-top: 8px; }

/* ============ WELCOME ============ */
.welcome { text-align: center; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.welcome h2 { margin-bottom: 16px; }
.welcome > .shell > p:last-child { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 17.5px; }

/* ============ VISION & MISSION ============ */
.vision { background: var(--surface); }
.mission { background: linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%); }
.vision .intro-copy, .mission .intro-copy { padding-top: 8px; }

/* ============ ABOUT US ============ */
.about-us { background: var(--surface); text-align: center; }
.about-lead { max-width: 820px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.8; }

/* ============ LEADERS & GOVERNANCE ============ */
.leaders { background: linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%); }
.leaders .eyebrow, .governance .eyebrow { margin-bottom: 10px; }
.leaders h2, .governance h2 { margin-bottom: 48px; }
.leader-grid, .governance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card, .gov-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 36px 30px; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-card:hover, .gov-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.leader-card .photo, .gov-card .photo {
  width: 170px; height: 170px; margin: 0 auto 22px; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--line-soft);
  box-shadow: var(--shadow-md); display: grid; place-items: center;
  background: var(--paper);
}
.leader-card .photo img, .gov-card .photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.leader-card h3, .gov-card h3 { font: 600 22px/1.25 var(--serif); color: var(--ink); margin-bottom: 8px; }
.leader-card p, .gov-card p { color: var(--muted); font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }

/* ============ GOVERNANCE ============ */
.governance { background: var(--ink); color: #fff; }
.governance h2 { color: #fff; }
.governance h2 em { color: var(--accent-soft); }
.governance .gov-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: none; backdrop-filter: blur(8px); }
.governance .gov-card:hover { background: rgba(255,255,255,.1); box-shadow: 0 20px 40px -12px rgba(0,0,0,.4); }
.governance .gov-card h3 { color: #fff; }
.governance .gov-card p { color: var(--accent-soft); }
.governance .photo { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); }

/* ============ PRINCIPAL'S DESK ============ */
.principal-desk { background: var(--surface); }
.desk-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.desk-photo {
  position: sticky; top: 100px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.desk-photo img { width: 100%; display: block; }
.desk-copy h2 { margin-bottom: 14px; }
.desk-intro { font: 600 18px/1.5 var(--serif); color: var(--primary); margin-bottom: 22px; }
.desk-copy p { color: var(--muted); font-size: 15.5px; line-height: 1.85; margin-bottom: 18px; }
.desk-sign { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink); font-size: 14.5px; }
.desk-sign strong { color: var(--primary); }

/* ============ PROGRAMMES ============ */
.programmes { background: linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.section-head > p { max-width: 360px; color: var(--muted); margin: 0; font-size: 15.5px; }
.programme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.programme-grid article {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  padding: 38px 34px; display: flex; flex-direction: column;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.programme-grid article::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.programme-grid article:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.programme-grid article:hover::before { transform: scaleX(1); }
.programme-number {
  font: 500 15px var(--serif); color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.programme-number::after { content: ''; width: 28px; height: 1px; background: var(--line); }
.programme-grid h3 { font: 600 30px/1.2 var(--serif); margin: 26px 0 12px; color: var(--ink); }
.programme-grid p { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin: 0 0 24px; }
.programme-grid a { margin-top: auto; font-size: 13.5px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--transition); }
.programme-grid a span { color: var(--accent); font-size: 18px; }
.programme-grid a:hover { gap: 12px; }

/* ============ FEATURE ============ */
.feature { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.feature::after { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 15%, rgba(245, 158, 11, .08) 0%, transparent 60%); pointer-events: none; }
.feature-photo { min-height: 580px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%), url('images/College-Front-1-1-scaled.jpg') center/cover; position: relative; }
.feature-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--ink) 100%); }
.feature-copy { padding: clamp(60px, 8vw, 120px) max(40px, calc((100vw - var(--container)) / 2)); padding-right: 7vw; align-self: center; position: relative; z-index: 1; }
.feature-copy h2 { font: 600 clamp(36px, 4.2vw, 54px)/1.12 var(--serif); letter-spacing: -.03em; margin: 0 0 22px; }
.feature-copy h2 em { color: var(--accent-soft); font-style: italic; font-weight: 500; }
.feature-copy p:not(.eyebrow) { color: #cbd5e1; max-width: 440px; margin: 0 0 32px; font-size: 16px; }

/* ============ NOTICES ============ */
.notices-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.notice-intro { color: var(--muted); margin: 0 0 24px; }
.notice-list { border-top: 1px solid var(--line); }
.notice-list > a {
  display: grid; grid-template-columns: 110px 1fr 24px; gap: 20px;
  padding: 26px 8px; border-bottom: 1px solid var(--line);
  align-items: center; border-radius: var(--radius-sm);
  transition: background var(--transition), padding-left var(--transition);
}
.notice-list > a:hover { background: var(--surface); padding-left: 16px; box-shadow: var(--shadow-sm); }
.notice-list time {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em;
  background: #fef3c7; padding: 5px 10px; border-radius: var(--radius-full);
  width: max-content;
}
.notice-list strong, .notice-list small { display: block; }
.notice-list strong { font-size: 15.5px; color: var(--ink); }
.notice-list small { color: var(--muted); font-size: 13px; margin-top: 4px; }
.notice-list i { font-style: normal; font-size: 20px; color: var(--accent); transition: transform var(--transition); }
.notice-list > a:hover i { transform: translate(3px, -3px); }

/* ============ ADMISSIONS ============ */
.admissions {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.admissions::before {
  content: ''; position: absolute; top: -60%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, .15) 0%, transparent 60%);
  pointer-events: none;
}
.admissions-inner { min-height: 300px; display: grid; grid-template-columns: 1.1fr .8fr auto; gap: 50px; align-items: center; position: relative; }
.admissions h2 { font: 600 clamp(36px, 4.2vw, 52px)/1.12 var(--serif); letter-spacing: -.03em; margin: 0; }
.admissions h2 em { color: var(--accent-soft); font-style: italic; font-weight: 500; }
.admissions p:not(.eyebrow) { color: #dbe4ee; margin: 0; font-size: 16px; }
.admissions .button { white-space: nowrap; }

/* ============ FOOTER ============ */
footer { background: #0b1526; color: #cbd5e1; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-soft), var(--accent)); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding: 70px 0 56px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); color: #1a1206; }
.footer-brand small { color: #94a3b8; }
.footer-top h4 { font-size: 12.5px; color: var(--accent-soft); text-transform: uppercase; letter-spacing: .12em; margin: 8px 0 18px; }
.footer-top > div > a, .footer-top > div > p { display: block; margin: 0 0 10px; font-size: 14px; color: #cbd5e1; transition: color var(--transition), padding-left var(--transition); }
.footer-top > div > a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(148, 163, 184, .15); padding: 20px 0 26px; display: flex; justify-content: space-between; color: #64748b; font-size: 12.5px; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .programme-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid, .governance-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .desk-layout { grid-template-columns: 1fr; gap: 40px; }
  .desk-photo { position: static; max-width: 420px; }
  .feature { grid-template-columns: 1fr; }
  .feature-photo { min-height: 380px; }
  .feature-photo::after { background: linear-gradient(180deg, transparent 50%, var(--ink) 100%); }
  .feature-copy { padding: 70px 24px; }
  .admissions-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .topbar-inner { justify-content: center; }
  .topbar span:last-child { display: none; }
  .college-identity { padding: 16px 20px 14px; }
  .identity-name { gap: 10px; }
  .identity-name img { width: 40px; height: 40px; }
  .identity-name a { font-size: 19px; }
  .college-identity span { font-size: 11px; }

  .header-inner { height: 62px; justify-content: flex-end; }
  .menu-button { display: block; margin-right: 4px; }
  .main-menu {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 18px 20px;
    flex-direction: column; align-items: stretch; gap: 4px;
    max-height: calc(100vh - 62px); overflow-y: auto;
  }
  .main-menu.open { display: flex; animation: dropdownIn .2s ease-out; }
  .main-menu > a, .main-menu > .menu-item { padding: 12px 14px; border-radius: var(--radius-sm); }
  .main-menu > a:first-child { background: var(--primary); color: #fff; }
  .main-menu .menu-item { width: 100%; }
  .main-menu .menu-item button { width: 100%; justify-content: space-between; }
  .main-menu .submenu { display: none; position: static; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 6px 0 6px 14px; padding: 4px 0 4px 12px; min-width: 0; animation: none; }
  .main-menu .menu-item.expanded > .submenu { display: block; }

  .hero { min-height: 560px; }
  .hero-content { padding: 60px 0; }
  .hero h1 { font-size: 44px; }
  .hero-copy { font-size: 16px; }
  .hero-scroll { display: none; }

  .section { padding: 75px 0; }
  .split, .notices-layout { grid-template-columns: 1fr; gap: 36px; }
  .intro-copy { padding-top: 0; }
  .section-head { display: block; }
  .section-head > p { margin-top: 16px; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-grid article { min-height: 0; }
  .leader-grid, .governance-grid { grid-template-columns: 1fr; gap: 20px; }
  .leader-card, .gov-card { padding: 28px 22px; }
  .leader-card .photo, .gov-card .photo { width: 140px; height: 140px; }
  .desk-photo { max-width: 340px; margin-inline: auto; }
  .notices-layout { gap: 40px; }
  .admissions-inner { padding: 60px 0; }
  .admissions-inner p { margin: 20px 0 26px !important; }
  .footer-top { grid-template-columns: 1fr; padding: 50px 0; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 4px; }
}

@media (max-width: 480px) {
  .shell { width: min(var(--container), calc(100% - 32px)); }
  .hero h1 { font-size: 38px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .programme-grid article { padding: 30px 24px; }
  .notice-list > a { grid-template-columns: 80px 1fr 18px; gap: 10px; }
  .notice-list small { font-size: 12px; }
  .footer-top { grid-template-columns: 1fr; }
}