/* index.html page-specific styles */

:root {
  --bg: var(--navy);
  --surface: var(--navy-mid);
  --surface-2: var(--navy-light);
  --text: var(--white);
  --muted: var(--silver);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 12px 44px rgba(0,0,0,0.35);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --nav-pad-y: 24px;
  --nav-pad-y-scrolled: 16px;
  --nav-logo-size: 44px;
  --nav-logo-title-size: 13px;
  --nav-logo-sub-size: 9px;
  --nav-links-gap: 40px;
}

body.theme-light {
  --bg: #eef5ff;
  --surface: rgba(255,255,255,0.72);
  --surface-2: rgba(235,244,255,0.78);
  --text: #0b0f1c;
  --muted: rgba(11,15,28,0.62);
  --border: rgba(11,15,28,0.12);
  --shadow: 0 18px 50px rgba(11,15,28,0.12);
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.theme-light nav.scrolled { background: rgba(238,245,255,0.78); border-bottom: 1px solid rgba(11,15,28,0.10); }
body.theme-light .hero-overlay { opacity: 0.2; }

body.theme-light #cursor-glow {
  background: radial-gradient(circle at center, rgba(30,37,64,0.10), transparent 65%);
  mix-blend-mode: multiply;
}

#navbar.scrolled { box-shadow: var(--shadow); }
body.theme-light #navbar.scrolled { box-shadow: var(--shadow); }

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  border-radius: 8px;
  padding: 6px;
}
.logo-wrap img { display: block; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 22px;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,28,0.15) 0%,
    rgba(11,15,28,0.1) 40%,
    rgba(11,15,28,0.72) 75%,
    rgba(11,15,28,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1.2s ease 0.4s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--off-white);
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroIn 1.2s ease 1.4s forwards;
  color: var(--silver);
}
.hero-scroll-indicator .scroll-mouse {
  width: 24px;
  height: 38px;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

section { position: relative; }

/* ── Mission ── */
#mission {
  background: var(--navy-mid);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(184,154,92,0.15);
  border-bottom: 1px solid rgba(184,154,92,0.15);
}
.mission-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mission-year {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.mission-stat {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.mission-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.mission-right h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}
.mission-right h2 em {
  font-style: italic;
  color: var(--stone);
}
.mission-right p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--silver);
  max-width: 560px;
}

/* ── Signature Event ── */
#signature-event {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.event-image-side {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  padding: 20px;
}
.event-image-side img {
  width: min(100%, 420px);
  height: auto;
  max-height: 88%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.8s ease;
}
.event-image-side:hover img { transform: scale(1.04); }
.event-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,15,28,0.4) 0%, transparent 60%);
}
.event-content-side {
  background: var(--navy-light);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 32px;
  width: fit-content;
}
.event-content-side h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.event-content-side p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 40px;
}
.event-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}
.event-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-meta-item span:first-child {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-meta-item span:last-child {
  font-size: 14px;
  color: var(--white);
}

/* ── Gallery ── */
#gallery {
  padding: 100px 60px;
  background: var(--navy);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 220px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(15%);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,15,28,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

/* ── About ── */
#about {
  padding: 120px 60px;
  background: var(--navy-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
  background: var(--navy);
  display: block;
}
.about-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--white);
}
.about-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--silver);
  margin-bottom: 20px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  padding: 24px;
  border: 1px solid rgba(184,154,92,0.2);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

/* ── Leadership ── */
#leadership {
  padding: 120px 60px;
  background: var(--navy);
}
.leadership-header {
  text-align: center;
  margin-bottom: 72px;
}
.leadership-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.leadership-header p {
  font-size: 14px;
  color: var(--silver);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.leader-card {
  position: relative;
  background: var(--navy-mid);
  overflow: hidden;
  cursor: pointer;
}
.leader-card-image {
  height: 340px;
  overflow: hidden;
  position: relative;
}
.leader-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter 0.5s, transform 0.6s;
}
.leader-card:hover .leader-card-image img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.leader-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11,15,28,0.95) 0%, transparent 70%);
  padding: 32px 24px 24px;
  transform: translateY(8px);
  transition: transform 0.4s;
}
.leader-card:hover .leader-card-overlay { transform: translateY(0); }
.leader-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.leader-card-info {
  padding: 20px 24px;
  background: var(--navy-mid);
}
.leader-card-info p {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.6;
}

