/* ===== HARMON UNIVERSITY - MAIN STYLESHEET ===== */

/* ---- Variables ---- */
:root {
  --primary:        #002855;
  --primary-dark:   #001633;
  --primary-light:  #1a4a7a;
  --secondary:      #C8972A;
  --secondary-dark: #9a6e10;
  --secondary-light:#f0c85a;
  --accent:         #e63946;
  --white:          #ffffff;
  --light:          #f4f6f9;
  --light-mid:      #e8edf2;
  --text:           #1e2a38;
  --text-mid:       #4a5568;
  --text-light:     #718096;
  --border:         #d1d9e0;
  --success:        #2e7d32;
  --warning:        #e65100;
  --info:           #0277bd;

  --header-h:       72px;
  --announce-h:     36px;

  --font-body:     'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-heading:   Georgia, 'Times New Roman', serif;

  --shadow-xs:  0 1px 3px rgba(0,40,85,.08);
  --shadow-sm:  0 2px 8px rgba(0,40,85,.10);
  --shadow-md:  0 4px 16px rgba(0,40,85,.13);
  --shadow-lg:  0 8px 32px rgba(0,40,85,.16);
  --shadow-xl:  0 16px 48px rgba(0,40,85,.20);

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill:50px;

  --ease: 0.3s ease;
  --ease-bounce: 0.4s cubic-bezier(.34,1.56,.64,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-sm      { gap: 8px; }
.gap-md      { gap: 16px; }
.gap-lg      { gap: 24px; }
.hidden      { display: none !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--r-pill); font-weight: 600;
  font-size: .95rem; transition: var(--ease); letter-spacing: .02em; cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary); color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(200,151,42,.35);
}
.btn-primary:hover { background: var(--secondary-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,151,42,.45); }
.btn-outline {
  background: transparent; color: var(--white); border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-primary {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.15); color: var(--white); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-sm   { padding: 7px 18px; font-size: .85rem; }
.btn-lg   { padding: 14px 36px; font-size: 1.05rem; }
.btn-block{ width: 100%; justify-content: center; }
.btn-danger { background: var(--accent); color: var(--white); }
.btn-danger:hover { background: #c62828; }

/* ---- Announcement Bar ---- */
#announce-bar {
  background: var(--secondary);
  color: var(--primary-dark);
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 600;
  position: relative; z-index: 1001;
  gap: 16px;
}
#announce-bar a { text-decoration: underline; }
#announce-bar .close-announce {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 1rem; opacity: .7; transition: var(--ease);
}
#announce-bar .close-announce:hover { opacity: 1; }

/* ---- Header ---- */
#site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--primary);
  height: var(--header-h);
  box-shadow: var(--shadow-md);
  transition: var(--ease);
}
#site-header.scrolled { height: 60px; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-emblem {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--secondary); border: 3px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--primary-dark);
  letter-spacing: -.02em; flex-shrink: 0;
  transition: var(--ease);
}
.logo-emblem:hover { transform: rotate(-5deg) scale(1.05); }
.logo-text .logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: .01em;
}
.logo-text .logo-tagline {
  font-size: .7rem; color: rgba(255,255,255,.6);
  letter-spacing: .1em; text-transform: uppercase;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 1px; justify-content: center; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 3px;
  padding: 8px 11px; color: rgba(255,255,255,.88);
  font-size: .85rem; font-weight: 500; border-radius: var(--r-sm);
  transition: var(--ease); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--secondary); background: rgba(255,255,255,.08); }
.nav-link .chevron { font-size: .65rem; transition: var(--ease); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Mega / Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  min-width: 220px; padding: 8px; z-index: 1000;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: var(--ease);
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: var(--r-sm);
  color: var(--text); font-size: .88rem; transition: var(--ease);
}
.nav-dropdown a:hover { background: var(--light); color: var(--primary); padding-left: 20px; }
.nav-dropdown a .drop-icon {
  width: 20px; text-align: center;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--primary-light);
}
.nav-dropdown a .drop-icon svg { width: 15px; height: 15px; }

