/* ============ Design tokens ============ */
:root {
  --navy:           #1E3A8A;
  --navy-dark:      #172554;
  --navy-light:     #3B82F6;
  --navy-tint:      #DBEAFE;
  --gold:           #D4A017;
  --gold-light:     #E8C547;
  --cream:          #FAF7F0;
  --paper:          #FFFFFF;
  --ink:            #0F172A;
  --muted:          #64748B;
  --border:         #E2E8F0;

  --shadow-sm:  0 1px 2px rgba(15,23,42,0.05);
  --shadow-md:  0 4px 12px rgba(15,23,42,0.08);
  --shadow-lg:  0 12px 32px rgba(15,23,42,0.12);

  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  20px;

  --maxw: 1200px;
  --header-h: 110px;

  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============ Layout helpers ============ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.section-title::after {
  content: ""; display: block; width: 64px; height: 4px; margin-top: 14px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px;
}
.section-title.center { margin-inline: auto; }
.section-title.center::after { margin-inline: auto; }
.section-subtitle { margin-top: 1rem; font-size: 1rem; color: var(--muted); max-width: 700px; }
.section-head.center .section-subtitle { margin-inline: auto; }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; font-size: 0.95rem; font-weight: 600;
  border-radius: var(--radius-sm); transition: all 0.2s ease;
  cursor: pointer; white-space: nowrap; border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(6px); }
.btn-outline:hover { background: rgba(255,255,255,0.18); }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn svg { width: 1em; height: 1em; }