/* ── Events ── */
#events {
  padding: 120px 60px;
  background: var(--navy-light);
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.events-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: background 0.3s;
}
.event-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.event-row:hover { padding-left: 12px; }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.event-date-month {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-details h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.event-details p {
  font-size: 13px;
  color: var(--silver);
}
.event-row-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 14px;
  white-space: nowrap;
}
.event-row-actions a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,184,122,0.45);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 8px;
}

/* ── Voices Carousel ── */
#voices { padding: 110px 60px; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
body.theme-light #voices { background: rgba(235,244,255,0.55); border-top-color: rgba(11,15,28,0.08); border-bottom-color: rgba(11,15,28,0.08); }
.voices-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 42px; }
.voices-header h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: var(--white); }
body.theme-light .voices-header h2 { color: var(--text); }
.voices-controls { display: flex; gap: 10px; align-items: center; }
.voices-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: var(--gold);
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
.voices-btn:hover { border-color: rgba(184,154,92,0.6); background: rgba(184,154,92,0.08); transform: translateY(-1px); }
body.theme-light .voices-btn { border-color: rgba(11,15,28,0.14); background: rgba(255,255,255,0.62); }
.voices-track-wrap { position: relative; overflow: hidden; }
.voices-track { display: flex; gap: 14px; transition: transform 450ms ease; will-change: transform; }
.voice-card {
  flex: 0 0 min(520px, 90vw);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
}
body.theme-light .voice-card {
  background: rgba(255,255,255,0.72);
  border-color: rgba(11,15,28,0.10);
  box-shadow: 0 16px 44px rgba(11,15,28,0.10);
}
.voice-quote { font-family: var(--font-display); font-size: 26px; font-weight: 300; line-height: 1.25; color: var(--off-white); margin-bottom: 16px; }
body.theme-light .voice-quote { color: rgba(11,15,28,0.88); }
.voice-body { font-size: 14px; line-height: 1.85; color: var(--silver); margin-bottom: 18px; }
body.theme-light .voice-body { color: var(--muted); }
.voice-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.voice-name { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); }
body.theme-light .voice-name { color: rgba(184,154,92,0.95); }
.voice-tag { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
body.theme-light .voice-tag { color: rgba(11,15,28,0.55); }

/* ── Alumni ── */
#alumni {
  padding: 120px 60px;
  background: var(--navy-mid);
}
.alumni-header {
  text-align: center;
  margin-bottom: 72px;
}
.alumni-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.alumni-header p {
  font-size: 14px;
  color: var(--silver);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.alumni-card {
  background: var(--navy-light);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.alumni-card:hover {
  border-color: rgba(184,154,92,0.3);
  transform: translateY(-3px);
}
.alumni-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(184,154,92,0.25);
}
.alumni-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
}
.alumni-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.alumni-info .role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.alumni-info .tenure {
  font-size: 11px;
  color: var(--silver);
}

/* ── CTA ── */
#cta {
  padding: 140px 60px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,92,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#cta .section-label { justify-content: center; }
#cta .section-label::before { display: none; }
#cta h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
#cta h2 em { font-style: italic; color: var(--stone); }
#cta p {
  font-size: 16px;
  color: var(--silver);
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ── Footer override ── */
.footer-right { gap: 16px; }

/* ── Reveal delays ── */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Admin link ── */
.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--silver);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.admin-link img {
  width: 14px;
  height: 14px;
  opacity: 0.9;
  filter: none;
}

/* ── Full-gallery modal ── */
.full-gallery-modal,
.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.full-gallery-modal.open,
.admin-panel.open {
  opacity: 1;
  pointer-events: auto;
}
.full-gallery-backdrop,
.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, 0.86);
}
.full-gallery-card {
  position: relative;
  margin: 4vh auto;
  width: min(1100px, 95vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
body.theme-light .full-gallery-card { background: var(--surface); border-color: var(--border); }
.full-gallery-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.full-gallery-grid .gallery-item { min-height: 170px; }
.gallery-open { overflow: hidden; }

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
.gallery-lightbox-inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-inner img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.gallery-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gallery-lightbox-close:hover {
  border-color: var(--gold-light);
  background: var(--navy-mid);
  color: var(--gold-light);
}

/* ── Info popup (clickable cards) ── */
.click-popup { cursor: pointer; }
.click-popup:focus-visible { outline: 2px solid rgba(184,154,92,0.65); outline-offset: 4px; }
.info-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2605;
  padding: 28px;
}
.info-modal.open { display: flex; }
.info-modal-card {
  width: min(760px, 100%);
  max-height: min(78vh, 860px);
  overflow: auto;
  background: var(--navy-mid);
  border: 1px solid rgba(184,154,92,0.35);
  box-shadow: var(--shadow);
  padding: 34px 32px 30px;
  position: relative;
  border-radius: var(--radius-lg);
  animation: modalIn 0.24s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.info-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--gold);
  font-size: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.info-modal-close:hover {
  border-color: var(--gold-light);
  background: var(--navy-light);
  color: var(--gold-light);
}
.info-modal-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.info-modal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.info-modal-body { font-size: 14px; line-height: 1.9; color: var(--silver); }
.info-modal-body a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(212,184,122,0.45); }
.info-modal-body a:hover { border-bottom-color: var(--gold-light); }