/* Mega Dropdown */
.mega-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  width: 600px; padding: 24px; z-index: 1000;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: var(--ease);
}
.nav-item:hover .mega-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mega-col h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-light); padding: 6px 10px; margin-bottom: 4px;
  font-family: var(--font-body); font-weight: 700;
}
.mega-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: var(--r-sm);
  color: var(--text-mid); font-size: .84rem; transition: var(--ease);
}
.mega-dropdown a:hover { background: var(--light); color: var(--primary); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 1rem; transition: var(--ease);
  background: rgba(255,255,255,.1);
}
.icon-btn:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* Language Selector */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: .82rem; font-weight: 600; transition: var(--ease);
  border: 1px solid rgba(255,255,255,.2);
}
.lang-btn:hover { background: rgba(255,255,255,.22); }
.lang-btn .flag { font-size: 1rem; }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  min-width: 160px; padding: 6px; z-index: 1001;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: var(--ease);
}
.lang-selector.open .lang-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: var(--r-sm);
  color: var(--text); font-size: .88rem; cursor: pointer; transition: var(--ease);
}
.lang-option:hover, .lang-option.active { background: var(--light); color: var(--primary); font-weight: 600; }
.lang-option .flag { font-size: 1.1rem; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Drawer */
#mobile-menu {
  position: fixed; top: 0; left: -100%; width: min(320px, 90vw);
  height: 100vh; background: var(--primary-dark); z-index: 1100;
  overflow-y: auto; transition: left var(--ease);
  padding-top: 20px;
}
#mobile-menu.open { left: 0; }
.mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-close { color: rgba(255,255,255,.7); font-size: 1.4rem; }
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; color: rgba(255,255,255,.85); font-size: .95rem;
  transition: var(--ease);
}
.mobile-nav-link:hover { color: var(--secondary); background: rgba(255,255,255,.05); padding-left: 28px; }
.mobile-sub { background: rgba(0,0,0,.2); padding: 6px 0; display: none; }
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block; padding: 10px 32px;
  color: rgba(255,255,255,.65); font-size: .88rem; transition: var(--ease);
}
.mobile-sub a:hover { color: var(--secondary); }
#mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1099;
  opacity: 0; pointer-events: none; transition: var(--ease);
}
#mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ===== SECTIONS ===== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; padding: 4px 16px;
  background: rgba(200,151,42,.15); color: var(--secondary-dark);
  border-radius: var(--r-pill); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
  border: 1px solid rgba(200,151,42,.3);
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--primary); line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }
.section-divider { width: 60px; height: 3px; background: var(--secondary); margin: 16px auto 0; border-radius: 2px; }

/* ---- Hero / Home ---- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,28,61,.82) 40%, rgba(0,28,61,.45) 100%);
}
.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1562774053-701939374585?w=1920&q=80&fit=crop'); }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80&fit=crop'); }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=1920&q=80&fit=crop'); }

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: rgba(200,151,42,.3);
  border: 1px solid rgba(200,151,42,.5); border-radius: var(--r-pill);
  color: var(--secondary-light); font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
  max-width: 680px;
}
.hero-title em { color: var(--secondary-light); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

/* Search bar */
.hero-search {
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-lg);
  padding: 6px 6px 6px 20px; display: flex; align-items: center; gap: 10px;
  max-width: 520px;
}
.hero-search input {
  background: none; border: none; outline: none; color: var(--white);
  font-size: .95rem; flex: 1; min-width: 0;
}
.hero-search input::placeholder { color: rgba(255,255,255,.55); }
.hero-search-btn {
  background: var(--secondary); color: var(--primary-dark);
  border-radius: var(--r-md); padding: 10px 20px; font-weight: 700;
  font-size: .88rem; transition: var(--ease); white-space: nowrap;
}
.hero-search-btn:hover { background: var(--secondary-light); }

/* Slide indicators */
.hero-indicators {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: var(--ease);
}
.hero-dot.active { background: var(--secondary); width: 24px; border-radius: 4px; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-arrow { animation: scrollBounce 1.8s infinite; font-size: 1.2rem; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--primary); padding: 0;
  border-top: 3px solid var(--secondary);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.06); }
.stat-num {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--secondary); line-height: 1;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 4px; letter-spacing: .04em; }

/* ---- Home: Welcome ---- */
.welcome-section { padding: 96px 0; background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.welcome-image-wrap {
  position: relative;
}
.welcome-img {
  width: 100%; border-radius: var(--r-xl);
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.welcome-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--secondary); border-radius: var(--r-lg);
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-lg); color: var(--primary-dark);
}
.welcome-badge .badge-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.welcome-badge .badge-label { font-size: .78rem; font-weight: 600; letter-spacing: .05em; }
.welcome-text .eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--secondary-dark);
  margin-bottom: 12px; display: block;
}
.welcome-text h2 {
  font-family: var(--font-heading); font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: var(--primary); margin-bottom: 20px; line-height: 1.25;
}
.welcome-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.welcome-text blockquote {
  border-left: 4px solid var(--secondary); padding: 16px 20px;
  background: var(--light); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic; color: var(--text-mid); margin: 20px 0;
}
.president-sig { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.president-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--secondary); background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,.9); letter-spacing: .04em; flex-shrink: 0;
}
.president-info .name { font-weight: 700; color: var(--primary); font-size: .95rem; }
.president-info .title { font-size: .82rem; color: var(--text-light); }

