/* ── YALE FONTS ─────────────────────────────────────────── */
@font-face {
  font-family: 'Yale2024';
  src: url('brand_assets/fonts/Yale2024-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Yale2024';
  src: url('brand_assets/fonts/Yale2024-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Yale2024';
  src: url('brand_assets/fonts/Yale2024-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Yale2024';
  src: url('brand_assets/fonts/Yale2024-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --yale-blue: #00356B;
  --yale-blue-light: #1a4f87;
  --yale-blue-glow: rgba(0, 53, 107, 0.35);
  --accent: #4A7FBF;
  --accent-light: #6b9dd4;
  --gold: #4A7FBF;
  --gold-light: #6b9dd4;
  --bg: #0a0a0f;
  --bg-card: #0d1118;
  --bg-surface: #111520;
  --border: rgba(74, 127, 191, 0.12);
  --border-blue: rgba(0, 53, 107, 0.5);
  --text: #dde8f4;
  --text-muted: #7a9bbf;
  --text-faint: #1e3a5a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Yale2024', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overscroll-behavior: none; overflow-anchor: none; overflow-x: hidden; }
section[id] { scroll-margin-top: 72px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--white);
  font-weight: 400;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--yale-blue);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--yale-blue), 0 8px 32px var(--yale-blue-glow);
}
.btn-primary:hover {
  background: var(--yale-blue-light);
  box-shadow: 0 0 0 1px var(--yale-blue-light), 0 12px 40px rgba(0, 53, 107, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--yale-blue-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.78rem; }
.btn-large { padding: 1.1rem 2.5rem; font-size: 0.9rem; width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 64px;
  background: rgba(4, 12, 26, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgb(4, 12, 26); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 0.45rem 1.2rem;
  background: var(--yale-blue);
  color: var(--white) !important;
  border-radius: 3px;
  transition: background 0.2s ease !important;
}
.nav-cta:hover { background: var(--yale-blue-light) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: opacity 0.2s ease;
}
.nav-mobile {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 9998;
  background: rgb(4, 12, 26);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yale-blue);
  padding-top: 1rem;
}
.nav-mobile-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem !important;
  background: var(--yale-blue);
  color: var(--white) !important;
  border-radius: 3px;
  text-align: center;
  border-bottom: none !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* ── NAV DROPDOWNS ──────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
  padding: 0;
}
.nav-dropdown-btn:hover { color: var(--white); }
.nav-dropdown-btn svg { transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-btn { color: var(--white); }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgb(4, 12, 26);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.4rem;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.nav-soon {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: -5%;
  background: url('https://res.cloudinary.com/ddud73mxv/image/upload/q_auto,f_auto,w_1600/main_porsche_xy3zkk') center/cover no-repeat;
  opacity: 1;
  animation: heroPan 28s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0%   { transform: scale(1.06) translateX(-1.5%); }
  100% { transform: scale(1.06) translateX(1.5%); }
}

/* dark overlay for text legibility */
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,6,12,0.55) 0%, rgba(4,6,12,0.72) 60%, rgba(4,6,12,0.88) 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}
.btn-hero {
  width: 13.5rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 480px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 0.45rem;
}
.stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--yale-blue), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── PHOTO STRIP ────────────────────────────────────────── */
.photo-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 0;
  position: relative;
  z-index: 2;
  min-height: 240px;
  contain: layout;
}
.photo-strip:has(.strip-track:empty) { display: none; }
.strip-track {
  display: flex;
  gap: 0;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.strip-track img {
  height: 240px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%) brightness(0.8);
  transition: filter var(--transition);
}
.strip-track img:hover {
  filter: grayscale(0%) brightness(1);
}
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-body {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  background: rgba(0, 53, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--yale-blue-light);
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.about-visual { position: relative; }
.about-image-stack {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-back {
  width: 75%;
  height: 70%;
  top: 0;
  right: 0;
  filter: brightness(0.7);
  border: 1px solid var(--border);
}
.about-img-front {
  width: 65%;
  height: 65%;
  bottom: 0;
  left: 0;
  border: 3px solid var(--bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-badge {
  position: absolute;
  bottom: 12%;
  right: 2%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(0,53,107,0.5));
}
.about-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── SECTION LOGO MARK ──────────────────────────────────── */
.section-label-with-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-label-with-logo .section-label {
  margin-bottom: 0;
}
.section-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 1;
}

/* ── EVENTS ─────────────────────────────────────────────── */
.events {
  padding: 5rem 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.event-card-image {
  position: relative;
  overflow: hidden;
}
.event-featured .event-card-image { height: 200px; }
.event-card:not(.event-featured) .event-card-image { height: 150px; }

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card:hover .event-card-image img { transform: scale(1.08); }

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(13, 17, 23, 0.8) 100%);
}

.event-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: var(--yale-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.event-tag-future { background: rgba(74, 127, 191, 0.15); color: var(--gold); border: 1px solid rgba(74, 127, 191, 0.35); }

.event-card-body { padding: 1.75rem; }

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.event-date, .event-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.event-date svg, .event-location svg { color: var(--yale-blue-light); flex-shrink: 0; }

.event-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.event-featured .event-title { font-size: 1.8rem; }

.event-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.events-footer {
  text-align: center;
  padding-top: 1rem;
}
.events-footer p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ── TRAVEL EVENTS ──────────────────────────────────────── */
.travel-events {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.travel-label {
  margin-bottom: 1.5rem;
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.travel-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.travel-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
}
.travel-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter var(--transition);
}
.travel-card:hover img { filter: brightness(0.9); }
.travel-card-body {
  padding: 1rem;
}
.travel-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.travel-card-body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.travel-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── SHOW COVERAGE ──────────────────────────────────────── */
.shows {
  padding: 5rem 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.show-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color var(--transition);
}
.show-block:hover { border-color: var(--border-blue); }

.show-header-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.show-logo-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,53,107,0.4));
}
.show-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.show-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.show-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.show-date-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 53, 107, 0.3);
  color: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-blue);
}
.show-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.show-photo-count {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: auto;
}

