/* ============================================================
   TEMPE HIGH BUFFALOES FOOTBALL — GLOBAL STYLESHEET
   global.css · v1.0
   Covers: CSS Variables, Reset, Typography, Utilities,
           Buttons, Badges, Sections, Cards, Tables,
           Stats, CTA Band, Forms
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@2.44.0/tabler-icons.min.css');


/* ── CSS CUSTOM PROPERTIES (DESIGN TOKENS) ───────────────── */
:root {
  /* Brand Colors */
  --color-navy:          #151551;   /* Primary — deep navy */
  --color-navy-mid:      #1d1d6b;   /* Hover state */
  --color-navy-deep:     #0d0d38;   /* Hero backgrounds */
  --color-black:         #000000;   /* Stats bars, footer */
  --color-cream:         #e8dfdc;   /* Section backgrounds */
  --color-accent:        #474747;   /* Primary accent */
  --color-accent-mid:    #c4aea7;   /* Accent hover / borders */
  --color-accent-dark:   #a08880;   /* Labels / eyebrows */
  --color-white:         #ffffff;
  --color-offwhite:      #f5f2f0;   /* News / content sections */

  /* Text */
  --color-text:          #1a1a1a;
  --color-muted:         #666666;
  --color-muted-light:   rgba(255, 255, 255, 0.45);

  /* Borders */
  --color-border-light:  rgba(21, 21, 81, 0.08);
  --color-border-dark:   rgba(255, 255, 255, 0.06);

  /* Typography Scale */
  --font-display:        'Oswald', sans-serif;
  --font-body:           'Barlow', sans-serif;
  --font-condensed:      'Barlow Condensed', sans-serif;

  --text-xs:    10px;
  --text-sm:    12px;
  --text-base:  14px;
  --text-md:    15px;
  --text-lg:    18px;
  --text-xl:    24px;
  --text-2xl:   32px;
  --text-3xl:   38px;
  --text-4xl:   54px;
  --text-5xl:   72px;
  --text-hero:  80px;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  72px;

  /* Layout */
  --max-width:        1140px;
  --section-padding:  4.5rem 2rem;
  --nav-height:       70px;
  --utility-height:   36px;

  /* Border Radius */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;

  /* Shadows */
  --shadow-card:   0 4px 24px rgba(21, 21, 81, 0.08);
  --shadow-hover:  0 8px 32px rgba(21, 21, 81, 0.12);

  /* Transitions */
  --transition-fast:   all 0.15s ease;
  --transition-base:   all 0.20s ease;
  --transition-slow:   all 0.35s ease;
}


/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}


/* ── TYPOGRAPHY ───────────────────────────────────────────── */

/* Display headings — always Oswald */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-navy);
}

h1 { font-size: var(--text-hero); letter-spacing: -2px; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.5px; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); letter-spacing: 0.5px; }
h5 { font-size: var(--text-lg); letter-spacing: 0.5px; }
h6 { font-size: var(--text-md); letter-spacing: 1px; }

p {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-muted);
}

/* Eyebrow / label style */
.eyebrow {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  flex-shrink: 0;
  background: currentColor;
}

.eyebrow--light {
  color: var(--color-accent);
}

/* Lead / intro text */
.lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ── LAYOUT UTILITIES ─────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