/* ---- SVG Icon System ---- */
.si { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; vertical-align: middle; }
.si svg { width: 100%; height: 100%; }
.si-xs { width: 13px; height: 13px; }
.si-sm { width: 17px; height: 17px; }
.si-md { width: 22px; height: 22px; }
.si-lg { width: 30px; height: 30px; }
.si-xl { width: 42px; height: 42px; }

/* ---- Schools/Colleges ---- */
.schools-section {
  padding: 96px 0;
  background-color: var(--light);
  background-image:
    linear-gradient(rgba(0,40,85,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,40,85,.028) 1px, transparent 1px);
  background-size: 48px 48px;
}
.schools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.school-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--ease); cursor: pointer;
  border: 1px solid var(--border);
}
.school-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.school-card-top {
  height: 172px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* subtle crosshatch overlay on card tops */
.school-card-top::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 0, transparent 50%);
  background-size: 12px 12px;
}
.school-top-icon {
  width: 58px; height: 58px; color: rgba(255,255,255,.92);
  position: relative; z-index: 3;
}
.school-top-icon svg { width: 100%; height: 100%; }
.school-top-watermark {
  position: absolute; bottom: -18px; right: -14px;
  width: 148px; height: 148px; color: rgba(255,255,255,.07);
  pointer-events: none; z-index: 2;
}
.school-top-watermark svg { width: 100%; height: 100%; }
.school-card-body { padding: 24px; }
.school-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.school-card p { font-size: .88rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }
.school-meta { display: flex; gap: 20px; }
.school-meta span { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.school-meta .si { color: var(--secondary-dark); }

/* Color classes for school tops — rich gradients */
.color-blue   { background: linear-gradient(148deg, #001a3d 0%, #00408a 100%); }
.color-teal   { background: linear-gradient(148deg, #003028 0%, #00796b 100%); }
.color-purple { background: linear-gradient(148deg, #1e0042 0%, #7b1fa2 100%); }
.color-red    { background: linear-gradient(148deg, #580000 0%, #c62828 100%); }
.color-orange { background: linear-gradient(148deg, #7a2200 0%, #e64a19 100%); }
.color-green  { background: linear-gradient(148deg, #0a2e10 0%, #388e3c 100%); }
.color-indigo { background: linear-gradient(148deg, #0d0e46 0%, #3949ab 100%); }

/* ---- News Section ---- */
.news-section { padding: 96px 0; background: var(--white); }
.news-tabs { display: flex; gap: 4px; margin-bottom: 40px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.news-tab {
  padding: 10px 22px; font-size: .88rem; font-weight: 600;
  color: var(--text-mid); border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin-bottom: -2px; border-bottom: 2px solid transparent; transition: var(--ease);
}
.news-tab:hover { color: var(--primary); }
.news-tab.active { color: var(--primary); border-bottom-color: var(--secondary); background: var(--light); }
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.news-featured { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; }
.news-featured img {
  width: 100%; height: 380px; object-fit: cover;
  transition: transform .5s ease;
}
.news-featured:hover img { transform: scale(1.04); }
.news-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,20,50,.9) 40%, transparent);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
}
.news-cat {
  display: inline-block; padding: 3px 12px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--secondary); color: var(--primary-dark); margin-bottom: 10px; align-self: flex-start;
}
.news-featured-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.news-featured-meta { font-size: .82rem; color: rgba(255,255,255,.65); display: flex; gap: 16px; }
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item {
  display: flex; gap: 14px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--ease);
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-item:hover { transform: translateX(4px); }
.news-item-img {
  width: 80px; height: 80px; border-radius: var(--r-md);
  flex-shrink: 0; background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
}
.news-item-img svg { width: 30px; height: 30px; }
.news-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); }
.news-item-body .news-date { font-size: .76rem; color: var(--text-light); margin-bottom: 4px; }
.news-item-body h4 { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 4px; }
.news-item-body p { font-size: .82rem; color: var(--text-mid); line-height: 1.5; }

/* Events */
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--light); border-radius: var(--r-md);
  padding: 16px; transition: var(--ease); cursor: pointer; border: 1px solid var(--border);
}
.event-item:hover { border-color: var(--secondary); background: rgba(200,151,42,.06); }
.event-date {
  background: var(--primary); color: var(--white);
  border-radius: var(--r-md); padding: 8px 14px; text-align: center; flex-shrink: 0;
  min-width: 56px;
}
.event-date .eday { font-size: 1.5rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.event-date .emon { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.event-body h4 { font-size: .9rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.event-body .event-meta { font-size: .8rem; color: var(--text-light); display: flex; gap: 12px; flex-wrap: wrap; }
.event-body .event-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- Research ---- */
.research-section { padding: 96px 0; background: var(--primary-dark); position: relative; overflow: hidden; }
.research-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=1920&q=50&fit=crop') center/cover;
  opacity: .08;
}
.research-section .section-title { color: var(--white); }
.research-section .section-badge { background: rgba(200,151,42,.2); color: var(--secondary-light); border-color: rgba(200,151,42,.35); }
.research-section .section-subtitle { color: rgba(255,255,255,.65); }
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.research-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: 28px; transition: var(--ease);
}
.research-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); border-color: rgba(200,151,42,.4); }
.research-card .icon {
  width: 48px; height: 48px; margin-bottom: 20px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); border-radius: var(--r-md);
  color: var(--secondary-light);
}
.research-card .icon svg { width: 26px; height: 26px; }
.research-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.research-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 16px; }
.research-card .tag {
  display: inline-block; padding: 3px 12px; border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 600; background: rgba(200,151,42,.25); color: var(--secondary-light);
  margin-right: 6px; margin-bottom: 4px;
}

/* ---- Campus Life ---- */
.campus-section { padding: 96px 0; background: var(--white); }
.campus-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 12px; margin-bottom: 48px; }
.mosaic-item {
  border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer;
}
.mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  background: var(--light-mid); display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.mosaic-item:hover .mosaic-img { transform: scale(1.06); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,20,50,.8) 30%, transparent);
  opacity: 0; transition: var(--ease);
  display: flex; align-items: flex-end; padding: 16px;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay span { color: var(--white); font-size: .88rem; font-weight: 600; }
.campus-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.campus-feat {
  text-align: center; padding: 28px 16px;
  background: var(--light); border-radius: var(--r-lg);
  border: 1px solid var(--border); transition: var(--ease);
}
.campus-feat:hover { border-color: var(--secondary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.campus-feat-icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,40,85,.07); border-radius: var(--r-md);
  color: var(--primary);
}
.campus-feat-icon svg { width: 28px; height: 28px; }
.campus-feat h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.campus-feat p { font-size: .82rem; color: var(--text-mid); }

/* ---- Rankings ---- */
.rankings-section {
  padding: 60px 0;
  background-color: var(--light);
  background-image: radial-gradient(circle, rgba(0,40,85,.055) 1px, transparent 1px);
  background-size: 22px 22px;
  border-top: 1px solid var(--border);
}
.rankings-title { text-align: center; font-size: 1rem; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-bottom: 32px; }
.rankings-logos { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: 32px 48px; }
.ranking-logo {
  display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 80px;
  opacity: .65; transition: var(--ease);
}
.ranking-logo:hover { opacity: 1; }
.ranking-logo .logo-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; color: var(--primary);
}
.ranking-logo .logo-icon svg { width: 36px; height: 36px; }
.ranking-logo .logo-name { font-size: .78rem; font-weight: 600; color: var(--text-mid); letter-spacing: .04em; text-align: center; }
.ranking-badge {
  background: var(--primary); color: var(--white);
  border-radius: var(--r-sm); padding: 2px 8px; font-size: .72rem; font-weight: 700;
}

/* ---- Apply CTA ---- */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200,151,42,.25) 0%, transparent 60%);
}
.cta-inner { position: relative; text-align: center; }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.78); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-steps { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.cta-step { text-align: center; color: var(--white); }
.cta-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--secondary); color: var(--primary-dark);
  font-size: 1.1rem; font-weight: 800; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
}
.cta-step span { font-size: .88rem; color: rgba(255,255,255,.75); display: block; }
.cta-step strong { font-size: .95rem; display: block; margin-bottom: 4px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--primary-dark);
  border-top: 3px solid var(--secondary);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 6px; }
