/* ══ EXACT COLOR PALETTE FROM EXISTING SITE ══ */
:root {
  --pink: #d81b7d;
  --pink-deep: #b01564;
  --pink-light: #e84595;
  --pink-pale: #fef0f7;
  --pink-tint: #fff5fa;
  --navy: #0d1238;
  --navy-mid: #1a1f50;
  --navy-soft: #252b65;
  --bg: #fafafb;
  --surface: #ffffff;
  --surface-2: #f7f6f9;
  --border: rgba(216, 27, 125, 0.1);
  --border-mid: rgba(216, 27, 125, 0.18);
  --text: #0d1238;
  --text-muted: #4a4f6a;
  --text-faint: #8b8fa8;
  --on-pink: #ffffff;
  --font-head: "Roboto", sans-serif;
  --font-body: "Inter", sans-serif;
  --sz-xs: 0.75rem;
  --sz-sm: 0.875rem;
  --sz-md: 1rem;
  --sz-lg: 1.25rem;
  --sz-xl: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  --sz-2xl: clamp(2rem, 1.2rem + 2.4vw, 3.2rem);
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
  --sh-sm: 0 1px 3px rgba(13, 18, 56, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);
  --sh-md: 0 4px 18px rgba(13, 18, 56, 0.06), 0 8px 28px rgba(0, 0, 0, 0.04);
  --sh-lg: 0 8px 30px rgba(13, 18, 56, 0.08), 0 16px 40px rgba(0, 0, 0, 0.05);
  --sh-pink: 0 6px 22px rgba(216, 27, 125, 0.22);
  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: var(--sz-md);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
  background: linear-gradient(
    120deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #4a0d30 100%
  );
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.12);
}
.top-bar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--sz-xs);
  transition: color var(--ease);
}
.top-bar__item:hover {
  color: #fff;
}
.top-bar__item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.top-bar__hours {
  font-size: var(--sz-xs);
  color: rgba(255, 255, 255, 0.65);
  padding: 3px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar__social {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ease),
    color var(--ease);
}
.top-bar__social:hover {
  background: var(--pink);
  color: #fff;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(196, 20, 114, 0.05);
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.logo__emblem {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--pink-pale);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo__name {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 0.7rem + 0.4vw, 1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo__board {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.logo__slogan {
  font-size: 0.6rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* Nav links */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav__list li {
  white-space: nowrap;
}
.nav__list a {
  display: block;
  padding: var(--s2) var(--s3);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition:
    color var(--ease),
    background var(--ease);
  position: relative;
}
.nav__list a:hover {
  color: var(--pink);
  background: var(--pink-tint);
}
.nav__list a.active {
  color: #d4a35a;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 #d4a35a;
}
.nav__list a.active::after {
  display: none;
}
.nav__list .nav__cta {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  padding: var(--s2) var(--s5) !important;
  font-weight: 700 !important;
  box-shadow: var(--sh-pink);
  margin-left: var(--s2);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    transform var(--ease) !important;
  white-space: nowrap;
}
.nav__list .nav__cta:hover {
  background: var(--pink-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 20, 114, 0.38) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--s4) var(--s6) var(--s6);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: var(--s3) var(--s2);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition:
    color var(--ease),
    padding-left var(--ease);
}
.mobile-menu a:hover {
  color: var(--pink);
  padding-left: var(--s4);
}
.mobile-menu a.active {
  color: #d4a35a;
  font-weight: 600;
  background: rgba(212, 163, 90, 0.08);
  border-left: none;
  padding-left: 0;
}
.mobile-menu a.active::before {
  content: "▸";
  color: #d4a35a;
  margin-right: 6px;
  font-weight: 700;
}
.mobile-menu__cta {
  display: block;
  margin-top: var(--s4);
  text-align: center;
  background: var(--pink);
  color: #fff !important;
  padding: var(--s3) var(--s4);
  border-radius: var(--r-full);
  font-weight: 700;
  border-bottom: none !important;
}

@media (max-width: 960px) {
  .nav__list {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav__list {
    display: none;
  }
}
@media (max-width: 620px) {
  .top-bar__hours {
    display: none;
  }
}

/* ══ HERO ══ */
.hero-custom {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  background-image: url("../assets/disclosure.png");
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
}
.hero-custom__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.hero-custom__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: var(--s12) var(--s6);
}
.hero-custom__content h1 {
  font-size: var(--sz-2xl);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0 0 var(--s3);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  background: rgba(216, 27, 125, 0.25);
  border: 1px solid rgba(216, 27, 125, 0.45);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}
.hero-subtitle {
  font-size: var(--sz-lg);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  margin: 0 auto;
  max-width: 44ch;
}

/* ══ SECTION UTILITIES ══ */
.section {
  padding: var(--s20) var(--s6);
}
.section--light {
  background: var(--surface-2);
}
.section--white {
  background: var(--surface);
}
.section--muted {
  background: var(--pink-tint);
}
.section--dark {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #3a0d28 100%
  );
}
.section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.section__header {
  margin-bottom: var(--s8);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}
.section__header--center {
  text-align: center;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid var(--border-mid);
}
.section--dark .section-pill {
  background: rgba(216, 27, 125, 0.18);
  color: var(--pink-light);
  border-color: rgba(216, 27, 125, 0.35);
}
.section__title {
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--s3);
  letter-spacing: -0.02em;
}
.section--dark .section__title {
  color: #fff;
}
.section__desc {
  font-size: var(--sz-sm);
  color: var(--text-muted);
  max-width: 60ch;
  margin: var(--s2) 0 0;
  line-height: 1.75;
}
.section--dark .section__desc {
  color: rgba(255, 255, 255, 0.62);
}

/* ══ INFO CARDS (General Info) ══ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--s4);
  margin-top: var(--s6);
}
.info-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s5);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--ease),
    transform var(--ease);
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
}
.info-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.info-card > div:last-child {
  min-width: 0;
  flex: 1;
}
.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
}
.info-card__body {
  min-width: 0;
  flex: 1;
}
.info-card__label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.info-card__value {
  font-size: var(--sz-sm);
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.info-card__value a {
  color: var(--pink-deep);
  transition: color var(--ease);
}
.info-card__value a:hover {
  color: var(--pink);
}

/* ══ DOCUMENT TABLE ══ */
.doc-table-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: var(--s6);
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
}
.doc-table thead th {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s4) var(--s6);
  text-align: left;
}
.doc-table thead th:last-child {
  text-align: center;
}
.doc-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.doc-table tbody tr:last-child {
  border-bottom: none;
}
.doc-table tbody tr:hover {
  background: var(--pink-tint);
}
.doc-table td {
  padding: var(--s4) var(--s5);
  font-size: var(--sz-sm);
  color: var(--text);
  vertical-align: middle;
}
.doc-table td:nth-child(2) {
  max-width: 540px;
  line-height: 1.55;
}
.doc-table td:first-child {
  color: var(--text-faint);
  font-weight: 600;
  font-size: var(--sz-xs);
  width: 50px;
  text-align: center;
}
.doc-table td:last-child {
  text-align: center;
}
.btn-doc {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--pink);
  color: #fff;
  font-family: var(--font-head);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: var(--s2) var(--s5);
  border-radius: var(--r-full);
  box-shadow: var(--sh-pink);
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  white-space: nowrap;
}
.btn-doc:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(216, 27, 125, 0.35);
}