/* ============ Top utility bar ============ */
.topbar { background: var(--navy-dark); color: #fff; font-size: 0.78rem; }
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.55rem; padding-bottom: 0.55rem; gap: 1rem; flex-wrap: wrap;
}
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info a, .topbar-info span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.topbar-info a:hover { color: var(--gold-light); }
.topbar-info svg { width: 14px; height: 14px; }
.topbar-actions { display: flex; gap: 1.25rem; align-items: center; }
.topbar-actions .apply { color: var(--gold-light); font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }
.topbar-actions .apply:hover { text-decoration: underline; }
.topbar-actions .login { color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 0.3rem; }
.topbar-actions .login:hover { color: #fff; }
@media (max-width: 880px) { .topbar { display: none; } }

/* ============ Header / nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.5rem; max-width: var(--maxw); margin: 0 auto; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand > img, .brand > svg { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.brand-text .tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.55rem 0.85rem; font-size: 0.92rem; font-weight: 500;
  color: rgba(15,23,42,0.8); border-radius: 8px; transition: all 0.2s;
}
.nav a:hover { background: rgba(30,58,138,0.08); color: var(--navy); }
.nav a.cta { margin-left: 0.5rem; background: var(--navy); color: #fff; padding: 0.6rem 1.1rem; font-weight: 600; }
.nav a.cta:hover { background: var(--navy-dark); }
.hamburger {
  display: none; background: transparent; border: 1.5px solid rgba(30,58,138,0.3);
  color: var(--navy); padding: 0.5rem; border-radius: 8px;
}
.hamburger svg { width: 22px; height: 22px; }
@media (max-width: 980px) { .nav, .nav a.cta { display: none; } .hamburger { display: inline-flex; } }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,0.5); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: -340px; width: 320px; max-width: 85vw; height: 100vh;
  background: var(--cream); z-index: 201; padding: 1.5rem; overflow-y: auto;
  transition: right 0.3s ease; box-shadow: var(--shadow-lg);
}
.drawer.open { right: 0; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.drawer-close { background: rgba(30,58,138,0.08); color: var(--navy); border-radius: 8px; padding: 0.45rem; display: inline-flex; }
.drawer-close svg { width: 20px; height: 20px; }
.drawer nav { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer nav a { padding: 0.85rem 1rem; border-radius: 8px; font-weight: 500; color: var(--ink); }
.drawer nav a:hover { background: rgba(30,58,138,0.08); color: var(--navy); }
.drawer .apply {
  margin-top: 1rem; display: flex; justify-content: center; gap: 0.5rem;
  background: var(--navy); color: #fff; padding: 0.85rem 1rem;
  border-radius: var(--radius-sm); font-weight: 600;
}
.drawer-contact { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--muted); }
.drawer-contact a, .drawer-contact p { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.drawer-contact a:hover { color: var(--navy); }
.drawer-contact svg { width: 14px; height: 14px; color: var(--gold); }

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    linear-gradient(90deg, rgba(9,30,69,0.92) 0%, rgba(9,30,69,0.76) 43%, rgba(9,30,69,0.26) 100%),
    var(--hero-image, url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 780' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop stop-color='%2389cfff'/%3E%3Cstop offset='.56' stop-color='%23d9efff'/%3E%3Cstop offset='1' stop-color='%23f2dfaa'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='780' fill='url(%23sky)'/%3E%3Cpath d='M0 392 154 220l108 128 184-224 204 266 168-196 174 206 142-164 420 210v128H0Z' fill='%237697b6'/%3E%3Cpath d='M0 470c260-128 508-120 744 22 270 162 552 126 856-92v380H0Z' fill='%234f8758'/%3E%3Cpath d='M0 574c252-100 512-86 780 42 278 133 540 90 820-62v226H0Z' fill='%231f5f43'/%3E%3C/svg%3E"));
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,20,48,0.12), rgba(5,20,48,0.72)),
    radial-gradient(circle at 18% 34%, rgba(212,160,23,0.18), transparent 26%);
  pointer-events: none;
}
.hero-inner { position: relative; min-height: 640px; padding: clamp(5rem, 8vw, 7rem) 0; display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem; border: 1px solid rgba(232,197,71,0.5);
  background: rgba(255,255,255,0.08); color: var(--gold-light);
  border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  backdrop-filter: blur(12px); margin-bottom: 1.5rem;
}
.hero-badge svg, .hero-badge i { width: 14px; height: 14px; font-size: 14px; }
.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.65rem, 5.8vw, 5.1rem);
  font-weight: 800; line-height: 1.04;
  text-shadow: 0 6px 22px rgba(0,0,0,0.38);
}
.hero p {
  margin-top: 1.15rem; font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255,255,255,0.92); max-width: 650px; line-height: 1.65;
}
.hero-cta { margin-top: 2.2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-cta .btn {
  border-radius: 3px; min-height: 50px; padding-inline: 1.35rem;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.84rem;
}
.hero-slider { position: relative; z-index: 2; width: 100%; }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; animation: heroFade 0.6s ease; }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-dots { display: flex; gap: 0.6rem; margin-top: 2.1rem; }
.hero-dots button { width: 34px; height: 4px; background: rgba(255,255,255,0.45); border-radius: 2px; }
.hero-dots button.is-active { background: var(--gold-light); }

.hero-feature-strip {
  position: relative; z-index: 3; background: var(--cream);
  border-bottom: 1px solid rgba(30,58,138,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.08);
}
.hero-feature-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 0;
  background: var(--paper); border: 1px solid rgba(30,58,138,0.08);
  border-top: 0; box-shadow: var(--shadow-md);
}
.hero-feature-item {
  min-height: 112px; display: grid; place-items: center; align-content: center;
  gap: 0.55rem; padding: 1rem 0.75rem; text-align: center;
  border-left: 1px solid rgba(30,58,138,0.1); color: var(--navy); background: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-feature-item:first-child { border-left: 0; }
.hero-feature-item:hover { background: rgba(250,247,240,0.75); transform: translateY(-2px); }
.hero-feature-item svg, .hero-feature-item i { width: 34px; height: 34px; font-size: 30px; color: var(--gold); }
.hero-feature-item span {
  display: block; max-width: 130px; font-size: 0.72rem; line-height: 1.25;
  text-transform: uppercase; font-weight: 800; color: #1e293b;
}
@media (max-width: 880px) {
  .hero-inner { min-height: auto; padding: 4rem 0; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 4.4rem); }
  .hero-feature-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .hero-badge { font-size: 0.76rem; padding-inline: 0.85rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-feature-item { min-height: 96px; }
}

/* ============ Stats band ============ */
.stats-band { padding: 3rem 0 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: var(--paper); border: 1px solid rgba(30,58,138,0.1);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.stat-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: var(--radius); transition: background 0.2s; }
.stat-item:hover { background: rgba(30,58,138,0.05); }
.stat-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--navy); color: #fff; display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md);
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-value { font-size: 1.85rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.stat-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(15,23,42,0.8); }
.stat-sub { font-size: 0.72rem; color: var(--muted); margin-top: 0.15rem; }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ============ Card grids ============ */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid rgba(30,58,138,0.1);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: all 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(212,160,23,0.4); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(30,58,138,0.06); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: all 0.2s; font-size: 24px;
}
.card:hover .card-icon { background: var(--gold); color: var(--ink); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.card p { font-size: 0.9rem; color: rgba(15,23,42,0.7); margin-top: 0.5rem; line-height: 1.6; }
.card-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; height: 160px; background: rgba(30,58,138,0.06); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============ About pillars ============ */
.pillar { position: relative; overflow: hidden; }
.pillar-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 1.25rem; box-shadow: var(--shadow-md);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar-icon.v1 { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.pillar-icon.v2 { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.pillar-icon.v3 { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.pillar h3 { color: var(--navy); }
.pillar-deco {
  position: absolute; bottom: -4px; right: -4px; width: 80px; height: 80px;
  border-radius: 50%; background: rgba(212,160,23,0.1); transition: transform 0.3s ease;
}
.pillar:hover .pillar-deco { transform: scale(1.4); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-top: 3rem; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }
.about-split h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.85rem; }
.about-split p { font-size: 0.92rem; color: rgba(15,23,42,0.75); line-height: 1.7; margin-bottom: 0.85rem; }
.checklist { display: grid; gap: 0.75rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem;
  background: var(--paper); border: 1px solid rgba(30,58,138,0.1);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  font-size: 0.9rem; color: rgba(15,23,42,0.85);
}
.checklist svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); margin-top: 1px; }

/* ============ Programs ============ */
.program-card { position: relative; overflow: hidden; padding: 2rem 1.5rem; }
.program-card .accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 5px; transition: height 0.2s; }
.program-card:hover .accent-bar { height: 7px; }
.program-head { display: flex; gap: 1.25rem; align-items: flex-start; }
.program-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md); font-size: 26px;
}
.program-icon svg { width: 28px; height: 28px; }
.program-title-wrap { flex: 1; min-width: 0; }
.program-title-wrap h3 { display: inline; font-family: var(--font-serif); font-size: 1.35rem; color: var(--navy); }
.program-tag {
  display: inline-block; padding: 0.2rem 0.55rem; margin-left: 0.5rem;
  border: 1px solid rgba(212,160,23,0.4); color: var(--navy);
  border-radius: 999px; font-size: 0.72rem; font-weight: 600; vertical-align: middle;
}
.program-faculty { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 0.35rem; }
.program-meta { margin-top: 0.85rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(15,23,42,0.7); flex-wrap: wrap; }
.program-meta svg { width: 14px; height: 14px; color: var(--gold); }
.program-meta .dot { color: var(--border); }
.program-desc { margin-top: 1rem; font-size: 0.9rem; color: rgba(15,23,42,0.8); line-height: 1.65; }
.program-desc p { margin-bottom: 0.6rem; }
.program-careers-label { margin-top: 1.25rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.program-careers { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.program-careers span { background: rgba(30,58,138,0.06); color: var(--navy); padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.78rem; font-weight: 500; }
.program-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.5rem; font-size: 0.9rem; font-weight: 600; color: var(--navy); transition: gap 0.2s; }
.program-link:hover { gap: 0.7rem; color: var(--navy-dark); }
.program-link svg { width: 16px; height: 16px; }

/* ============ Facilities ============ */
#facilities {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, rgba(7,24,58,0.94), rgba(7,24,58,0.78)), var(--navy-dark);
}
#facilities::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,24,58,0.38), rgba(7,24,58,0.82));
  pointer-events: none;
}
#facilities .container { position: relative; z-index: 1; }
#facilities .section-eyebrow, #facilities .section-title, #facilities .section-subtitle { color: #fff; }
#facilities .section-title::after { background: var(--gold-light); }
#facilities .card {
  background: rgba(255,255,255,0.94); border-color: rgba(255,255,255,0.34);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18); backdrop-filter: blur(10px);
}

