@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --navy-950: #070b25;
  --navy-900: #0b1133;
  --navy-800: #151c45;
  --royal-600: #3246d8;
  --royal-500: #5b5cf6;
  --sun-600: #ffb800;
  --sun-500: #ffd24d;
  --coral-500: #ff5f6d;
  --ink: #0d1117;
  --ink-700: #273043;
  --muted: #667085;
  --paper: #fffdf7;
  --bg: #fcf5df;
  --line: #e7e0cf;
  --danger: #b42318;
  --success: #067647;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 16px 42px rgba(7, 11, 37, 0.12);
  --shadow-strong: 0 24px 64px rgba(7, 11, 37, 0.2);
  --content: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: var(--royal-600); text-underline-offset: 0.18em; }
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden], .hidden { display: none !important; }

h1, h2, h3, h4 {
  margin: 0 0 0.55em;
  color: var(--navy-900);
  font-family: "Montserrat", "Poppins", sans-serif;
  line-height: 1.18;
}
h1 { font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.38rem); font-weight: 700; }
p { margin: 0 0 1em; }
strong { font-weight: 700; }
.lede, .lead { color: var(--ink-700); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.muted, .hint { color: var(--muted); }
.accent, .text-sun { color: #b56b00; }
.link-highlight { color: var(--sun-500); font-weight: 700; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.announce {
  padding: 8px 16px;
  text-align: center;
  color: #16120a;
  background: linear-gradient(90deg, var(--sun-600), var(--sun-500), var(--royal-500));
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(18px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background: rgba(11, 17, 51, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(7, 11, 37, 0.2);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.brand:hover { color: #fff; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font: 800 1.03rem/1.05 "Montserrat", sans-serif; }
.brand__text em { margin-top: 4px; color: #d9dcff; font-size: 0.78rem; font-style: normal; }
.nav-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  cursor: pointer;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.site-nav > a,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #eef0ff;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}
.site-nav > a:hover,
.site-nav > a.active,
.site-nav > a[aria-current="page"],
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.nav-dropdown { position: relative; }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  display: grid;
  width: min(340px, 92vw);
  max-height: min(65vh, 560px);
  gap: 4px;
  padding: 8px;
  overflow-y: auto;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
}
.nav-dropdown__menu a {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: #eef0ff;
  border-radius: 10px;
  text-decoration: none;
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible { color: #fff; background: var(--navy-800); }
.site-nav .btn { padding: 8px 12px; }

/* Layout */
.page, .container {
  width: min(100% - 36px, var(--content));
  margin-inline: auto;
}
.page { padding-block: 42px 56px; }
.page-head { margin-bottom: 28px; }
.page-head .lede { max-width: 78ch; }
section + section { margin-top: 28px; }
.grid2, .grid3 {
  display: grid;
  gap: 18px;
}
.grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card, .news-card, .contact-card, .glow-panel, .form {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.glow-panel { box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.25), var(--shadow); }
.notice { border-left: 5px solid var(--sun-600); }
.values {
  padding: clamp(22px, 4vw, 36px);
  color: #fff;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}
.values h1, .values h2, .values h3, .values .lede, .split.dark h1, .split.dark h2, .split.dark h3, .split.dark .lede { color: #fff; }
.values a:not(.btn) { color: var(--sun-500); }
.hr { height: 1px; margin: 24px 0; background: var(--line); }
.list, .steps { padding-left: 1.25rem; }
.list li, .steps li { margin: 0.45rem 0; }
.two-col { columns: 2 260px; column-gap: 28px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:hover { color: var(--navy-900); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(91, 92, 246, 0.35); outline-offset: 2px; }
.btn--cta {
  background: linear-gradient(90deg, var(--sun-600), var(--sun-500) 55%, var(--royal-500));
  box-shadow: 0 10px 24px rgba(91, 92, 246, 0.24), 0 5px 14px rgba(255, 184, 0, 0.25);
}
.btn--ghost {
  color: var(--navy-900);
  background: #fff;
  border-color: rgba(11, 17, 51, 0.25);
}
.btn--ghost:hover { background: #fff7d6; border-color: var(--sun-600); }
.btn[disabled] { opacity: 0.65; cursor: wait; transform: none; }
.cta-row, .row-actions, .campus-directory-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Home hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 34px;
  min-height: 560px;
  padding: clamp(42px, 7vw, 84px) max(22px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background:
    radial-gradient(700px 340px at 0% 0%, rgba(40, 215, 255, 0.2), transparent 65%),
    radial-gradient(760px 420px at 100% 100%, rgba(255, 184, 0, 0.2), transparent 68%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
  overflow: hidden;
}
.hero h1, .hero p { color: #fff; }
.hero__content p { max-width: 62ch; font-size: clamp(1.02rem, 1.5vw, 1.22rem); }
.hero__figure { margin: 0; }
.hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px 58px 30px 50px / 32px 50px 42px 28px;
  box-shadow: var(--shadow-strong);
}
.hero__figure figcaption { margin-top: 10px; color: #d9dcff; text-align: center; font-size: 0.92rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 22px 0 0; list-style: none; }
.hero-stats li { display: inline-flex; align-items: center; gap: 8px; }
.hero-stats strong { color: var(--sun-500); font-size: 1.35rem; }
.highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; width: min(100% - 36px, var(--content)); margin: 0 auto; padding: 32px 0; }
.highlight-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff7d6, #ffd24d);
  border: 1px solid rgba(181, 107, 0, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.highlight-card p { margin-bottom: 0; }
.cta-banner {
  width: min(100% - 36px, var(--content));
  margin: 30px auto 0;
  padding: clamp(24px, 4vw, 38px);
  color: var(--navy-900);
  text-align: center;
  background: linear-gradient(105deg, var(--sun-600), #ffd77a 55%, #9b93ff);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}
.cta-banner .cta-row { justify-content: center; }

/* Split, bio, lists */
.split, .bio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 28px;
}
.split.reverse { grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr); }
.split.reverse .split__copy { order: 2; }
.split.reverse .split__image { order: 1; }
.split__image, .bio__image {
  min-height: 320px;
  background: #e6e8ef center / cover no-repeat;
  border-radius: 34px 52px 28px 46px / 30px 46px 38px 25px;
  box-shadow: var(--shadow);
}
.split.dark { padding: 30px; color: #fff; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); }
.round-portrait { width: min(100%, 320px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-strong); }
.campus-list, .pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.campus-list li, .pill-list li { padding: 8px 12px; color: var(--navy-900); background: #eef0ff; border: 1px solid #d5d8ff; border-radius: 999px; }

/* Gallery */
.gallery { width: min(100% - 36px, var(--content)); margin: 0 auto; padding: 26px 0; }
.page .gallery { width: 100%; }
.gallery-grid, .mini-gallery, .footer-gallery {
  display: grid;
  gap: 12px;
}
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 12px; }
.gallery-grid img, .mini-gallery img, .footer-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
  background: #eceef5;
  border-radius: 18px;
}
.gallery-grid img, .mini-gallery img { cursor: zoom-in; box-shadow: 0 8px 20px rgba(7, 11, 37, 0.1); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.gallery-grid img:hover, .mini-gallery img:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* Forms */
.form { max-width: 100%; }
.field { display: grid; gap: 7px; margin-bottom: 15px; min-width: 0; }
.field > label, .field > span, fieldset > legend, .legend { color: var(--navy-900); font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd4df;
  border-radius: var(--radius-sm);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--sun-600);
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18);
}
.fieldset, fieldset.field { padding: 15px; border: 1px solid var(--line); border-radius: var(--radius); }
.radio-row, .checkgrid, .checkgrid-3 { display: grid; gap: 9px; }
.checkgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkgrid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.radio-row { grid-template-columns: repeat(2, minmax(0, max-content)); }
.radio-row label, .checkgrid label, .checkgrid-3 label, label.inline { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.inline input[type="text"], .inline input:not([type]) { flex: 1 1 180px; }
.req::after { content: " *"; color: var(--danger); }
.form-status { min-height: 1.5em; margin-top: 12px; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--success); }
.form-status.is-pending { color: var(--muted); }
.form-status a { font-weight: 700; }
.counter { color: var(--muted); font-size: 0.88rem; text-align: right; }
.seg { display: inline-flex; gap: 8px; margin: 0 0 20px; padding: 5px; background: rgba(11, 17, 51, 0.08); border-radius: 999px; }
.seg .btn { min-height: 40px; }
.seg .btn.is-active { color: #fff; background: var(--navy-900); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Tables */
.table-wrap { width: 100%; overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { padding: 13px 14px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); }
.table thead th { color: #3a2c00; background: #fff2b8; font-weight: 800; }
.table tbody tr:nth-child(even) { background: #faf8f1; }
.table tbody tr:last-child td { border-bottom: 0; }
.downloads .btn { white-space: nowrap; }

/* Contact directory */
.contact-directory-section { margin-top: 28px; }
.campus-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 18px;
}
.campus-contact {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 14px 16px;
  color: var(--navy-900) !important;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 17px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(7, 11, 37, 0.12);
  transition: transform 0.16s ease, box-shadow 0.2s ease;
}
.campus-contact:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(7, 11, 37, 0.18); }
.campus-contact__icon { display: grid; width: 46px; height: 46px; place-items: center; color: #1e1b10; background: linear-gradient(145deg, var(--sun-500), var(--sun-600)); border-radius: 14px; }
.campus-contact__details { display: grid; min-width: 0; line-height: 1.3; }
.campus-contact__details strong { overflow-wrap: anywhere; }
.campus-contact__details span { margin-top: 3px; color: #566074; font-weight: 600; }
.campus-contact__action { justify-self: end; color: var(--royal-500); font-size: 1.18rem; }
.campus-directory > :last-child:nth-child(odd) { grid-column: 1 / -1; width: min(100%, 560px); justify-self: center; }
.campus-directory-actions { margin-top: 20px; }
.contact-card a { font-weight: 700; }

/* Policies */
.policy-overview { margin-bottom: 18px; }
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.policy-sections { display: grid; gap: 12px; }
.policy-sections details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 20px rgba(7, 11, 37, 0.08); }
.policy-sections summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 19px; color: var(--navy-900); font-weight: 800; cursor: pointer; list-style: none; }
.policy-sections summary::-webkit-details-marker { display: none; }
.policy-sections details[open] summary { border-bottom: 1px solid var(--line); }
.policy-sections details[open] summary i { transform: rotate(180deg); }
.policy-sections summary i { transition: transform 0.18s ease; }
.section-body { padding: 18px 20px; }
.kicker { color: #8b5d00; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.anchor-spacer { scroll-margin-top: 130px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(4, 6, 20, 0.9);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(94vw, 1400px); max-height: 88vh; object-fit: contain; border-radius: 18px; box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5); }
.lightbox__close { position: fixed; top: 16px; right: 20px; width: 46px; height: 46px; color: #fff; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; }
body.lightbox-open { overflow: hidden; }

/* Footer */
.site-footer { margin-top: 34px; color: #e8eaff; background: linear-gradient(155deg, var(--navy-950), var(--navy-800)); }
.footer-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 14px 14px 0; }
.footer-gallery img { height: clamp(90px, 12vw, 170px); aspect-ratio: auto; object-position: center 25%; border-radius: 16px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; width: min(100% - 36px, var(--content)); margin: 0 auto; padding: 30px 0; }
.site-footer h4 { color: #fff; }
.site-footer p { color: #cfd3ea; }
.site-footer a { color: #f7f8ff; text-decoration: none; }
.site-footer a:hover { color: var(--sun-500); text-decoration: underline; }
.footer-cols ul { padding: 0; margin: 0; list-style: none; }
.footer-cols li { margin: 7px 0; }
.footer-cols i { margin-right: 7px; color: var(--sun-500); }
.legal { margin: 0; padding: 14px 18px; color: #c7cbe3; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); }

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up, .reveal-fade, .stagger > * { opacity: 0; transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal-up, .stagger > * { transform: translateY(14px); }
  .reveal-up.is-visible, .reveal-fade.is-visible, .stagger.is-visible > * { opacity: 1; transform: none; }
  .stagger.is-visible > * { transition-delay: var(--delay, 0ms); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-fade, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Responsive */
@media (max-width: 1100px) {
  .site-header { align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 112px;
    left: 14px;
    right: 14px;
    z-index: 110;
    display: none;
    max-height: calc(100vh - 128px);
    padding: 14px;
    overflow-y: auto;
    background: rgba(11, 17, 51, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
  }
  .site-nav.open { display: grid; }
  .site-nav > a, .nav-dropdown__toggle { width: 100%; justify-content: flex-start; border-radius: 12px; }
  .site-nav .btn { width: 100%; }
  .nav-dropdown__menu { position: static; width: 100%; max-height: 42vh; margin-top: 6px; box-shadow: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__figure { max-width: 780px; }
}
@media (max-width: 900px) {
  .grid3, .cards, .highlights, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .bio, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split__copy, .split.reverse .split__image { order: initial; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-cols > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .page, .container, .gallery, .highlights, .cta-banner, .footer-cols { width: min(100% - 28px, var(--content)); }
  .page { padding-block: 30px 44px; }
  .grid2, .grid3, .cards, .highlights, .gallery-grid, .campus-directory { grid-template-columns: 1fr; }
  .campus-directory > :last-child:nth-child(odd) { grid-column: auto; width: 100%; }
  .hero { padding: 42px 18px; min-height: auto; }
  .hero__figure { min-width: 0; }
  .mini-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .checkgrid, .checkgrid-3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-cols > :first-child { grid-column: auto; }
  .footer-gallery { grid-template-columns: 1fr 1fr; }
  .footer-gallery img:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .cta-row, .row-actions { align-items: stretch; }
  .cta-row .btn, .row-actions .btn { flex: 1 1 100%; width: 100%; }
  .table { min-width: 560px; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .site-header { padding: 10px 14px; }
  .brand img { width: 40px; height: 40px; }
  .brand__text em { display: none; }
  .site-nav { top: 104px; }
  .card, .news-card, .contact-card, .glow-panel, .form, .values { padding: 18px; border-radius: 20px; }
  .campus-contact { grid-template-columns: 44px minmax(0, 1fr) 24px; padding: 12px; }
  .campus-contact__icon { width: 42px; height: 42px; }
  .mini-gallery { grid-template-columns: 1fr 1fr; }
  .mini-gallery img:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .seg { display: grid; width: 100%; border-radius: 18px; }
  .seg .btn { width: 100%; }
}

/* Page-specific finishing touches */
.agenda {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.agenda li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(7, 11, 37, 0.08);
}
.agenda time { color: #8b5d00; font-weight: 800; }
.empty { border-style: dashed; }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--royal-600);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: gentlePulse 2.8s ease-in-out infinite; }
  @keyframes gentlePulse {
    0%, 100% { box-shadow: 0 10px 24px rgba(91, 92, 246, 0.24), 0 5px 14px rgba(255, 184, 0, 0.25); }
    50% { box-shadow: 0 12px 30px rgba(91, 92, 246, 0.34), 0 7px 18px rgba(255, 184, 0, 0.35); }
  }
}
@media (max-width: 480px) {
  .agenda li { grid-template-columns: 1fr; gap: 2px; }
}