.footer-brand .logo-tagline { font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 10px;
}
.footer-contact-item .ico {
  color: var(--secondary); flex-shrink: 0; margin-top: 2px;
  width: 18px; height: 18px; display: inline-flex; align-items: center;
}
.footer-contact-item .ico svg { width: 100%; height: 100%; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--ease);
}
.social-link:hover { background: var(--secondary); color: var(--primary-dark); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white); font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .86rem; color: rgba(255,255,255,.55); transition: var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-disclaimer-bar {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
}
.footer-disclaimer-bar p {
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(255,255,255,.32);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.35); transition: var(--ease); }
.footer-bottom-links a:hover { color: var(--secondary); }

/* Newsletter */
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill); padding: 10px 16px; color: var(--white);
  font-size: .85rem; outline: none; transition: var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--secondary); background: rgba(255,255,255,.15); }
.newsletter-form button {
  background: var(--secondary); color: var(--primary-dark);
  border-radius: var(--r-pill); padding: 10px 18px; font-weight: 700; font-size: .82rem;
  transition: var(--ease);
}
.newsletter-form button:hover { background: var(--secondary-light); }

/* ===== PAGE SECTIONS ===== */

/* -- About Page -- */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1607237138185-eedd9c632b0b?w=1920&q=40&fit=crop') center/cover;
  opacity: .12;
}
.page-hero-content { position: relative; }
.page-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 12px; }
.page-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.72); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--light); }
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute; left: -36px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--secondary); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--secondary);
}
.timeline-year { font-size: .8rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 4px; letter-spacing: .04em; }
.timeline-item h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 6px; font-weight: 700; }
.timeline-item p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* Leaders */
.leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  text-align: center; transition: var(--ease);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-photo {
  height: 200px; background: linear-gradient(155deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.leader-initials {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700;
  color: rgba(255,255,255,.95); position: relative; z-index: 2;
  letter-spacing: .04em;
}
.leader-photo-deco {
  position: absolute; bottom: -22px; right: -18px;
  width: 140px; height: 140px; color: rgba(255,255,255,.06);
  z-index: 1;
}
.leader-photo-deco svg { width: 100%; height: 100%; }
.leader-info { padding: 20px; }
.leader-info h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 4px; font-family: var(--font-heading); }
.leader-info .role { font-size: .82rem; color: var(--secondary-dark); font-weight: 600; margin-bottom: 10px; }
.leader-info p { font-size: .84rem; color: var(--text-mid); line-height: 1.6; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 36px 24px; border-radius: var(--r-lg); text-align: center;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs); transition: var(--ease);
}
.value-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,151,42,.1); border-radius: 50%;
  color: var(--secondary-dark);
}
.value-icon svg { width: 34px; height: 34px; }
.value-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.value-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* ---- Academics Page ---- */
.programs-search-bar {
  background: var(--light); border-radius: var(--r-lg); padding: 28px;
  margin-bottom: 48px; border: 1px solid var(--border);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.form-label { font-size: .8rem; font-weight: 700; color: var(--text-mid); letter-spacing: .04em; text-transform: uppercase; }
.form-control {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: .9rem; outline: none; transition: var(--ease); background: var(--white);
  color: var(--text);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,40,85,.12); }

