*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a47a0;
  --navy: #0d1f5c;
  --deep: #080e2e;
  --red: #c8102e;
  --gold: #d4a843;
  --cream: #f5f0e8;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'Crimson Text', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: .06em;
}

.font-mono {
  font-family: 'Courier Prime', monospace;
  font-size: .75rem;
  letter-spacing: .25em;
}

.center-text {
  text-align: center;
}

.text-center {
  text-align: center;
}

/* NAV */
/* =========================
   SCROLL-REVEAL NAV
   ========================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease, padding .28s ease;
  border-bottom: 1px solid transparent;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: padding .28s ease;
}

/* Top-of-hero state */
.nav--hero {
  background: rgba(8, 14, 46, 0.08);
  backdrop-filter: blur(2px);
  border-bottom-color: transparent;
}

.nav--hero .nav-links {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

.nav--hero .nav-title {
  color: #3e66d8;
}

.nav--hero .nav-sub {
  color: rgba(62, 102, 216, 0.75);
}

.nav--hero .nav-crest {
  background: rgba(36, 77, 200, 0.85);
  border: 2px solid rgba(255,255,255,.35);
}

.nav--hero .nav-crest span {
  color: #fff;
}

.nav--hero .nav-cta {
  background: #f21b3f;
  color: #fff;
  border: 2px solid #f21b3f;
  box-shadow: 3px 3px 0 rgba(13,31,92,.65);
}

/* Scrolled state */
.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 31, 92, 0.08);
  box-shadow: 0 8px 24px rgba(8, 14, 46, 0.08);
}

.nav--scrolled .nav-inner {
  padding: 0.9rem 1.5rem;
}

.nav--scrolled .nav-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: max-content;
}

.nav-crest {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .28s ease;
}

.nav-crest span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .06em;
  line-height: 1;
}

.nav-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  line-height: .9;
  letter-spacing: .06em;
  color: #2a47b8;
  transition: color .28s ease;
}

.nav-sub {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.95rem;
  color: #0d1f5c;
  font-weight: 600;
  transition: color .28s ease;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #1a2d5d;
  font-weight: 700;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #c8102e;
}

/* CTA */
.nav-cta {
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0;
  transition: all .25s ease;
  white-space: nowrap;
}

.nav--scrolled .nav-cta {
  background: #f21b3f;
  color: #fff;
  border: 2px solid #f21b3f;
  box-shadow: 3px 3px 0 #0d1f5c;
}

.nav--scrolled .nav-cta:hover,
.nav--hero .nav-cta:hover {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 980px) {
  .nav-links {
    display: none; /* keep simple for now */
  }

  .nav-title {
    font-size: 1.35rem;
  }

  .nav-sub {
    font-size: 0.8rem;
  }

  .nav-crest {
    width: 42px;
    height: 42px;
  }

  .nav-crest span {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* SECTION UTIL */
section {
  position: relative;
  overflow: hidden;
}

.max-w {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, .65);
}

.section-label-red {
  color: rgba(200, 16, 46, .8);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: .04em;
  color: #fff;
  line-height: 1;
}

.gold-bar {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: .9rem auto 0;
}

/* texture */
.texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* card */
.card {
  background: linear-gradient(135deg, rgba(13, 31, 92, .9) 0%, rgba(26, 71, 160, .35) 100%);
  border: 1.5px solid rgba(212, 168, 67, .22);
  border-radius: 12px;
  transition: .2s;
}

.card:hover {
  border-color: rgba(212, 168, 67, .5);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, #1a47a0 0%, #0d1f5c 45%, #080e2e 100%);
  padding: 100px 1.5rem 3rem;
}

.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
}

.ring1 {
  width: 580px;
  height: 580px;
  border-color: rgba(26, 71, 160, .3);
}

.ring2 {
  width: 800px;
  height: 800px;
  border-color: rgba(26, 71, 160, .15);
}

.ring3 {
  width: 1040px;
  height: 1040px;
  border-color: rgba(255, 255, 255, .05);
}

.arc1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--red);
  opacity: .5;
}

.arc2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--gold);
  border-right-color: var(--gold);
  opacity: .4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.eyebrow-line {
  height: 1px;
  width: 44px;
  background: var(--gold);
}

.eyebrow-text {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}

