/* ══════════════════════════════════════════════════════════════
   USMMA Wrestling — Shared Stylesheet
   Official Colors: Blue (#093a88), Gray (#6c6c6c), Silver (#c0c0c0), White (#fff)
   Mascot: Salty the Sea Eagle | Teams: Mariners
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --blue: #093a88;
  --blue-dark: #062a66;
  --blue-light: #254889;
  --blue-pale: #e8edf5;
  --gray: #6c6c6c;
  --gray-light: #f4f4f4;
  --gray-mid: #d0d0d0;
  --silver: #a8a8a8;
  --silver-bright: #c0c0c0;
  --silver-pale: #f0f0f0;
  --white: #ffffff;
  --dark: #282828;
  --text-body: #444444;
  --text-light: #c8cdd8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); }

/* ── UTILITY ── */
.blue { color: var(--blue); }
.silver { color: var(--silver); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVIGATION ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 56px;
  background: var(--blue);
  border-bottom: 3px solid var(--silver);
  transform: translateY(-100%);
  animation: slideDown 0.6s 0.3s forwards;
}

.topbar-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-seal {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.topbar-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.6rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.topbar-nav a:hover { color: var(--white); }
.topbar-nav a.active {
  color: var(--white);
  border-bottom-color: var(--silver);
}

.topbar-cta {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-dark);
  background: var(--silver);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 0.5rem;
}
.topbar-cta:hover { background: var(--blue-dark); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

@keyframes slideDown { to { transform: translateY(0); } }

/* ── HERO (Full Height — Homepage) ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background: var(--blue);
  overflow: hidden;
  color: var(--white);
  gap: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-image-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-height: 55vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: block;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.02) 3px,
      rgba(255,255,255,0.02) 4px
    );
  pointer-events: none;
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-geo {
  z-index: 0 !important;
}

.hero-geo {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero-geo--1 {
  width: 300px; height: 300px;
  top: -80px; right: -100px;
  transform: rotate(25deg);
}
.hero-geo--2 {
  width: 180px; height: 180px;
  bottom: 20%; left: -60px;
  transform: rotate(-15deg);
  border-color: rgba(255,255,255,0.04);
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--silver-bright);
  text-decoration: underline;
  text-decoration-color: var(--silver);
  text-underline-offset: 0.15em;
  text-decoration-thickness: 3px;
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--silver-bright);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}

/* ── PAGE HERO (Shorter — Sub-pages) ── */
.page-hero {
  position: relative;
  min-height: 45svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 1.5rem 3rem;
  background: var(--blue);
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,58,136,0.3) 0%, rgba(9,58,136,0.85) 60%, var(--blue) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero .hero-eyebrow { animation-delay: 0.2s; }
.page-hero .hero-title { animation-delay: 0.4s; }
.page-hero .hero-sub { animation-delay: 0.6s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--blue);
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
}

/* Primary on blue background */
.hero .btn-primary,
.page-hero .btn-primary {
  color: var(--blue-dark);
  background: var(--silver);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero .btn-primary:hover,
.page-hero .btn-primary:hover { background: var(--blue-dark); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Ghost on light background */
.light .btn-ghost {
  color: var(--blue);
  border-color: var(--blue);
}
.light .btn-ghost:hover { background: var(--blue-pale); }

.btn-silver {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-dark);
  background: var(--silver);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-silver:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── DIAGONAL CLIP SECTIONS ── */
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding-bottom: 6vw;
}
.clip-top {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -4vw;
  padding-top: 8vw;
}
.clip-both {
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin-top: -4vw;
  padding-top: 8vw;
  padding-bottom: 6vw;
}

/* ── SECTION FOUNDATIONS ── */
section { padding: 6rem 1.5rem; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--dark);
  max-width: 600px;
}

.section-body {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 580px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--silver);
  margin: 0.75rem 0 0;
}

/* Sections on blue backgrounds */
.section-blue {
  background: var(--blue);
  color: var(--white);
}
.section-blue .section-label { color: var(--silver-bright); }
.section-blue .section-heading { color: var(--white); }
.section-blue .section-body { color: var(--text-light); }