.show-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  align-items: stretch;
}
.show-main {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.show-block:hover .show-main { transform: scale(1.02); }
.show-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.show-thumbs img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.show-thumbs img:hover { transform: scale(1.04); filter: brightness(1); }

.show-full-gallery {
  display: none;
  margin-top: 6px;
}
.show-full-gallery.open { display: block; }
.show-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.show-full-grid img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center 65%;
  border-radius: 4px;
  filter: brightness(0.88);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: zoom-in;
}
.show-full-grid img:hover { filter: brightness(1); transform: scale(1.02); position: relative; z-index: 1; }

.show-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  width: 100%;
  justify-content: center;
}
.show-expand-btn:hover {
  border-color: var(--border-blue);
  color: var(--white);
  background: rgba(0, 53, 107, 0.1);
}
.show-expand-btn.expanded { color: var(--white); border-color: var(--border-blue); }
.expand-chevron { transition: transform var(--transition); flex-shrink: 0; }
.show-expand-btn.expanded .expand-chevron { transform: rotate(180deg); }

/* ── CAMPUS CAR SPOTTING ─────────────────────────────────── */
.campus-spots {
  padding: 5rem 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.campus-placeholder {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.campus-placeholder-inner {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px dashed var(--border-blue);
  border-radius: var(--radius-lg);
  background: rgba(0, 53, 107, 0.04);
}
.campus-placeholder-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  opacity: 0.5;
}
.campus-placeholder-inner h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.campus-placeholder-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.campus-grid-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.campus-grid-slot {
  height: 160px;
  background: rgba(74, 127, 191, 0.04);
  border: 1px dashed rgba(74, 127, 191, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
  padding: 8rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery .section-header { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 6px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.35s ease, transform 0.35s ease;
  cursor: pointer;
  display: block;
}
.gallery-grid img:hover {
  filter: brightness(1) saturate(1.05);
  transform: scale(1.02);
  position: relative;
  z-index: 1;
}
.g-wide { grid-column: span 2; }

/* ── JOIN PHOTO GRID ─────────────────────────────────────── */
.join-form-cta {
  margin-top: 2rem;
}
.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
  text-align: center;
}

.join-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.join-photo-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: filter var(--transition);
}
.join-photo-grid img:hover { filter: brightness(0.8) saturate(0.9); }

/* ── ZAP CANVAS ─────────────────────────────────────────── */
#zap-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── SECTION COLLAPSE ────────────────────────────────────── */
.section-collapse-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.section-collapse-btn:hover {
  border-color: var(--border-blue);
  color: var(--white);
  background: rgba(0, 53, 107, 0.1);
}
.section-collapse-btn svg { transition: transform var(--transition); flex-shrink: 0; }
.section-collapse-btn[aria-expanded="false"] svg { transform: rotate(180deg); }

.section-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  opacity: 1;
}
.section-body.collapsed {
  grid-template-rows: 0fr;
  opacity: 0;
}
.section-body-inner { overflow: hidden; }