.crest {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid rgba(212, 168, 67, .6);
  background: linear-gradient(135deg, #1a47a0, #0d1f5c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 60px rgba(26, 71, 160, .7);
}

.crest-rhs {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: .15em;
  display: block;
  line-height: 1;
}

.crest-royals {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold);
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: clamp(3.5rem, 12vw, 9rem);
  letter-spacing: .04em;
  line-height: .95;
  margin-bottom: .3rem;
}

.hero-h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold);
  font-size: clamp(1.4rem, 5vw, 3.5rem);
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, .8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-red {
  padding: .9rem 2rem;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .2em;
  font-size: .85rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-red:hover {
  background: #a10c25;
}

.btn-outline {
  padding: .9rem 2rem;
  border: 1.5px solid rgba(212, 168, 67, .5);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .2em;
  font-size: .85rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all .2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: #fff;
}

.hero-tagline {
  margin-top: 3rem;
  font-style: italic;
  color: rgba(245, 240, 232, .4);
  font-size: .95rem;
  letter-spacing: .04em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
  opacity: .3;
}

.scroll-label {
  font-family: 'Courier Prime', monospace;
  font-size: .6rem;
  letter-spacing: .25em;
  color: #fff;
  display: block;
  margin-bottom: .4rem;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .4);
  margin: 0 auto;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* COUNTDOWN */
#countdown {
  background: linear-gradient(135deg, #040a1a 0%, #0d1f5c 50%, #040a1a 100%);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  position: relative;
}

.pinstripe-top,
.pinstripe-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.pinstripe-top { top: 0; }
.pinstripe-bottom { bottom: 0; }

.cd-label {
  margin-bottom: .5rem;
}

.cd-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .18em;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 2rem;
}

.cd-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cd-box {
  background: linear-gradient(180deg, rgba(26, 71, 160, .8) 0%, rgba(13, 31, 92, .95) 100%);
  border: 1px solid rgba(212, 168, 67, .4);
  box-shadow: 0 0 24px rgba(26, 71, 160, .5), inset 0 1px 0 rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  min-width: 80px;
  text-align: center;
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}

.cd-unit-label {
  font-family: 'Courier Prime', monospace;
  font-size: .6rem;
  letter-spacing: .25em;
  color: rgba(212, 168, 67, .7);
  text-transform: uppercase;
  margin-top: .25rem;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(212, 168, 67, .4);
  margin-bottom: 1.5rem;
}

.cd-sub {
  margin-top: 1.5rem;
  font-style: italic;
  color: rgba(245, 240, 232, .35);
  font-size: .85rem;
  font-family: 'Courier Prime', monospace;
  letter-spacing: .12em;
}

/* INFO */
#info {
  background: linear-gradient(180deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
  text-align: center;
}