/* Sections on light gray backgrounds */
.section-light {
  background: var(--gray-light);
}

/* ── EDUCATION SECTION ── */
.education {
  background: var(--blue);
  color: var(--white);
  position: relative;
}
.education .section-label { color: var(--silver-bright); }
.education .section-heading { color: var(--white); }
.education .section-body { color: var(--text-light); }
.education::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.edu-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(168,168,168,0.12);
  border-left: 3px solid var(--silver);
}
.edu-highlight-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* ── WRESTLING SECTION ── */
.wrestling {
  background: var(--white);
  position: relative;
}

.wrestling-records {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.record-card {
  text-align: center;
  padding: 1.5rem 0.5rem;
  background: var(--gray-light);
  border-top: 3px solid var(--blue);
  position: relative;
  overflow: hidden;
}
.record-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
}
.record-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ── SEA YEAR ── */
.seayear {
  background: var(--blue);
  color: var(--white);
  position: relative;
}
.seayear .section-label { color: var(--silver-bright); }
.seayear .section-heading { color: var(--white); }
.seayear .section-body { color: var(--text-light); }

.port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.port-tag {
  padding: 0.4rem 0.9rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-bright);
  border: 1px solid rgba(168,168,168,0.35);
  background: rgba(168,168,168,0.08);
}

.seayear-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--silver);
  font-size: 0.9rem;
  color: var(--silver-pale);
  font-style: italic;
}

/* ── CAREER SECTION ── */
.career {
  background: var(--white);
}

.career-grid {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--gray-mid);
}

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--gray-mid);
  position: relative;
}
.career-item:last-child { border-bottom: none; }

.career-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue);
  border: 1px solid rgba(9,58,136,0.2);
  background: var(--blue-pale);
  margin-top: 0.15rem;
}

.career-item-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.career-item-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.career-salary {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--blue);
  color: var(--white);
}
.salary-amount {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--silver-bright);
}
.salary-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ── PILOT SECTION ── */
.pilot {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.pilot-callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--silver);
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
}

.branches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.branch-badge {
  padding: 0.35rem 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(9,58,136,0.15);
}

/* ── ADMISSION ── */
.admission {
  background: var(--white);
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.req-box {
  padding: 1.25rem;
  background: var(--gray-light);
  border-top: 3px solid var(--blue);
}
.req-box-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.req-box-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
}
.req-box-sub {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.req-courses {
  margin-top: 1rem;
  grid-column: 1 / -1;
  padding: 1rem 1.25rem;
  background: rgba(9,58,136,0.04);
  border: 1px solid rgba(9,58,136,0.1);
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ── CONTACT / CTA ── */
.contact {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  position: relative;
}
.contact .section-label { color: var(--silver-bright); }
.contact .section-heading { color: var(--white); }
.contact .section-body { color: var(--text-light); }

.contact-cta {
  margin-top: 2rem;
}

.coaches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}

.coach-card {
  padding: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.coach-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 0.4rem;
}
.coach-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
}
.coach-info {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
}
.coach-info a {
  color: var(--silver-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,168,168,0.3);
  transition: border-color 0.2s;
}
.coach-info a:hover { border-color: var(--silver); }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--silver-bright);
  text-decoration: none;
}
.ig-link:hover { color: var(--silver); }

/* ── FOOTER ── */
.footer {
  padding: 2.5rem 1.5rem;
  background: var(--blue-dark);
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.footer-logo {
  margin-bottom: 1rem;
  opacity: 0.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-coaches {
  font-size: 0.7rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}
.footer-coaches a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-coaches a:hover { color: var(--silver-bright); }

/* ── SHARE BANNER ── */
.share-banner {
  padding: 1.5rem;
  text-align: center;
  background: var(--silver-pale);
  border-top: 1px solid rgba(168,168,168,0.2);
  font-style: italic;
  color: var(--dark);
}

/* ── SECTION LINK (cross-page) ── */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  transition: gap 0.2s;
}
.section-link:hover { gap: 0.7rem; }
.section-link svg { flex-shrink: 0; }

/* On blue backgrounds */
.section-blue .section-link,
.education .section-link,
.seayear .section-link,
.contact .section-link { color: var(--silver-bright); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ── MAJOR CARDS (Engineering) ── */
.major-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.major-card {
  padding: 2rem;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.major-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.major-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}
.major-card-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(168,168,168,0.3);
  background: var(--silver-pale);
}

/* ── SPECIALIZATION BADGES ── */
.spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.spec-badge {
  padding: 0.5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(9,58,136,0.12);
}

/* ── SHIPYARD / JOB LISTS ── */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.list-group h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--silver);
}
.list-group ul {
  list-style: none;
}
.list-group li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.list-group li:last-child { border-bottom: none; }
.list-group .location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