/* ── LEADERSHIP ─────────────────────────────────────────── */
.leadership {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

.leadership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.leader-card {
  flex: 0 1 300px;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yale-blue), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.leader-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 53, 107, 0.2);
}
.leader-card:hover::before { opacity: 1; }

.leader-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--border-blue);
  overflow: hidden;
  margin: 0 auto 1.25rem;
  transition: border-color var(--transition);
}
.leader-card:hover .leader-photo-wrap { border-color: var(--yale-blue); }
.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.leader-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.leader-bio {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}
.bio-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
  align-items: flex-start;
}
.bio-label {
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.67rem;
  flex-shrink: 0;
  width: 66px;
  padding-top: 0.06rem;
}
.bio-val {
  color: var(--text-muted);
}

.leader-line {
  width: 24px;
  height: 1px;
  background: var(--border-blue);
  margin: 1.25rem auto 0;
  transition: width var(--transition), background var(--transition);
}
.leader-card:hover .leader-line {
  width: 48px;
  background: var(--yale-blue);
}

/* ── JOIN LEADERSHIP (Meet the Team) ────────────────────── */
.join-leadership {
  position: relative;
  z-index: 1;
}
.join-leadership-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

.leader-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.leader-mini-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.leader-mini-card:hover { border-color: rgba(0,53,107,0.6); background: rgba(255,255,255,0.05); }

.leader-mini-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2.5rem 1.8rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  gap: 1.1rem;
}

.leader-mini-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-blue);
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.leader-mini-card:hover .leader-mini-photo { border-color: var(--yale-blue-light); }
.leader-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leader-mini-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.leader-mini-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.leader-mini-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.leader-mini-chevron {
  display: none;
}

.leader-mini-bio {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  opacity: 0;
}
.leader-mini-card:hover .leader-mini-bio {
  grid-template-rows: 1fr;
  opacity: 1;
}
.leader-mini-bio-inner {
  overflow: hidden;
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

/* ── SHOW MINI STRIP ─────────────────────────────────────── */
.show-mini-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.show-mini-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: zoom-in;
}
.show-mini-strip img:hover { filter: brightness(1); transform: scale(1.03); position: relative; z-index: 1; }

/* ── JOIN ───────────────────────────────────────────────── */
.join {
  padding: 5rem 0;
  position: relative;
  background: transparent;
  overflow: hidden;
  z-index: 2;
}
.join::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

.join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0, 53, 107, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(74, 127, 191, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.join-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  z-index: 1;
}

.join-body {
  color: rgba(255,255,255,0.55);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.join-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  color: var(--yale-blue);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}
.step-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.step-text p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.6;
}

.join-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.join-card:hover {
  border-color: var(--border-blue);
  background: rgba(0, 53, 107, 0.08);
  transform: translateX(4px);
}
.join-card-icon {
  color: var(--yale-blue-light);
  flex-shrink: 0;
}
.join-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.join-card-handle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.join-card:hover .join-card-handle { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: #010810;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo-disc {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0,53,107,0.35));
}
.footer-logo-disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .leader-mini-grid { grid-template-columns: repeat(3, 1fr); }
  .leader-mini-photo { width: 180px; height: 180px; }
  .leader-card { flex: 0 1 280px; }
  .about-inner { gap: 4rem; }
  .events-grid { grid-template-columns: 1fr; }
  .event-featured .event-card-image { height: 240px; }
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .g-wide { grid-column: span 1; }
  .show-preview-grid { height: 320px; }
  .show-full-grid { grid-template-columns: repeat(2, 1fr); }
  .campus-placeholder { grid-template-columns: 1fr; }
  .campus-grid-placeholder { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .leader-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-mini-photo { width: 168px; height: 168px; }
  .leader-mini-toggle { padding: 1.6rem 1rem 1.2rem; }
  .show-mini-strip {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    max-width: 100%;
  }
  .show-mini-strip::-webkit-scrollbar { display: none; }
  .show-mini-strip img {
    flex-shrink: 0;
    width: 75%;
    height: 200px;
    scroll-snap-align: start;
    border-radius: 8px;
  }
  .hero-stats {
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
  }
  .stat-number { font-size: 1.6rem; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual { order: -1; }
  .about-image-stack { height: 320px; }

  .leader-card { flex: 0 0 calc(50% - 0.75rem); }

  .join-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner { flex-direction: column; }
  .footer-links { gap: 1.25rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }

  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .join-photo-grid { display: none; }
  .show-preview-grid { grid-template-columns: 1fr; height: auto; }
  .show-thumbs { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); height: 110px; }
  .show-full-grid { grid-template-columns: repeat(2, 1fr); }
  .campus-placeholder { grid-template-columns: 1fr; }
  .show-mini-strip img:hover { transform: none; }
}