/* ============ Notices ============ */
#notices { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%); }
#notices::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 230px;
  background: linear-gradient(135deg, rgba(30,58,138,0.1), rgba(212,160,23,0.12)); pointer-events: none;
}
#notices .container { position: relative; z-index: 1; }
.notices-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.notices-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.notices-actions .btn { background: #fff; border-color: rgba(30,58,138,0.16); color: var(--navy); box-shadow: var(--shadow-sm); }
.notices-actions .btn:hover { background: var(--navy); color: #fff; }
.notices-grid { display: grid; grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.5fr); gap: 1.25rem; align-items: start; }
@media (max-width: 880px) { .notices-grid { grid-template-columns: 1fr; } }

.featured-notice {
  position: relative; background: linear-gradient(180deg, rgba(8,25,58,0.08), rgba(8,25,58,0)), var(--navy-dark);
  color: #fff; padding: 2rem; border-radius: 10px; overflow: hidden;
  box-shadow: 0 22px 55px rgba(15,23,42,0.2); display: flex; flex-direction: column;
}
.featured-notice::before {
  content: ""; position: absolute; top: -70px; right: -80px; width: 230px; height: 230px;
  border-radius: 50%; background: rgba(212,160,23,0.32); filter: blur(24px);
}
.featured-notice::after {
  content: "NOTICE"; position: absolute; right: -0.3rem; bottom: -1rem;
  font-size: 4rem; font-weight: 900; letter-spacing: 0.08em; color: rgba(255,255,255,0.05);
}
.featured-notice .label {
  display: flex; align-items: center; gap: 0.5rem; width: max-content; color: #fff;
  background: rgba(212,160,23,0.95); padding: 0.45rem 0.7rem; border-radius: 999px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.featured-notice .label svg { width: 18px; height: 18px; }
.featured-notice h3 { position: relative; z-index: 1; font-family: var(--font-serif); font-size: clamp(1.45rem, 2.2vw, 1.85rem); margin-top: 1.25rem; line-height: 1.3; }
.featured-notice p { position: relative; z-index: 1; margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.65; flex: 1; }
.featured-notice .footer {
  position: relative; z-index: 1; margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15); display: flex;
  justify-content: space-between; align-items: center; font-size: 0.78rem; gap: 1rem; flex-wrap: wrap;
}
.featured-notice .footer .date { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.8); }
.featured-notice .footer .date svg { width: 14px; height: 14px; }
.featured-notice .footer .read { color: var(--gold-light); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.featured-notice .footer .read:hover { gap: 0.7rem; }
.featured-notice .footer .read svg { width: 14px; height: 14px; }

.notices-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.notice-card {
  position: relative; display: grid; grid-template-columns: 82px minmax(0, 1fr);
  gap: 1rem; align-items: start; padding: 1rem; background: var(--paper);
  border: 1px solid rgba(30,58,138,0.1); border-radius: 10px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06); transition: all 0.2s;
}
.notice-card:hover { transform: translateY(-2px); border-color: rgba(212,160,23,0.4); box-shadow: 0 16px 34px rgba(15,23,42,0.1); }
.notice-card .top { grid-row: span 3; display: grid; gap: 0.45rem; justify-items: stretch; }
.notice-badge {
  order: 2; padding: 0.25rem 0.4rem; background: rgba(30,58,138,0.08); color: var(--navy);
  border-radius: 4px; font-size: 0.64rem; font-weight: 800; text-align: center; text-transform: uppercase;
}
.notice-date {
  order: 1; min-height: 62px; display: grid; place-items: center; padding: 0.45rem;
  border-radius: 8px; background: var(--navy); color: #fff; font-size: 0.72rem;
  line-height: 1.25; text-align: center; font-weight: 800;
}
.notice-card h4 { font-family: var(--font-serif); font-size: 1.06rem; color: var(--ink); line-height: 1.35; transition: color 0.2s; }
.notice-card:hover h4 { color: var(--navy); }
.notice-card .excerpt {
  margin-top: 0.25rem; font-size: 0.82rem; color: rgba(15,23,42,0.65); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.notice-card .more { margin-top: 0.35rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); transition: gap 0.2s; }