.degrees-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.degree-tab {
  padding: 8px 20px; border-radius: var(--r-pill); font-size: .88rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--text-mid); transition: var(--ease);
}
.degree-tab:hover { border-color: var(--primary); color: var(--primary); }
.degree-tab.active { border-color: var(--primary); background: var(--primary); color: var(--white); }

.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; transition: var(--ease); cursor: pointer;
}
.program-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.program-card .program-school {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--secondary-dark); margin-bottom: 8px;
}
.program-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; line-height: 1.4; }
.program-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.program-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.program-tag {
  padding: 3px 10px; border-radius: var(--r-pill); font-size: .74rem; font-weight: 600;
  background: var(--light); color: var(--text-mid); border: 1px solid var(--border);
}

/* ---- Admissions ---- */
.steps-section { padding: 80px 0; background: var(--white); }
.steps-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-timeline::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.step-box { text-align: center; padding: 0 16px; position: relative; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px;
  border: 4px solid var(--white); box-shadow: var(--shadow-md);
  position: relative; z-index: 1;
  font-family: var(--font-heading);
}
.step-box h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.step-box p { font-size: .84rem; color: var(--text-mid); line-height: 1.6; }

.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.req-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs); transition: var(--ease);
}
.req-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.req-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--secondary); font-family: var(--font-heading); }
.req-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .9rem; color: var(--text-mid); }
.req-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