@media (max-width: 480px) {
  .leader-card { flex: 0 0 100%; }
  .container { padding: 0 1.25rem; }
  .about, .events, .leadership, .join, .gallery { padding: 5rem 0; }
  .travel-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }

  /* ── HERO: push title down, make it bigger ── */
  .hero { align-items: flex-start; }
  .hero-content {
    padding: 26vh 1.5rem 0;
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.4rem, 11.5vw, 3.5rem);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }
  .hero-sub {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    margin-bottom: 1.75rem;
  }
  .hero-actions {
    margin-bottom: 2.25rem;
    gap: 0.65rem;
  }
  .hero-stats {
    gap: 1.5rem;
    padding-top: 1.25rem;
  }
}

/* ── LIGHTBOX ───────────────────────────────────────────── */
dialog.lightbox:not([open]) { display: none; }
dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
dialog.lightbox::backdrop {
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.16); color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  z-index: 1;
  pointer-events: auto;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); color: var(--white); }

.lightbox-counter {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

/* ── CUSTOM SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--yale-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--yale-blue-light); }

/* ── CAMPUS SPOTTING: upload bar ────────────────────────── */
.campus-upload-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: center;
}
.campus-upload-bar p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin: 0;
}
.campus-upload-bar .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

/* ── CAMPUS SPOTTING: loading ───────────────────────────── */
.campus-loading {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}
.campus-spinner {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: var(--yale-blue);
  border-radius: 50%;
  animation: campus-spin 0.75s linear infinite;
}
@keyframes campus-spin { to { transform: rotate(360deg); } }

/* ── CAMPUS SPOTTING: photo grid ────────────────────────── */
.campus-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.campus-photo-item { position: relative; }
.campus-photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  display: block;
  transition: transform 0.3s ease;
}
.campus-photo-item img:hover { transform: scale(1.02); }
.campus-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}

.campus-load-more-wrap {
  justify-content: center;
  margin-top: 2rem;
}

/* ── CAMPUS SPOTTING: empty state ───────────────────────── */
.campus-empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.campus-empty-state img {
  width: 56px;
  opacity: 0.25;
  margin-bottom: 1.5rem;
}
.campus-empty-state h3 {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}
.campus-empty-state p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
}

/* ── SPOT UPLOAD MODAL ──────────────────────────────────── */
dialog.spot-modal:not([open]) { display: none; }
dialog.spot-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  background: #0d1b2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  width: min(480px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text);
}
dialog.spot-modal::backdrop {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.spot-modal-close {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
}
.spot-modal-close:hover { color: #fff; }

.spot-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.spot-modal-sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.spot-drop-zone {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(255,255,255,0.18);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.spot-drop-zone:hover,
.spot-drop-zone.drag-over {
  border-color: var(--yale-blue);
  background: rgba(0,53,107,0.12);
}
.spot-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.spot-drop-idle {
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}
.spot-drop-idle svg {
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.9rem;
}
.spot-drop-idle p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.spot-drop-idle strong { color: rgba(255,255,255,0.8); }
.spot-drop-idle span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
}
.spot-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.spot-preview-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}
.spot-preview-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.spot-preview-remove {
  position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.spot-caption-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  outline: none;
  transition: border-color 0.2s;
}
.spot-caption-input::placeholder { color: rgba(255,255,255,0.28); }
.spot-caption-input:focus { border-color: rgba(0,53,107,0.7); }

.spot-upload-btn {
  width: 100%;
  justify-content: center;
}
.spot-upload-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.spot-status {
  text-align: center;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
  color: rgba(255,255,255,0.45);
}
.spot-status.success { color: #4ade80; }
.spot-status.error { color: #f87171; }