.notice-card:hover .more { gap: 0.7rem; }
.notice-card .more svg { width: 14px; height: 14px; }
.notice-attachments { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.notice-attachments a {
  display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; font-weight: 600;
  background: rgba(30,58,138,0.06); color: var(--navy); padding: 0.22rem 0.55rem; border-radius: 999px;
}
.notice-attachments a:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 680px) {
  .notice-card { grid-template-columns: 1fr; }
  .notice-card .top { grid-row: auto; grid-template-columns: 84px 1fr; align-items: center; }
}

/* ============ Leadership ============ */
.leadership-carousel {
  position: relative; overflow: hidden; border-radius: 14px; background: var(--paper);
  border: 1px solid rgba(30,58,138,0.1); box-shadow: 0 22px 60px rgba(15,23,42,0.12);
}
.leader-track { display: flex; transition: transform 0.45s ease; }
.leader-slide { min-width: 100%; display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); background: linear-gradient(135deg, rgba(30,58,138,0.04), rgba(212,160,23,0.08)); }
.leader-photo { position: relative; min-height: 470px; overflow: hidden; background: var(--navy-dark); }
.leader-photo img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.leader-photo .leader-initial { display: grid; place-items: center; height: 100%; min-height: 470px; color: rgba(255,255,255,0.5); font-size: 8rem; font-weight: 800; font-family: var(--font-serif); }
.leader-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,24,60,0.52), transparent 52%); pointer-events: none; }
.leader-content { position: relative; padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.leader-content::before {
  content: "\201C"; position: absolute; top: 1.1rem; right: 2rem;
  font-family: var(--font-serif); font-size: 7rem; line-height: 1; color: rgba(30,58,138,0.08);
}
.leader-role { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.leader-name { margin-top: 0.5rem; font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.45rem); font-weight: 700; color: var(--navy-dark); line-height: 1.15; }
.leader-desig { margin-top: 0.35rem; font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.leader-body { margin-top: 1.5rem; font-size: 1rem; color: rgba(15,23,42,0.78); line-height: 1.85; font-style: italic; }
.leader-body p { margin-bottom: 0.75rem; }
.leader-foot { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(30,58,138,0.1); font-size: 0.78rem; color: var(--muted); }
.leader-controls { position: absolute; left: calc(90% / 2); bottom: 1.25rem; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 2; }
.leader-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--navy); box-shadow: var(--shadow-md); }
.leader-btn:hover { background: var(--gold); color: var(--ink); }
.leader-btn svg { width: 20px; height: 20px; }
.leader-dots { display: flex; justify-content: center; gap: 0.45rem; padding: 1rem; background: #fff; border-top: 1px solid rgba(30,58,138,0.08); }
.leader-dot { width: 34px; height: 4px; border-radius: 999px; background: rgba(30,58,138,0.18); }
.leader-dot.active { background: var(--gold); }
@media (max-width: 880px) {
  .leader-slide { grid-template-columns: 1fr; }
  .leader-photo, .leader-photo img, .leader-photo .leader-initial { min-height: 360px; }
  .leader-controls { left: 50%; top: 300px; bottom: auto; }
}
@media (max-width: 560px) {
  .leader-photo, .leader-photo img, .leader-photo .leader-initial { min-height: 300px; }
  .leader-content { padding: 1.5rem; }
  .leader-controls { top: 248px; }
}

/* ============ Staff ============ */
.staff-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.staff-tab {
  padding: 0.55rem 1.1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: #fff; border: 1px solid rgba(30,58,138,0.15); color: var(--navy);
}
.staff-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.staff-panel { display: none; }
.staff-panel.is-active { display: grid; }
.staff-card { text-align: center; padding: 1.5rem 1rem; }
.staff-photo {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 0.9rem;
  object-fit: cover; background: rgba(30,58,138,0.08);
  display: grid; place-items: center; color: var(--navy); font-size: 2rem; font-weight: 700;
}
.staff-card h3 { font-size: 1rem; }
.staff-role { font-size: 0.8rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.staff-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }

/* ============ Gallery ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 1rem; }
.gallery-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(30,58,138,0.1); box-shadow: var(--shadow-sm); transition: box-shadow 0.25s;
}
.gallery-tile:hover { box-shadow: var(--shadow-md); }
.gallery-tile.large { grid-column: span 2; grid-row: span 2; }
.gallery-tile.wide { grid-column: span 2; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.4) 60%, transparent 100%);
  padding: 0.75rem; font-size: 0.78rem; color: #fff; font-weight: 500;
  opacity: 0; transform: translateY(8px); transition: all 0.25s ease;
}
.gallery-tile:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile.large, .gallery-tile.wide { grid-column: span 2; grid-row: span 1; }
}

/* ============ Blogs ============ */
.blog-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.blog-media { height: 180px; background: rgba(30,58,138,0.06); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.blog-card h3 { margin-top: 0.4rem; }
.blog-card .excerpt { flex: 1; }
.blog-foot { margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid rgba(30,58,138,0.08); display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--muted); }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 1.5rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
}
.contact-info-card .inner { padding: 1.75rem; }
.contact-info-card h3 { font-family: var(--font-serif); font-size: 1.25rem; }
.contact-info-card .lead { margin-top: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.contact-info-list { margin-top: 1.5rem; display: grid; gap: 1rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-list .label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }
.contact-info-list .value { font-size: 0.88rem; color: #fff; line-height: 1.5; }
.contact-info-list a.value:hover { color: var(--gold-light); }
.contact-map { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); height: 220px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%); }