/* ══ RESULTS SECTION ══ */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  margin-top: var(--s6);
}
.results-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.results-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: var(--s5) var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.results-card__badge {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-head);
  font-size: var(--sz-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-sm);
}
.results-card__title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--sz-lg);
}
.results-table {
  width: 100%;
  border-collapse: collapse;
}
.results-table thead th {
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: var(--sz-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: var(--s3) var(--s5);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.results-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.results-table tbody tr:last-child {
  border-bottom: none;
}
.results-table tbody tr:hover {
  background: var(--pink-tint);
}
.results-table td {
  padding: var(--s3) var(--s5);
  font-size: var(--sz-sm);
  color: var(--text);
}
.results-table td:first-child {
  color: var(--text-faint);
  font-weight: 600;
  width: 40px;
  text-align: center;
}
.pass-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e6f9ef;
  color: #1a7a3b;
  font-size: var(--sz-xs);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(26, 122, 59, 0.2);
}

/* ══ STATS STRIP ══ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
}
.stat-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s5);
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.stat-card:hover {
  box-shadow: var(--sh-md);
}
.stat-card__num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-card__num span {
  color: var(--pink);
}
.stat-card__lbl {
  font-size: var(--sz-xs);
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--s2);
}

/* ══ STAFF SECTION ══ */
.staff-tabs {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}
.staff-tab {
  padding: var(--s2) var(--s5);
  border-radius: var(--r-full);
  font-size: var(--sz-sm);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface);
  transition: all var(--ease);
}
.staff-tab.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: var(--sh-pink);
}
.staff-tab:not(.active):hover {
  background: var(--pink-tint);
  color: var(--pink-deep);
  border-color: var(--border-mid);
}