.section-info {
  background: linear-gradient(180deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.info-header {
  margin-bottom: 3.5rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.info-card {
  padding: 1.8rem 1.4rem;
  text-align: center;
  border-radius: 12px;
}

.info-icon {
  font-size: 1.8rem;
  margin-bottom: .8rem;
}

.info-card-label {
  font-family: 'Courier Prime', monospace;
  font-size: .62rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .65);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.info-card-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: .1em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.2rem;
  border-radius: 99px;
  border: 1px solid rgba(212, 168, 67, .28);
  background: rgba(212, 168, 67, .06);
}

.centered-badge {
  margin: 0 auto;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

.status-text {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, .5); }
  50% { box-shadow: 0 0 0 8px rgba(200, 16, 46, 0); }
}

.info-desc {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(245, 240, 232, .75);
  line-height: 1.75;
}

/* SCHEDULE */
#schedule {
  background: linear-gradient(180deg, #080e2e 0%, #0d1f5c 50%, #080e2e 100%);
  padding: 5rem 0;
}

.section-schedule {
  background: linear-gradient(180deg, #080e2e 0%, #0d1f5c 50%, #080e2e 100%);
  padding: 5rem 0;
}

.sched-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sched-note {
  font-style: italic;
  color: rgba(245, 240, 232, .45);
  margin-top: .8rem;
  font-size: .9rem;
  font-family: 'Courier Prime', monospace;
  letter-spacing: .1em;
}

.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.sched-card {
  border-radius: 12px;
  overflow: hidden;
}

.sched-day-header {
  padding: .7rem 1.2rem;
  text-align: center;
  background: linear-gradient(135deg, #c8102e, #8b0d1e);
}

.sched-day-label {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .15em;
  font-size: .95rem;
  color: #fff;
}

.sched-events {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sched-event {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.sched-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .5rem;
}

.sched-time {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--gold);
}

.sched-label {
  font-size: .9rem;
  color: rgba(245, 240, 232, .85);
  line-height: 1.3;
  margin-top: .1rem;
}

/* MEMORY WALL */
#memories {
  background: linear-gradient(135deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.section-memories {
  background: linear-gradient(135deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.mem-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mem-quote-bg {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30rem;
  color: rgba(26, 71, 160, .12);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.mem-subtext {
  color: rgba(245, 240, 232, .65);
  margin-top: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.mem-card {
  padding: 1.6rem;
  border-radius: 12px;
  position: relative;
}

.mem-card:nth-child(1) { transform: rotate(-1.2deg); }
.mem-card:nth-child(2) { transform: rotate(.8deg); }
.mem-card:nth-child(3) { transform: rotate(-.5deg); }

.mem-pin {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 2px 8px rgba(200, 16, 46, .5);
}

.mem-text {
  font-style: italic;
  font-size: .95rem;
  color: rgba(245, 240, 232, .9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mem-name {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(212, 168, 67, .55);
}

.btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border: 1.5px solid rgba(212, 168, 67, .28);
  color: rgba(212, 168, 67, .45);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .18em;
  font-size: .85rem;
  border-radius: 5px;
  cursor: not-allowed;
}

/* GALLERY */
#gallery {
  background: linear-gradient(180deg, #080e2e 0%, #0d1f5c 100%);
  padding: 5rem 0;
}

.section-gallery {
  background: linear-gradient(180deg, #080e2e 0%, #0d1f5c 100%);
  padding: 5rem 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-subtext {
  color: rgba(245, 240, 232, .65);
  margin-top: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 3rem;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-tile-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gallery-tile:hover .gallery-tile-overlay {
  opacity: 1;
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 60%);
  opacity: 0;
  transition: .3s;
  display: flex;
  align-items: flex-end;
  padding: .7rem;
}

.gallery-tile-label {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .15em;
}

.gallery-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: .15;
}

.gallery-dots {
  position: absolute;
  top: .5rem;
  left: .5rem;
  display: flex;
  gap: .2rem;
}

.gallery-dot {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .18);
}

.btn-disabled-gallery {
  border-color: rgba(26, 71, 160, .4);
  color: rgba(245, 240, 232, .35);
}

.pulse-dot-gold {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  display: inline-block;
}

/* WHERE ARE THEY NOW */
#classmates {
  background: linear-gradient(135deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.section-classmates {
  background: linear-gradient(135deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.watn-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.watn-subtext {
  color: rgba(245, 240, 232, .65);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.watn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.watn-card {
  padding: 1.6rem;
  border-radius: 12px;
  transition: .2s;
}

.watn-card:hover {
  border-color: rgba(212, 168, 67, .5);
}

.watn-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.watn-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a47a0, #c8102e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(26, 71, 160, .5);
}

.watn-name {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  letter-spacing: .15em;
  font-size: 1rem;
}

.watn-loc {
  font-family: 'Courier Prime', monospace;
  font-size: .62rem;
  letter-spacing: .18em;
  color: rgba(212, 168, 67, .55);
  margin-top: .15rem;
}

.watn-blurb {
  font-style: italic;
  font-size: .9rem;
  color: rgba(245, 240, 232, .65);
  line-height: 1.5;
}

.watn-btns {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  padding: .9rem 2rem;
  background: rgba(26, 71, 160, .3);
  border: 1.5px solid rgba(26, 71, 160, .5);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .18em;
  font-size: .85rem;
  border-radius: 5px;
  text-decoration: none;
  transition: .2s;
}

.btn-navy:hover {
  background: rgba(26, 71, 160, .55);
}

.pulse-dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2.5s infinite;
  display: inline-block;
}

/* COMMITTEE */
#committee {
  background: linear-gradient(180deg, #080e2e 0%, #0d1f5c 100%);
  padding: 5rem 0;
}

.section-committee {
  background: linear-gradient(180deg, #080e2e 0%, #0d1f5c 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(212, 168, 67, .15);
}

.comm-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.comm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.comm-card {
  padding: 1.4rem 1rem;
  border-radius: 12px;
  text-align: center;
  transition: .2s;
}

.comm-card:hover {
  border-color: rgba(212, 168, 67, .5);
}

.comm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8102e, #1a47a0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 12px rgba(200, 16, 46, .35);
}

.comm-name {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  letter-spacing: .15em;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.comm-role {
  font-family: 'Courier Prime', monospace;
  font-size: .62rem;
  letter-spacing: .18em;
  color: rgba(212, 168, 67, .6);
  margin-bottom: .75rem;
}

.comm-email {
  font-family: 'Courier Prime', monospace;
  font-size: .62rem;
  letter-spacing: .08em;
  color: rgba(26, 71, 160, .8);
  text-decoration: none;
  transition: .2s;
  word-break: break-all;
}

.comm-email:hover {
  color: var(--gold);
}

.contact-box {
  max-width: 580px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 2rem;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}

.contact-desc {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, .7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.contact-input {
  flex: 1;
  min-width: 200px;
  padding: .8rem 1.1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  border-radius: 7px;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1rem;
  outline: none;
  transition: .2s;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.contact-input:focus {
  border-color: rgba(212, 168, 67, .45);
}

.btn-contact-submit {
  border: none;
  cursor: pointer;
  padding: .8rem 1.6rem;
}

.contact-note {
  margin-top: 1rem;
  font-family: 'Courier Prime', monospace;
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(245, 240, 232, .25);
}

.contact-note a {
  color: rgba(212, 168, 67, .55);
  text-decoration: none;
  transition: .2s;
}

.contact-note a:hover {
  color: var(--gold);
}

/* FAQ */
#faq {
  background: linear-gradient(180deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.section-faq {
  background: linear-gradient(180deg, #0d1f5c 0%, #080e2e 100%);
  padding: 5rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
}

.faq-q-text {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .12em;
  font-size: 1rem;
  color: #fff;
  transition: .2s;
}

.faq-q:hover .faq-q-text {
  color: var(--gold);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: .3s;
  font-family: 'Courier Prime', monospace;
}

.faq-item.open .faq-q-text {
  color: var(--gold);
}

.faq-item.open .faq-toggle {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-text {
  font-size: .95rem;
  color: rgba(245, 240, 232, .68);
  line-height: 1.7;
  padding-bottom: 1.2rem;
}

/* FOOTER */
footer {
  background: #040a1a;
  border-top: 3px solid var(--red);
}

.footer-topline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .2em;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: .2rem;
}

.footer-brand-class {
  font-family: 'Courier Prime', monospace;
  font-size: .6rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .55);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(245, 240, 232, .4);
  font-size: .9rem;
  line-height: 1.5;
}

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .2em;
  font-size: .8rem;
  color: rgba(212, 168, 67, .65);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(245, 240, 232, .45);
  text-decoration: none;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-email {
  font-family: 'Courier Prime', monospace;
  font-size: .65rem;
  letter-spacing: .08em;
  color: rgba(245, 240, 232, .45);
  text-decoration: none;
  transition: .2s;
  word-break: break-all;
}

.footer-email:hover {
  color: var(--gold);
}

.footer-social-wrap {
  margin-top: 1.2rem;
}

.footer-social-link {
  font-family: 'Courier Prime', monospace;
  font-size: .62rem;
  letter-spacing: .15em;
  color: rgba(245, 240, 232, .35);
  text-decoration: none;
  transition: .2s;
}

.footer-social-link:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
  font-family: 'Courier Prime', monospace;
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(245, 240, 232, .2);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 3s infinite;
}

.footer-status-text {
  font-family: 'Courier Prime', monospace;
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(245, 240, 232, .2);
}

/* Responsive */
@media (max-width: 980px) {
  nav ul {
    gap: .9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav a {
    font-size: .62rem;
    letter-spacing: .14em;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    width: 100%;
    gap: .6rem .9rem;
  }

  .hero-h1 {
    line-height: .98;
  }

  .eyebrow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .eyebrow-line {
    width: 28px;
  }

  .cd-sep {
    display: none;
  }

  .cd-units {
    gap: .75rem;
  }

  .cd-box {
    min-width: 72px;
    padding: 1rem;
  }

  .cd-num {
    font-size: 2.4rem;
  }

  .contact-form {
    flex-direction: column;
  }

  .btn-contact-submit {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-h2 {
    font-size: clamp(1.1rem, 6vw, 2rem);
  }
}