.contact-form { background: var(--paper); border: 1px solid rgba(30,58,138,0.1); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form .head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.contact-form .head svg { width: 20px; height: 20px; color: var(--navy); }
.contact-form h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; }
.form-group label .req { color: var(--navy); }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.65rem 0.85rem; border: 1px solid rgba(30,58,138,0.15);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.92rem;
  background: var(--paper); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(212,160,23,0.2); }
.form-group input.is-invalid, .form-group textarea.is-invalid { border-color: #EF4444; }
.form-error { color: #b91c1c; font-size: 0.76rem; margin-top: 0.3rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-foot { margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-foot .note { font-size: 0.78rem; color: var(--muted); }
.form-success {
  margin-bottom: 1.25rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35); color: #166534; font-size: 0.88rem;
}

/* ============ Quick links ============ */
.quick-link {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--paper); border: 1px solid rgba(30,58,138,0.1);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.quick-link:hover { transform: translateY(-2px); border-color: rgba(212,160,23,0.4); box-shadow: var(--shadow-md); }
.quick-link-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(30,58,138,0.06); color: var(--navy);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-size: 20px;
}
.quick-link:hover .quick-link-icon { background: var(--gold); color: var(--ink); }
.quick-link-icon svg { width: 20px; height: 20px; }
.quick-link h3 { font-family: var(--font-serif); font-size: 1rem; color: var(--ink); display: inline; }
.quick-link .ext { width: 14px; height: 14px; color: var(--muted); margin-left: 0.3rem; transition: color 0.2s; display: inline-block; vertical-align: middle; }
.quick-link:hover .ext { color: var(--gold); }
.quick-link p { margin-top: 0.4rem; font-size: 0.8rem; color: rgba(15,23,42,0.65); line-height: 1.55; }