.tuition-table { width: 100%; border-collapse: collapse; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.tuition-table th {
  background: var(--primary); color: var(--white);
  padding: 14px 20px; font-size: .88rem; text-align: left; font-weight: 600;
}
.tuition-table td { padding: 13px 20px; font-size: .9rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.tuition-table tr:last-child td { border-bottom: none; }
.tuition-table tr:nth-child(even) td { background: var(--light); }
.tuition-table tr:hover td { background: rgba(200,151,42,.07); }

/* Dates */
.dates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.date-card {
  background: var(--white); border-radius: var(--r-lg); padding: 20px 24px;
  border-left: 4px solid var(--secondary); box-shadow: var(--shadow-xs);
  display: flex; align-items: center; gap: 16px; transition: var(--ease);
}
.date-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.date-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(0,40,85,.07); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.date-icon svg { width: 22px; height: 22px; }
.date-card.urgent .date-icon { background: rgba(230,57,70,.1); color: var(--accent); }
.date-info .date-val { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.date-info .date-label { font-size: .85rem; color: var(--text-mid); }
.date-card.urgent { border-color: var(--accent); }
.date-card.urgent .date-val { color: var(--accent); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 12px; overflow: hidden; transition: var(--ease);
}
.faq-item.open { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--text);
  background: var(--white); transition: var(--ease);
}
.faq-q:hover { background: var(--light); color: var(--primary); }
.faq-item.open .faq-q { background: var(--primary); color: var(--white); }
.faq-chevron { font-size: 1rem; transition: var(--ease); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem; color: var(--text-mid); line-height: 1.8;
}
.faq-a-inner { padding: 16px 22px 20px; }
.faq-item.open .faq-a { max-height: 500px; }

/* ---- Research Page ---- */
.research-hero {
  background: linear-gradient(135deg, #001633 0%, #002855 50%, #0d3d6e 100%);
  padding: 80px 0;
}
.research-centers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.center-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs); transition: var(--ease);
  display: flex; gap: 20px;
}
.center-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.center-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--primary); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.center-icon svg { width: 28px; height: 28px; }
.center-body h3 { font-size: 1.02rem; color: var(--primary); margin-bottom: 6px; font-weight: 700; }
.center-body p { font-size: .86rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 10px; }
.center-body .center-head { font-size: .8rem; color: var(--text-light); }

.publications-list { display: flex; flex-direction: column; gap: 20px; }
.pub-item {
  background: var(--white); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--border); transition: var(--ease);
}
.pub-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.pub-type {
  display: inline-block; padding: 2px 10px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 8px;
}
.pub-type.journal { background: rgba(0,40,85,.1); color: var(--primary); }
.pub-type.conference { background: rgba(200,151,42,.15); color: var(--secondary-dark); }
.pub-type.book { background: rgba(46,125,50,.1); color: var(--success); }
.pub-item h3 { font-size: .98rem; color: var(--primary); margin-bottom: 6px; font-weight: 600; line-height: 1.4; }
.pub-item .authors { font-size: .84rem; color: var(--text-mid); margin-bottom: 4px; }
.pub-item .journal-name { font-size: .84rem; color: var(--text-light); font-style: italic; }
.pub-meta { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.pub-meta span { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.pub-meta .si { color: var(--text-light); }

/* ---- Campus Life Page ---- */
.clubs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.club-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid var(--border); transition: var(--ease); text-align: center;
}
.club-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.club-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,40,85,.06); border-radius: var(--r-lg);
  color: var(--primary);
}
.club-icon svg { width: 32px; height: 32px; }
.club-card h3 { font-size: .98rem; color: var(--primary); margin-bottom: 6px; font-weight: 700; }
.club-card p { font-size: .84rem; color: var(--text-mid); margin-bottom: 12px; }
.club-members { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; justify-content: center; gap: 5px; }
.club-members svg { width: 14px; height: 14px; color: var(--secondary-dark); }

/* Facilities */
.facilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.facility-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--border); transition: var(--ease);
}
.facility-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.facility-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.facility-icon svg { width: 26px; height: 26px; }
.facility-item h3 { font-size: .98rem; color: var(--primary); margin-bottom: 6px; font-weight: 700; }
.facility-item p { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

/* ---- News Page ---- */
.news-page-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; align-items: center;
}
.filter-btn {
  padding: 7px 18px; border-radius: var(--r-pill); font-size: .85rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--text-mid); transition: var(--ease);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.news-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-full-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  transition: var(--ease); cursor: pointer;
}
.news-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card-img {
  height: 200px; background: var(--light-mid); display: flex;
  align-items: center; justify-content: center; font-size: 3rem;
  overflow: hidden; position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-full-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 20px; }