.section--navy      { background: var(--color-navy); }
.section--navy-deep { background: var(--color-navy-deep); }
.section--black     { background: var(--color-black); }
.section--cream     { background: var(--color-cream); }
.section--offwhite  { background: var(--color-offwhite); }
.section--white     { background: var(--color-white); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

/* Text color modifiers */
.text-white   { color: var(--color-white); }
.text-navy    { color: var(--color-navy); }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-muted); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex      { display: flex; }
.flex-col  { display: flex; flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

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


/* ── BUTTONS ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

/* Primary — accent fill */
.btn--primary {
  background: var(--color-accent);
  color: var(--color-navy);
}
.btn--primary:hover {
  background: var(--color-accent-mid);
  transform: translateY(-1px);
}

/* Secondary — navy fill */
.btn--secondary {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--secondary:hover {
  background: var(--color-navy-mid);
  transform: translateY(-1px);
}

/* Ghost on dark backgrounds */
.btn--ghost-dark {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Ghost on light backgrounds */
.btn--ghost-light {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn--ghost-light:hover {
  background: rgba(21, 21, 81, 0.07);
}

/* Size modifiers */
.btn--sm { font-size: var(--text-xs); padding: 8px 16px; }
.btn--lg { font-size: var(--text-md); padding: 16px 34px; }

/* Icon-only */
.btn--icon {
  width: 36px; height: 36px;
  padding: 0;
  justify-content: center;
  border-radius: var(--radius-sm);
}


/* ── BADGES ───────────────────────────────────────────────── */

.badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.badge--home {
  background: rgba(216, 199, 193, 0.12);
  color: var(--color-accent);
  border-color: rgba(216, 199, 193, 0.2);
}

.badge--away {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.08);
}

.badge--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.badge--accent {
  background: var(--color-accent);
  color: var(--color-navy);
}


/* ── SEE-ALL LINK ─────────────────────────────────────────── */

.see-all {
  font-family: var(--font-condensed);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.see-all--dark  { color: var(--color-accent-dark); }
.see-all--dark:hover  { color: var(--color-navy); }

.see-all--light { color: var(--color-accent); }
.see-all--light:hover { color: var(--color-accent-mid); }


/* ── STATS ROW ────────────────────────────────────────────── */

.stats-row {
  background: var(--color-black);
  display: flex;
  border-top: 3px solid var(--color-accent);
}

.stat-block {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-block:last-child { border-right: none; }

.stat-block__number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-block__label {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}


/* ── GAME TICKER ──────────────────────────────────────────── */

.game-ticker {
  background: var(--color-black);
  display: flex;
  align-items: stretch;
  border-top: 2px solid var(--color-accent);
}

.game-ticker__label {
  background: var(--color-accent);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.game-ticker__games { display: flex; flex: 1; overflow: hidden; }

.ticker-game {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-right: 1px solid var(--color-border-dark);
}

.ticker-game:last-child { border-right: none; }

.ticker-game__date {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  white-space: nowrap;
}

.ticker-game__teams {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.ticker-game__info {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  margin-top: 2px;
}


/* ── QUICK NAV TILES ──────────────────────────────────────── */

.sport-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sport-tile {
  background: var(--color-navy);
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.sport-tile:last-child { border-right: none; }

.sport-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.sport-tile:hover { background: var(--color-navy-mid); }
.sport-tile:hover::after { transform: scaleX(1); }

.sport-tile__icon {
  color: var(--color-accent);
  font-size: 24px;
}

.sport-tile__label {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.sport-tile:hover .sport-tile__label { color: var(--color-white); }


/* ── NEWS CARDS ───────────────────────────────────────────── */

/* Featured (large) card */
.news-featured {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition-base);
}

.news-featured:hover { box-shadow: var(--shadow-hover); }

.news-featured__img {
  height: 340px;
  overflow: hidden;
  background: var(--color-navy);
}

.news-featured__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-featured:hover .news-featured__img img { transform: scale(1.03); }

.news-featured__body { padding: 1.75rem; }

/* Small sidebar card */
.news-small {
  background: var(--color-white);
  padding: 16px;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background var(--transition-fast);
  flex: 1;
}

.news-small:hover { background: #faf8f7; }

.news-small__img {
  width: 82px; height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
}

.news-small__img img { width: 100%; height: 100%; object-fit: cover; }

/* Shared news meta */
.news-cat {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 4px;
}

.news-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.news-title--sm { font-size: var(--text-base); }

.news-meta {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* News sidebar stack */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
}

/* Standard news grid layout */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}


/* ── SCHEDULE TABLE ───────────────────────────────────────── */

.sched-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.sched-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sched-table th {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 0 16px 12px;
  text-align: left;
}

.sched-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.sched-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }

.sched-table td { padding: 14px 16px; }

.sched-week {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.sched-date {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 1px;
}

.sched-opp {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-white);
}

.sched-site {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1px;
}

.sched-time {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.sched-cta {
  margin-top: 1.75rem;
  text-align: right;
}

.sched-cta a {
  font-family: var(--font-condensed);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid rgba(216, 199, 193, 0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.sched-cta a:hover {
  background: rgba(216, 199, 193, 0.07);
  border-color: var(--color-accent);
}


/* ── PROGRAM PILLAR CARDS ─────────────────────────────────── */

.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
}

.prog-card {
  background: var(--color-white);
  padding: 2.25rem;
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.prog-card:hover { box-shadow: var(--shadow-card); }

.prog-card + .prog-card { border-left: none; }
.prog-card:nth-child(3),
.prog-card:nth-child(4) { border-top: none; }

.prog-card__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(21, 21, 81, 0.045);
  line-height: 1;
  pointer-events: none;
}

.prog-card__bar {
  width: 32px; height: 3px;
  background: var(--color-accent-mid);
  margin-bottom: 1rem;
}

.prog-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-navy);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.prog-card__text {
  font-size: var(--text-base);
  color: #555;
  line-height: 1.7;
}


/* ── CTA BAND ─────────────────────────────────────────────── */

.cta-band {
  background: var(--color-accent);
  padding: 3rem 2rem;
}

.cta-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band__eyebrow {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(21, 21, 81, 0.5);
  margin-bottom: 0.4rem;
}

.cta-band__heading {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-navy);
  line-height: 1;
}

.cta-band__btns { display: flex; gap: 10px; flex-shrink: 0; }


/* ── FORM ELEMENTS ────────────────────────────────────────── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(21, 21, 81, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-navy);
}

.form-textarea { min-height: 120px; resize: vertical; }


/* ── UTILITY CLASSES ──────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 2rem 0;
}

.divider--dark {
  border-top-color: var(--color-border-dark);
}

/* Accent line decoration */
.accent-line {
  display: block;
  width: 30px; height: 2px;
  background: var(--color-accent);
  margin: 14px 0;
}


/* ── RESPONSIVE BREAKPOINTS ───────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root { --text-hero: 60px; --text-3xl: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .sport-tiles { grid-template-columns: repeat(3, 1fr); }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-card + .prog-card { border-left: 1px solid var(--color-border-light); border-top: none; }
  .prog-card:nth-child(n) { border-top: 1px solid var(--color-border-light); }
  .prog-card:first-child { border-top: none; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --text-hero: 48px;
    --text-3xl: 28px;
    --text-2xl: 24px;
    --section-padding: 3rem 1.25rem;
  }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .sport-tiles { grid-template-columns: repeat(3, 1fr); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .stats-row { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .game-ticker { flex-direction: column; }
  .game-ticker__label { padding: 10px 16px; }
  .ticker-game { border-right: none; border-bottom: 1px solid var(--color-border-dark); }
  .news-layout { grid-template-columns: 1fr; }
  .sched-table th:nth-child(3),
  .sched-table td:nth-child(3) { display: none; }
}


/* ── PROGRAM LINKS FOOTER NAV ─────────────────────────────── */
/* Used on every interior page as the bottom navigation strip. */

.prog-links { background: var(--color-navy-deep); padding: 4rem 3rem; }
.prog-links__inner { max-width: var(--max-width); margin: 0 auto; }
.pl-hdr { margin-bottom: 2rem; }

.pl-eye {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .6rem;
}
.pl-eye::before { content: ''; width: 22px; height: 2px; background: var(--color-accent); display: block; }

.pl-ttl {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--color-white);
}

.link-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
}

.link-tile {
  background: var(--color-navy);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}
.link-tile:hover { background: var(--color-navy-mid); }
.link-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.link-tile:hover::before { transform: scaleX(1); }
.link-tile i { color: var(--color-accent); font-size: 22px; margin-bottom: .25rem; }
.link-tile__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-white);
  line-height: 1.1;
}
.link-tile__sub {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.link-tile__arr {
  margin-top: auto;
  padding-top: .75rem;
  color: var(--color-accent);
  font-size: 14px;
  transition: transform var(--transition-fast);
}
.link-tile:hover .link-tile__arr { transform: translateX(4px); }

@media (max-width: 1024px) { .link-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .link-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .link-row { grid-template-columns: 1fr; } }


/* ── GAMEDAY CTA BAND ─────────────────────────────────────── */

.gameday-band { background: var(--color-accent); padding: 3.5rem 3rem; }
.gameday-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.gb-kicker {
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(21,21,81,.45);
  margin-bottom: .5rem;
}
.gb-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--color-navy);
  line-height: 1;
}
.gb-right { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .gameday-band { padding-left: 2rem; padding-right: 2rem; }
  .gameday-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .gameday-band { padding: 2.5rem 1.5rem; }
}


/* ── SHARED ANIMATION KEYFRAMES ───────────────────────────── */
/* Canonical names for new pages. Legacy per-page variants remain. */

@keyframes kfFadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kfFadeDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kfZoom     { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes kfDotPulse { 0%, 100% { opacity: .3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }
@keyframes kfScanDrift { from { background-position: 0 0; } to { background-position: 0 60px; } }
@keyframes kfShimmer  { from { left: -100%; } to { left: 200%; } }


/* ── SITE FOOTER ───────────────────────────────────────────── */

.site-footer {
  background: var(--color-navy-deep);
  border-top: 3px solid var(--color-accent);
}

.site-footer__top {
  padding: 5rem 3rem;
}

.sf-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

/* ── Brand column ── */
.sf-brand {}

.sf-logo {
  height: 54px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.55));
}

.sf-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.75rem;
  max-width: 230px;
}

.sf-social {
  display: flex;
  gap: 7px;
  margin-bottom: 2rem;
}

.sf-social__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition-fast);
}