/* ── STEP TIMELINE (Apply) ── */
.timeline {
  margin-top: 2rem;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
}
.timeline-step {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: 50%;
}
.timeline-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.timeline-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* ── ALUMNI GRID ── */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.alumni-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
}
.alumni-card:hover {
  box-shadow: 0 4px 20px rgba(9,58,136,0.12);
  transform: translateY(-2px);
}
.alumni-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gray-light);
}
.alumni-card-body {
  padding: 1.25rem;
}
.alumni-card-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--dark);
}
.alumni-card-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.25rem;
}
.alumni-card-bio {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
}
.alumni-card-link {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--gray);
  font-size: 0.7rem;
}
.alumni-card:hover .alumni-card-link { opacity: 1; }
.alumni-card-link:hover { color: var(--blue); border-color: var(--blue); }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table th {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.75rem;
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue-dark);
}
.compare-table td {
  padding: 0.75rem;
  border: 1px solid var(--gray-mid);
  color: var(--text-body);
}
.compare-table tr:nth-child(even) td { background: var(--gray-light); }
.compare-table .highlight-col {
  background: var(--blue-pale) !important;
  font-weight: 600;
  color: var(--blue-dark);
}

/* ── CALLOUT BOX ── */
.callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--silver-pale);
  border-left: 3px solid var(--silver);
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}
.callout strong { color: var(--blue-dark); }

/* Blue callout */
.callout-blue {
  background: var(--blue-pale);
  border-left-color: var(--blue);
}

/* ── PHOTO SECTION ── */
.full-photo {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  section { padding: 7rem 2.5rem; }
  .hero { padding: 6rem 2.5rem 4rem; gap: 2rem; }
  .page-hero { padding: 6rem 2.5rem 3rem; }
  .wrestling-records { gap: 1.5rem; }
  .major-grid { grid-template-columns: 1fr 1fr 1fr; }
  .two-col-list { grid-template-columns: 1fr 1fr; }
  .photo-strip img { height: 280px; }
}

@media (min-width: 900px) {
  section { padding: 8rem 4rem; }
  .hero {
    padding: 8rem 4rem 5rem;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .hero-content { flex: 1 1 0; }
  .hero-image-col { flex: 1 1 0; }
  .hero-photo { max-height: 70vh; border-radius: 6px; }
  .page-hero { padding: 8rem 4rem 4rem; }
  .hero-stats { gap: 3rem; }
  .hero-stat-num { font-size: 2.5rem; }
  .record-num { font-size: 3rem; }
  .career-grid { grid-template-columns: 1fr 1fr; }
  .career-item { border-right: 1px solid var(--gray-mid); }
  .career-item:nth-child(even) { border-right: none; }
  .req-grid { grid-template-columns: repeat(4, 1fr); }
  .req-courses { grid-column: 3 / -1; }
  .coaches { gap: 1.5rem; }
}

@media (min-width: 1100px) {
  section { max-width: 1100px; margin-left: auto; margin-right: auto; }
  .education, .seayear, .pilot, .contact, .section-blue, .section-light {
    max-width: none;
  }
  .education > *, .seayear > *, .pilot > *, .contact > *,
  .section-blue > *, .section-light > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .topbar-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--blue);
    border-bottom: 3px solid var(--silver);
    padding: 0.75rem;
    gap: 0;
  }
  .topbar-nav.open { display: flex; }
  .topbar-nav a {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    border-bottom: none;
  }
  .topbar-cta {
    margin: 0.5rem 1rem 0;
    text-align: center;
  }
  .coaches { grid-template-columns: 1fr; }
}