.news-card-body .news-cat { margin-bottom: 8px; }
.news-card-body h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; line-height: 1.4; }
.news-card-body p { font-size: .86rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.news-card-meta { display: flex; justify-content: space-between; align-items: center; }
.news-card-meta .author { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.news-card-meta .date { font-size: .8rem; color: var(--text-light); }

/* ---- Contact Page ---- */
.contact-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--white); border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-info-card h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; }
.contact-detail {
  display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start;
}
.contact-ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(0,40,85,.08); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-text .label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary-dark); margin-bottom: 4px; }
.contact-text .value { font-size: .95rem; color: var(--text); line-height: 1.5; }
.dept-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.dept-tab {
  padding: 6px 16px; border-radius: var(--r-pill); font-size: .82rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-mid); transition: var(--ease);
}
.dept-tab:hover { border-color: var(--primary); color: var(--primary); }
.dept-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.contact-form-card {
  background: var(--white); border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 16px; border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: .9rem; outline: none; transition: var(--ease); color: var(--text);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,40,85,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Map placeholder */
.map-placeholder {
  background: var(--light-mid); border-radius: var(--r-lg); height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-mid); font-size: .95rem; margin-top: 32px;
  border: 2px dashed var(--border); text-align: center;
}
.map-placeholder .map-icon {
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
}
.map-placeholder .map-icon svg { width: 48px; height: 48px; }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,20,50,.6);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: var(--ease);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-xl);
  width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto;
  transform: scale(.95) translateY(20px); transition: var(--ease);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal--wide { max-width: 860px; }
.modal-header {
  padding: 24px 28px 0; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border); padding-bottom: 20px;
}
.modal-header h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary); }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light); color: var(--text-mid); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--ease);
}
.modal-close:hover { background: var(--light-mid); color: var(--text); }
.modal-body { padding: 28px; }
.modal-footer {
  padding: 0 28px 28px; display: flex; gap: 12px; justify-content: flex-end;
  border-top: 1px solid var(--border); padding-top: 20px;
}

/* Login Modal */
.login-tabs { display: flex; gap: 0; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); margin-bottom: 28px; }
.login-tab {
  flex: 1; padding: 10px; text-align: center; font-size: .88rem; font-weight: 600;
  color: var(--text-mid); transition: var(--ease);
}
.login-tab:hover { color: var(--primary); }
.login-tab.active { background: var(--primary); color: var(--white); }
.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-form .form-group { margin-bottom: 0; }
.login-opts { display: flex; align-items: center; justify-content: space-between; }
.check-group { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-mid); }
.check-group input { width: auto; }
.login-link { font-size: .85rem; color: var(--primary); font-weight: 600; }
.login-link:hover { text-decoration: underline; }
.login-divider { text-align: center; position: relative; margin: 20px 0; }
.login-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.login-divider span { background: var(--white); padding: 0 12px; position: relative; font-size: .82rem; color: var(--text-light); }
.social-logins { display: flex; gap: 10px; }
.social-login-btn {
  flex: 1; padding: 10px; border: 1px solid var(--border); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--text); transition: var(--ease);
}
.social-login-btn:hover { border-color: var(--primary); background: var(--light); }
.login-portal-links { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.login-portal-links h4 { font-size: .85rem; color: var(--text-mid); margin-bottom: 10px; }
.portal-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.portal-link {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--r-md); font-size: .83rem;
  color: var(--text-mid); transition: var(--ease);
}
.portal-link:hover { border-color: var(--primary); color: var(--primary); background: var(--light); }
.portal-link .ico { width: 20px; height: 20px; display: inline-flex; align-items: center; flex-shrink: 0; color: var(--primary); }
.portal-link .ico svg { width: 100%; height: 100%; }

/* Apply Modal (multi-step) */
.apply-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; }
.apply-step-ind {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1;
  position: relative;
}
.apply-step-ind:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: 50%; width: 100%; height: 2px;
  background: var(--border);
}
.apply-step-ind.done::after, .apply-step-ind.active::after { background: var(--secondary); }
.step-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--border); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; position: relative; z-index: 1;
  transition: var(--ease);
}
.apply-step-ind.done .step-dot { background: var(--success); color: var(--white); }
.apply-step-ind.active .step-dot { background: var(--primary); color: var(--white); box-shadow: 0 0 0 4px rgba(0,40,85,.2); }
.step-label { font-size: .72rem; color: var(--text-light); text-align: center; max-width: 70px; font-weight: 600; }
.apply-step-ind.active .step-label { color: var(--primary); }
.apply-step-ind.done .step-label { color: var(--success); }