.staff-panel {
  display: none;
}
.staff-panel.active {
  display: block;
}

.staff-table-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.staff-table {
  width: 100%;
  border-collapse: collapse;
}
.staff-table thead th {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--s4) var(--s5);
  text-align: left;
}
.staff-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.staff-table tbody tr:last-child {
  border-bottom: none;
}
.staff-table tbody tr:hover {
  background: var(--pink-tint);
}
.staff-table td {
  padding: var(--s3) var(--s4);
  font-size: var(--sz-sm);
  color: var(--text);
  vertical-align: middle;
}
.staff-table td:nth-child(2) {
  min-width: 180px;
  line-height: 1.5;
}
.staff-table td:nth-child(3) {
  min-width: 180px;
  color: var(--text-muted);
}
.staff-table td:first-child {
  color: var(--text-faint);
  width: 44px;
  text-align: center;
  font-size: var(--sz-xs);
  font-weight: 600;
}
.role-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  background: var(--pink-pale);
  color: var(--pink-deep);
  border: 1px solid var(--border);
}
.role-badge--pgt {
  background: rgba(13, 18, 56, 0.06);
  color: var(--navy);
  border-color: rgba(13, 18, 56, 0.1);
}
.role-badge--tgt {
  background: rgba(216, 27, 125, 0.08);
  color: var(--pink-deep);
  border-color: var(--border);
}
.role-badge--prt {
  background: rgba(26, 31, 80, 0.06);
  color: var(--navy-mid);
  border-color: rgba(26, 31, 80, 0.12);
}
.role-badge--ntt {
  background: #fef3e2;
  color: #a05d12;
  border-color: rgba(160, 93, 18, 0.15);
}
.role-badge--pet {
  background: #e6f9ef;
  color: #1a7a3b;
  border-color: rgba(26, 122, 59, 0.15);
}
.role-badge--assoc {
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: rgba(0, 0, 0, 0.06);
}

/* ══ INFRA SECTION ══ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: var(--s4);
  margin-top: var(--s6);
}
.infra-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--ease),
    transform var(--ease);
  text-align: center;
}
.infra-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.infra-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  margin: 0 auto var(--s4);
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
}
.infra-card__value {
  font-family: var(--font-head);
  font-size: var(--sz-lg);
  font-weight: 800;
  color: var(--navy);
}
.infra-card__label {
  font-size: var(--sz-xs);
  color: var(--text-muted);
  margin-top: var(--s1);
  font-weight: 500;
}

/* ══ STUDENTS SECTION ══ */
.student-table-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: var(--s6);
}
.student-table {
  width: 100%;
  border-collapse: collapse;
}
.student-table thead th {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--s4) var(--s6);
  text-align: left;
}
.student-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.student-table tbody tr:last-child {
  border-bottom: none;
  background: linear-gradient(90deg, var(--pink-tint), var(--pink-pale));
}
.student-table tbody tr:last-child td {
  font-weight: 700;
  color: var(--navy);
}
.student-table tbody tr:not(:last-child):hover {
  background: var(--pink-tint);
}
.student-table td {
  padding: var(--s3) var(--s6);
  font-size: var(--sz-sm);
  color: var(--text);
}
.student-table td:first-child {
  color: var(--text-faint);
  width: 50px;
  text-align: center;
  font-size: var(--sz-xs);
  font-weight: 600;
}

/* ══════════════════════════════════════
   FOOTER  — deep navy, 3-col
══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-mid) 55%,
    #3a0d28 100%
  );
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  position: relative;
}

/* Very subtle dot texture */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

.footer__main {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
}