/* ============ Footer ============ */
.site-footer { margin-top: auto; background: var(--navy-dark); color: #fff; }
.footer-stripe { height: 5px; background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 60%, var(--gold) 60%, var(--gold) 100%); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 3.5rem 1.5rem; display: grid; grid-template-columns: 1.5fr 3fr; gap: 2.5rem; }
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand > p { margin-top: 1.25rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 360px; }
.footer-contact { margin-top: 1.5rem; display: grid; gap: 0.5rem; font-size: 0.85rem; }
.footer-contact a, .footer-contact p { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }
.footer-social { margin-top: 1.5rem; display: flex; gap: 0.5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1);
  color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-size: 18px;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-social svg { width: 16px; height: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 680px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--gold-light); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col li a { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); transition: all 0.15s; }
.footer-col li a:hover { color: #fff; }
.footer-col li a svg { width: 12px; height: 12px; color: rgba(212,160,23,0.6); transition: all 0.15s; }
.footer-col li a:hover svg { transform: translateX(2px); color: var(--gold); }
.footer-bottom { background: rgba(23,37,84,0.8); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.6);
}

/* ============ Toast & scroll top ============ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: #fff; padding: 0.85rem 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: 0.88rem; z-index: 300;
  transition: transform 0.3s ease; max-width: 90vw; border-left: 4px solid var(--gold);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { border-left-color: #EF4444; }
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 90; opacity: 0; pointer-events: none; transition: all 0.25s ease;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--navy-dark); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============ Empty states & a11y ============ */
.empty-note {
  padding: 2.5rem 1rem; text-align: center; color: var(--muted); font-size: 0.9rem;
  border: 1px dashed rgba(30,58,138,0.2); border-radius: var(--radius); background: rgba(255,255,255,0.6);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ Nav dropdown ============ */
.nav-dropdown { position: relative; }
.nav-link.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.55rem 0.85rem; font-size: 0.92rem; font-weight: 500;
  color: rgba(15,23,42,0.8); border-radius: 8px; transition: all 0.2s;
}
.nav-link.nav-toggle svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-link.nav-toggle,
.nav-dropdown.is-open .nav-link.nav-toggle { background: rgba(30,58,138,0.08); color: var(--navy); }
.nav-dropdown.is-open .nav-link.nav-toggle svg { transform: rotate(180deg); }
.nav-submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 210px;
  background: var(--paper); border: 1px solid rgba(30,58,138,0.12);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 0.4rem; display: grid; gap: 0.15rem; z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-submenu a {
  display: block; padding: 0.6rem 0.8rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; color: rgba(15,23,42,0.82);
}
.nav-submenu a:hover { background: rgba(30,58,138,0.08); color: var(--navy); }

/* Drawer sub menu */
.drawer-group > button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem; border-radius: 8px; font-weight: 500; color: var(--ink); font-size: 1rem;
}
.drawer-group > button:hover { background: rgba(30,58,138,0.08); color: var(--navy); }
.drawer-group > button svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.drawer-group.is-open > button svg { transform: rotate(180deg); }
.drawer-submenu { display: none; padding-left: 0.75rem; border-left: 2px solid rgba(212,160,23,0.4); margin: 0.15rem 0 0.35rem 1rem; }
.drawer-group.is-open .drawer-submenu { display: grid; }
.drawer-submenu a { font-size: 0.92rem; color: rgba(15,23,42,0.75); }
