:root {
  --red-900: #7a0000;
  --red-800: #a10000;
  --red-700: #c40000;
  --red-600: #e10600;
  --red-500: #ff1f1f;
  --red-100: #ffd9d9;
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --black-card: #161616;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --ink: #0d0d0d;
  --font-display: 'Oswald', Arial, Helvetica, sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

h1, h2, h3, .brand span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 3px solid var(--red-600);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.brand i { color: var(--red-600); font-size: 1.4rem; }

.brand-logo { width: auto; height: 52px; object-fit: contain; }

.main-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--off-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--red-500); }

.header-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--red-600);
  color: var(--white);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-instagram:hover { background: var(--red-600); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(13, 13, 13, 0.94) 0%,
    rgba(122, 0, 0, 0.62) 40%,
    rgba(13, 13, 13, 0.2) 72%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-kicker {
  color: var(--red-500);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.8rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--off-white);
  margin: 0 0 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red-600);
  color: var(--white);
}

.btn-primary:hover { background: var(--red-500); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }

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

.section-kicker {
  color: var(--white);
  background: var(--red-600);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 1.5rem;
  color: var(--white);
}

.about-section { background: var(--black-soft); }

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

.about-text p { line-height: 1.7; color: var(--off-white); font-size: 1.02rem; }

.stat-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-list li { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-500);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-image-wrap {
  border: 3px solid var(--red-600);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-image { width: 100%; height: 100%; object-fit: cover; }

.about-more-link { display: inline-block; margin-top: 2rem; }

.about-page-section { padding-top: 3.5rem; }

/* ---------- Media Corner ---------- */
.media-section { background: var(--black); }

.media-intro {
  color: var(--off-white);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 2.5rem;
  opacity: 0.85;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.media-card {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--red-600);
  border-radius: 6px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
}

.media-card i {
  color: var(--red-500);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.media-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.7rem;
}

.media-card p {
  color: var(--off-white);
  line-height: 1.6;
  font-size: 0.88rem;
  margin: 0;
}

.media-coming-soon {
  display: inline-block;
  margin-top: 1rem;
  color: var(--white);
  background: var(--red-600);
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Values ---------- */
.values-section { background: var(--black); }

.values-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--red-600);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin: 0 0 2rem;
  max-width: 760px;
}

.values-banner-image {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.values-intro {
  color: var(--off-white);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--red-600);
  border-radius: 6px;
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.value-card i {
  color: var(--red-500);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.7rem;
}

.value-card p {
  color: var(--off-white);
  line-height: 1.6;
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Roster ---------- */
.roster-section { background: var(--black-soft); }

.roster-subhead {
  font-size: 1.2rem;
  color: var(--white);
  margin: 2rem 0 1rem;
}

.roster-subhead:first-of-type { margin-top: 0; }

.roster-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--red-700);
  margin-bottom: 0.5rem;
}

.roster-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black-card);
}

.roster-table th,
.roster-table td {
  padding: 0.7rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.92rem;
}

.roster-table th {
  background: var(--red-600);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.roster-table tbody tr:hover { background: #232323; }

.roster-num {
  color: var(--red-500);
  font-weight: 700;
  width: 2.5rem;
}

.captain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.5rem;
  background: var(--red-600);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50%;
  vertical-align: middle;
}

.roster-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--off-white);
  opacity: 0.75;
}

/* ---------- History ---------- */
.history-section { background: var(--black); }

.history-intro {
  max-width: 760px;
  color: var(--off-white);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0 0 2rem;
}

.history-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--red-700);
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black-card);
  min-width: 640px;
}

.history-table th,
.history-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95rem;
  white-space: nowrap;
}