.sf-social__icon:hover {
  background: rgba(216,199,193,.12);
  color: var(--color-accent);
  border-color: rgba(216,199,193,.25);
}

.sf-scores {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sf-scores__lbl {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: .5rem;
}

.sf-scores__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  padding: 5px 0;
  transition: var(--transition-fast);
}

.sf-scores__link i {
  font-size: 10px;
  color: var(--color-accent-dark);
  transition: var(--transition-fast);
}

.sf-scores__link:hover {
  color: var(--color-accent);
}

.sf-scores__link:hover i {
  color: var(--color-accent);
}

/* ── Nav columns ── */
.sf-col {}

.sf-col__hd {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(216,199,193,.12);
  margin-bottom: .9rem;
}

.sf-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sf-col ul li {
  border-bottom: none;
}

.sf-col ul a {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.sf-col ul a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.sf-col ul a i {
  font-size: 10px;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.sf-col ul a:hover i {
  color: var(--color-accent);
}

/* ── Contact block inside a column ── */
.sf-col__hd + .sf-contact { margin-top: .9rem; }

.sf-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sf-contact a,
.sf-contact span {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.sf-contact a:hover { color: var(--color-accent); }

.sf-contact i {
  font-size: 13px;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Bottom bar ── */
.site-footer__bottom {
  background: rgba(0,0,0,.38);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.25rem 3rem;
}

.sf-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sf-bottom__copy,
.sf-bottom__right {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.sf-bottom__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sf-bottom__right a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: var(--transition-fast);
}

.sf-bottom__right a:hover { color: var(--color-accent); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sf-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  .sf-brand { grid-column: span 3; display: flex; gap: 3rem; align-items: flex-start; }
  .sf-tagline { max-width: none; flex: 1; }
}

@media (max-width: 768px) {
  .site-footer__top { padding: 3.5rem 1.5rem; }
  .sf-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sf-brand { grid-column: span 2; flex-direction: column; gap: 0; }
  .sf-tagline { max-width: 100%; }
  .site-footer__bottom { padding: 1rem 1.5rem; }
  .sf-bottom { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

@media (max-width: 480px) {
  .sf-inner { grid-template-columns: 1fr; }
  .sf-brand { grid-column: span 1; }
}
@keyframes kfShimmer  { from { left: -100%; } to { left: 200%; } }