/* ── Admin panel ── */
.admin-shell {
  position: absolute;
  top: 20px;
  right: 20px;
  width: min(760px, 95vw);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #0f1424;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
}
.admin-toolbar,
.admin-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.admin-top-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.admin-tab-btn {
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--off-white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}
.admin-tab-btn.active {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.admin-group { display: none; }
.admin-group.active { display: block; }
.admin-section-form {
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
}
.admin-section-form label {
  display: block;
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--stone);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-section-form input,
.admin-section-form textarea,
#admin-password {
  width: 100%;
  background: #0a0e1b;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--off-white);
  padding: 10px;
  font-family: var(--font-body);
  font-size: 13px;
}
.admin-section-form textarea {
  min-height: 96px;
  resize: vertical;
}
.admin-upload-zone {
  margin-top: 8px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 12px;
  background: var(--navy-light);
  color: var(--silver);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.6;
  transition: border-color .25s, background .25s;
}
.admin-upload-zone.dragover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.admin-upload-zone.upload-done { border-style: solid; border-color: rgba(76,175,125,.4); background: rgba(76,175,125,.08); }
.admin-upload-zone.upload-warning { border-style: solid; border-color: rgba(212,145,74,.5); background: rgba(212,145,74,.08); }
.admin-upload-zone.upload-error { border-style: solid; border-color: rgba(192,80,77,.5); background: rgba(192,80,77,.08); }
.admin-upload-zone.upload-loading { border-style: solid; border-color: var(--gold); background: rgba(184,154,92,.1); pointer-events: none; }
.admin-file-input { display: none; }
.admin-upload-note,
.admin-direct-hint {
  color: var(--silver);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 6px;
}
.admin-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.admin-group-header h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}
.admin-toolbar .btn-ghost,
.admin-toolbar .btn-primary,
.admin-inline-actions .btn-ghost,
.admin-toolbar-btn {
  padding: 9px 16px;
  font-size: 10px;
}
body.admin-direct-edit [data-admin-direct-edit="true"] {
  outline: 1px dashed var(--gold-light);
  outline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  #mission { grid-template-columns: 1fr; gap: 40px; padding: 80px 32px; }
  #signature-event { grid-template-columns: 1fr; }
  .event-image-side { min-height: 400px; }
  #gallery { padding: 80px 32px; }
  .gallery-grid { grid-template-rows: repeat(2, 200px); }
  #about { grid-template-columns: 1fr; padding: 80px 32px; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  #events { padding: 80px 32px; }
  #voices { padding: 80px 32px; }
  #alumni { padding: 80px 32px; }
  .alumni-grid { grid-template-columns: 1fr 1fr; }
  #cta { padding: 100px 32px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px; }
  .hero-content { padding: 0 32px 60px; }
  .full-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .g1 { grid-column: 1 / 3; grid-row: 1; }
  .g2 { grid-column: 1; grid-row: 2; }
  .g3 { grid-column: 2; grid-row: 2; }
  .g4 { grid-column: 1; grid-row: 3; }
  .g5 { grid-column: 2; grid-row: 3; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card-image img { object-position: center 90%; }
  .leader-card-image img.leader-photo-mobile-higher { object-position: center 62%; }
  .alumni-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-row-tag { display: none; }
}

/* Featured video modal */
.ssa-video-modal .ssa-video-card {
  max-width: 920px;
  width: 100%;
}
.ssa-video-close-x {
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}
.ssa-video-close-x:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.ssa-video-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(184, 154, 92, 0.2);
}
.ssa-video-frame-wrap iframe,
.ssa-video-frame-wrap video.ssa-video-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ssa-video-frame-wrap video.ssa-video-native {
  display: none;
  object-fit: contain;
  background: #000;
}

.footer-board-login.footer-social {
  text-decoration: none;
  color: var(--gold-light);
}
.footer-board-icon {
  display: inline-flex;
  color: var(--gold);
}