.history-table th {
  background: var(--red-600);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.history-table tbody tr:hover { background: #232323; }

.history-table i.fa-trophy { color: #ffd54a; margin-right: 0.4rem; }
.history-table i.fa-star { color: #ffd54a; margin-right: 0.4rem; }

.history-highlight-row td {
  background: rgba(225, 6, 0, 0.12);
  font-weight: 600;
}

.history-note-cell {
  color: var(--off-white);
  font-style: italic;
  white-space: normal;
}

.history-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--off-white);
  max-width: 760px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ---------- Coaches ---------- */
.coaches-section { background: var(--black-soft); }

.coaches-page-section { padding-top: 3.5rem; }

.coaches-subhead {
  font-size: 1.3rem;
  color: var(--white);
  margin: 2.5rem 0 1.2rem;
}

.coaches-subhead:first-of-type { margin-top: 0; }

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coach-card {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--red-600);
  border-radius: 6px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.coach-card-head { border-bottom: 1px solid #2a2a2a; padding-bottom: 0.7rem; }

.coach-name {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.2rem;
}

.coach-title {
  font-size: 0.8rem;
  color: var(--white);
  background: var(--red-600);
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.coach-honor {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd54a;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}

.coach-honor i { color: #ffd54a; }

.coach-card p {
  color: var(--off-white);
  line-height: 1.65;
  font-size: 0.92rem;
  margin: 0;
}

.coach-bio-pending {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-white);
  opacity: 0.6;
  font-style: italic;
  font-size: 0.88rem !important;
}

.jv-section { margin-top: 1rem; }

.jv-coaches-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.jv-coaches-list li {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red-600);
  border-radius: 6px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.jv-coaches-list i { color: var(--red-500); margin-right: 0.5rem; }

.program-levels-note {
  margin-top: 2rem;
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red-600);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
}

.program-levels-note p {
  margin: 0;
  color: var(--off-white);
  line-height: 1.65;
}

.program-levels-note i { color: var(--red-500); margin-right: 0.5rem; }

/* ---------- Alumni ---------- */
.alumni-section { background: var(--black-soft); }

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

.alumni-grid-commits { grid-template-columns: repeat(3, 1fr); }

.alumni-card {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red-600);
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
}

.alumni-card-commit {
  border-left: 4px solid #ffd54a;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.alumni-commit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffd54a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alumni-name {
  margin: 0;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.alumni-college {
  margin: 0.2rem 0 0;
  color: var(--red-500);
  font-weight: 600;
  font-size: 0.88rem;
}

.alumni-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--off-white);
  line-height: 1.65;
  max-width: 900px;
  opacity: 0.85;
}

/* ---------- Records ---------- */
.records-section { background: var(--black); }

.records-intro {
  color: var(--off-white);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 2.5rem;
}

.record-category { margin-bottom: 2.8rem; }

.record-category-title {
  font-size: 1.2rem;
  color: var(--red-500);
  border-bottom: 2px solid var(--red-600);
  padding-bottom: 0.5rem;
  margin: 0 0 1.2rem;
}

.record-tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.record-table-wrap {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
}

.record-table-caption {
  margin: 0;
  padding: 0.7rem 1rem;
  background: #232323;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--off-white);
}

.record-table {
  width: 100%;
  border-collapse: collapse;
}

.record-table th,
.record-table td {
  padding: 0.55rem 1rem;
  text-align: left;
  font-size: 0.86rem;
  border-bottom: 1px solid #232323;
}

.record-table th {
  background: transparent;
  color: var(--off-white);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.record-rank { color: var(--red-500); font-weight: 700; width: 2rem; }
.record-value { font-weight: 700; color: var(--white); }
.record-pending-flag { color: #ffd54a; margin-left: 0.15rem; }

.record-table tbody tr:hover { background: #1f1f1f; }

.records-footnote {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--off-white);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 900px;
}

/* ---------- Gallery ---------- */
.gallery-section { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.75;
}

.gallery-note a {
  color: var(--red-500);
  font-weight: 700;
  text-decoration: none;
}

.gallery-note a:hover { text-decoration: underline; }

/* ---------- Schedule ---------- */
.schedule-section { background: var(--black-soft); }

.fall-training-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.fall-training-item {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red-600);
  border-radius: 6px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fall-training-item i {
  color: var(--red-500);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.fall-training-item h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.fall-training-item p {
  color: var(--off-white);
  margin: 0 0 0.2rem;
  line-height: 1.5;
  font-size: 0.92rem;
}

.fall-training-loc { opacity: 0.75; font-size: 0.85rem; }

.schedule-kicker-spring { margin-top: 3rem; }

.level-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.level-v { background: var(--red-600); color: var(--white); }
.level-jv { background: #2a2a2a; color: var(--off-white); }

.schedule-row-note {
  color: #ffd54a;
  font-size: 0.82rem;
  font-weight: 600;
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--red-700);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black-card);
}

.schedule-table th,
.schedule-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95rem;
}

.schedule-table th {
  background: var(--red-600);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.schedule-table tbody tr:hover { background: #232323; }

.schedule-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--off-white);
  opacity: 0.85;
}

.schedule-note-top { margin-top: 0; margin-bottom: 1.2rem; }

/* ---------- Contact ---------- */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-grid p { color: var(--off-white); line-height: 1.7; }

.contact-card {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red-600);
  border-radius: 6px;
  padding: 1.8rem;
}

.contact-card p {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.contact-card i { color: var(--red-500); width: 1.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--red-600);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--off-white);
}

.footer-photo-credit { opacity: 0.6; }
.footer-photo-credit a { color: var(--off-white); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .main-nav { gap: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-banner { flex-direction: column; text-align: center; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .coaches-grid { grid-template-columns: 1fr; }
  .alumni-grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-grid-commits { grid-template-columns: repeat(2, 1fr); }
  .record-tables-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .fall-training-card { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .main-nav { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-wide, .gallery-item-tall { grid-column: span 1; grid-row: span 1; }
  .alumni-grid, .alumni-grid-commits { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