.apply-panel { display: none; }
.apply-panel.active { display: block; }
.apply-panel h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--primary); margin-bottom: 20px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--r-md); cursor: pointer; transition: var(--ease);
}
.radio-opt:hover { border-color: var(--primary-light); background: var(--light); }
.radio-opt input[type="radio"] { display: none; }
.radio-opt.selected { border-color: var(--primary); background: rgba(0,40,85,.04); }
.radio-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; transition: var(--ease);
}
.radio-opt.selected .radio-check { border-color: var(--primary); background: var(--primary); }
.radio-opt.selected .radio-check::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--white); }
.radio-opt-label { flex: 1; }
.radio-opt-label strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: 2px; }
.radio-opt-label span { font-size: .82rem; color: var(--text-mid); }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-opt {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--r-md); cursor: pointer; transition: var(--ease);
}
.checkbox-opt input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--primary); }
.checkbox-opt:hover { border-color: var(--primary-light); background: var(--light); }
.apply-nav { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }

/* Alert/Toast */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--white); border-radius: var(--r-md); padding: 14px 20px;
  box-shadow: var(--shadow-lg); border-left: 4px solid var(--success);
  min-width: 280px; display: flex; align-items: center; gap: 12px;
  animation: slideInRight .35s ease, fadeOutToast .35s ease 3.5s forwards;
  font-size: .9rem;
}
.toast.error { border-left-color: var(--accent); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--info); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOutToast { from { opacity: 1; } to { opacity: 0; transform: translateX(100%); } }

/* Search Overlay */
#search-overlay {
  position: fixed; inset: 0; background: rgba(0,20,50,.92); z-index: 2000;
  display: flex; flex-direction: column; align-items: center; padding-top: 120px;
  opacity: 0; pointer-events: none; transition: var(--ease);
  backdrop-filter: blur(6px);
}
#search-overlay.open { opacity: 1; pointer-events: all; }
.search-form { width: 100%; max-width: 680px; position: relative; }
.search-input {
  width: 100%; padding: 18px 60px 18px 24px;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--r-pill); font-size: 1.3rem; color: var(--white); outline: none;
  transition: var(--ease);
}
.search-input::placeholder { color: rgba(255,255,255,.4); }
.search-input:focus { border-color: var(--secondary); background: rgba(255,255,255,.18); }
.search-submit {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: var(--secondary); color: var(--primary-dark);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: var(--ease);
}
.search-submit:hover { background: var(--secondary-light); transform: translateY(-50%) scale(1.05); }
.search-hints { margin-top: 28px; width: 100%; max-width: 680px; }
.search-hints p { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: 12px; }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-tag {
  padding: 6px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  font-size: .82rem; cursor: pointer; transition: var(--ease); border: 1px solid rgba(255,255,255,.15);
}
.search-tag:hover { background: rgba(255,255,255,.2); color: var(--white); }
.search-close {
  position: absolute; top: 24px; right: 32px; font-size: 1.6rem;
  color: rgba(255,255,255,.5); transition: var(--ease);
}
.search-close:hover { color: var(--white); transform: rotate(90deg); }

/* ---- Scroll animations ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delay */
.reveal:nth-child(1) { transition-delay: .0s; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* Back to top */
#back-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: var(--ease);
}
#back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { background: var(--secondary); color: var(--primary-dark); transform: translateY(-2px); }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--light) 25%, var(--light-mid) 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite;
  border-radius: var(--r-sm);
}
@keyframes skeleton-load { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .schools-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .main-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-image-wrap { max-width: 500px; margin: 0 auto; }
  .news-grid { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .campus-features { grid-template-columns: repeat(2, 1fr); }
  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .research-centers-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps-timeline::before { display: none; }
  .req-grid { grid-template-columns: 1fr; }
  .dates-grid { grid-template-columns: 1fr; }
  .clubs-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { padding: 0 16px; }
  :root { --header-h: 60px; }
  .logo-text .logo-tagline { display: none; }
  .schools-grid, .programs-grid, .research-grid, .campus-features, .news-full-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .leaders-grid, .values-grid { grid-template-columns: 1fr; }
  .clubs-grid { grid-template-columns: 1fr; }
  .cta-steps { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .portal-link-grid { grid-template-columns: 1fr; }
  .social-logins { flex-direction: column; }
  .welcome-badge { display: none; }
  .mosaic-item:nth-child(1) { grid-column: span 4; }
  .campus-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .mosaic-item:nth-child(1) { grid-column: span 2; }
}

/* ---- Print ---- */
@media print {
  #site-header, #site-footer, #announce-bar, #back-top, .toast-container { display: none !important; }
  .page-section { display: block !important; }
}