/* Column 1: Brand */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo-emblem {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(196, 20, 114, 0.15);
  border: 1px solid rgba(196, 20, 114, 0.25);
  flex-shrink: 0;
}
.footer__logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__logo-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.footer__logo-board {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer__logo-slogan {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer__affil {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.footer__affil-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.footer__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 30ch;
}

.footer__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 1rem;
}
.footer__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 1rem;
  flex-shrink: 0;
}
.footer__stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.footer__stat-num span {
  color: var(--pink-light);
}
.footer__stat-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__socials {
  display: flex;
  gap: 0.5rem;
}
.footer__social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.footer__social:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* Columns 2 & 3 */
.footer__col-head {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.footer__col-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: var(--r-full);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-list a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 3px 0;
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer__nav-list a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.footer__nav-list a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer__nav-list a:hover::before {
  opacity: 1;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer__contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(196, 20, 114, 0.15);
  border: 1px solid rgba(196, 20, 114, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer__contact-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.footer__contact-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1px;
}
.footer__contact-value {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.5;
}
.footer__contact-value a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact-value a:hover {
  color: var(--pink-light);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.footer__bottom-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}
.footer__copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
  margin: 0;
}
.footer__copyright a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__copyright a:hover {
  color: var(--pink-light);
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__desc {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .footer__main {
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem 2rem;
  }
  .footer__bottom-inner {
    padding-inline: 1rem;
  }
  .footer__stats {
    gap: 0;
  }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 860px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .section {
    padding: var(--s12) var(--s4);
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3);
  }
  .infra-grid {
    grid-template-columns: 1fr;
  }
  .footer__main {
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem 2rem;
  }
  .doc-table-wrap {
    overflow-x: auto;
  }
  .staff-table-wrap {
    overflow-x: auto;
  }
  .student-table-wrap {
    overflow-x: auto;
  }
}

/* Search */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s5);
  max-width: 400px;
  box-shadow: var(--sh-sm);
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
}
.search-bar:focus-within {
  border-color: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(216, 27, 125, 0.08);
}
.search-bar input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--text);
  background: transparent;
  flex: 1;
}
.search-bar input::placeholder {
  color: var(--text-faint);
}
.search-bar svg {
  color: var(--text-faint);
  flex-shrink: 0;
}

/* Sticky section header */
.sticky-tabs {
  position: sticky;
  top: 76px;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(13, 18, 56, 0.04);
}
.sticky-tabs__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.sticky-tabs__item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s4) var(--s5);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition:
    color var(--ease),
    border-color var(--ease);
  cursor: pointer;
}
.sticky-tabs__item:hover {
  color: var(--pink);
  border-bottom-color: rgba(216, 27, 125, 0.3);
}
.sticky-tabs__item.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
  font-weight: 600;
}
.sticky-tabs__item svg {
  flex-shrink: 0;
}

/* reveal anim */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────
   Mandatory Public Disclosure — document tiles
   (npsnamakkal-style grid: title · framed page
   preview · dark PDF pill with red down-arrow)
   ───────────────────────────────────────────── */
.mpd-docs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px 32px;
  padding: 28px 0 8px;
}
@media (max-width: 1180px) {
  .mpd-docs-grid { grid-template-columns: repeat(4, 1fr); gap: 40px 28px; }
}
@media (max-width: 900px) {
  .mpd-docs-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 22px; }
}
@media (max-width: 640px) {
  .mpd-docs-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
}
@media (max-width: 380px) {
  .mpd-docs-grid { grid-template-columns: 1fr; }
}
.mpd-doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.mpd-doc__title {
  color: #7a1a1a;
  font-family: var(--font-head, "Plus Jakarta Sans", system-ui, sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mpd-doc__frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #ffffff;
  border-radius: 3px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 10px 24px rgba(60, 30, 15, 0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mpd-doc__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mpd-doc:hover .mpd-doc__frame {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 16px 34px rgba(60, 30, 15, 0.20);
}
.mpd-doc__pdf {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 6px 5px 22px;
  font-family: var(--font-head, "Plus Jakarta Sans", system-ui, sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.mpd-doc__pdf:hover {
  transform: translateY(-2px);
  background: #000000;
}
.mpd-doc__pdf-label { line-height: 1; }
.mpd-doc__pdf-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e11414;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.mpd-doc__pdf:hover .mpd-doc__pdf-icon { background: #c60d0d; }
