/* =========================================================
   Eastside Hoops – Redesign v4
   Inspired by Sheffield Sharks (dark navy + electric yellow)
   Fonts: Oswald (brand/headings) + Inter (body)
   ========================================================= */

/* ---------- Theme Tokens ---------- */
:root {
  --bg: #0a0e2a;
  --bg-light: #111640;
  --panel: #141a4a;
  --alt: #0d1235;
  --text: #eef0f8;
  --muted: #8e93b0;
  --primary: #14194b;
  --yellow: #fde900;
  --yellow-hover: #e6d400;
  --accent: #1e2560;
  --radius: 12px;
  --gap: 1rem;
  --container: 1200px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color .15s; }
a:hover { color: var(--yellow-hover); }

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

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto;
  background: var(--yellow); color: var(--primary);
  padding: .5rem .75rem; border-radius: 6px;
  z-index: 999; font-weight: 700;
}

/* ---------- Back to Gill Media ---------- */
.gm-back-bar {
  background: #060a25;
  border-bottom: 1px solid rgba(253,233,0,0.15);
  padding: 8px 20px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}
.back-link:hover { color: #fde900; }
@media (max-width: 720px) {
  .gm-back-bar { padding: 7px 14px; }
  .back-link { font-size: 12px; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: Oswald, Montserrat, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 .6rem 0;
}
h1 { font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
h2 { font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-weight: 600; font-size: 1.15rem; }
h4 { font-weight: 500; font-size: 1rem; }

p { margin: 0 0 .8rem 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary);
  border-bottom: 3px solid var(--yellow);
  transition: transform .3s ease;
}
.site-header.hide { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; }
.brand span {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-socials {
  display: flex;
  gap: .6rem;
  align-items: center;
}
.header-socials a {
  color: var(--muted);
  font-size: .85rem;
  transition: color .15s;
}
.header-socials a:hover { color: var(--yellow); }

.nav { display: flex; gap: .25rem; align-items: center; }
.nav a {
  padding: .5rem .7rem;
  border-radius: 6px;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .15s, color .15s;
}
.nav a:hover { background: rgba(253, 233, 0, .12); color: var(--yellow); }
.nav a.active { color: var(--yellow); }

.nav a.join-btn {
  background: var(--yellow);
  color: var(--primary);
  font-weight: 700;
  border-radius: 6px;
  padding: .5rem 1.1rem;
  margin-left: .4rem;
}
.nav a.join-btn:hover { background: var(--yellow-hover); color: var(--primary); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: .4rem .7rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: Oswald, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  background: url('assets/images/basketball-bg.png') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 25, 75, .92) 0%, rgba(10, 14, 42, .8) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}
.hero-logo {
  max-width: 442px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}
.hero-text { max-width: 600px; }
.hero-text h1 { margin-bottom: .8rem; }
.hero-text .accent { color: var(--yellow); }
.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ---------- Stat Bar ---------- */
.stat-bar {
  background: var(--yellow);
  color: var(--primary);
  padding: 1rem 0;
}
.stat-bar .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  font-family: Oswald, sans-serif;
}
.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .65rem 1.3rem;
  border-radius: 6px;
  border: 2px solid var(--accent);
  background: var(--panel);
  color: #fff;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
}
.btn:hover { background: var(--accent); color: #fff; border-color: var(--yellow); }
.btn:active { transform: translateY(1px); }

.btn.primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--primary);
  font-weight: 700;
}
.btn.primary:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); color: var(--primary); }

.btn.outline {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn.outline:hover { background: var(--yellow); color: var(--primary); }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section.alt { background: var(--alt); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 { margin-bottom: .4rem; }
.section-header p { color: var(--muted); max-width: 600px; margin-inline: auto; }

/* Yellow underline accent for section titles */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: .6rem auto 0;
}

/* ---------- Programme Cards ---------- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.programme-card {
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.programme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}
.programme-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.programme-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.programme-card h3 {
  color: var(--yellow);
  margin-bottom: .6rem;
  font-size: 1.3rem;
}
.programme-card p {
  flex: 1;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.programme-card .btn { align-self: center; }

/* ---------- Grid Layouts ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

/* ---------- Card ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: border-color .2s;
}
.card:hover { border-color: rgba(253, 233, 0, .3); }

/* ---------- Session Cards ---------- */
.session-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.session-card .session-day {
  background: var(--yellow);
  color: var(--primary);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: .2rem;
}
.session-card h3 { margin-bottom: .2rem; }
.session-card .session-time {
  color: var(--yellow);
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: .95rem;
}
.session-card p { color: var(--muted); font-size: .9rem; margin: .3rem 0 0; }

/* ---------- Fixture Cards (Sharks-style) ---------- */
.compact-grid { grid-template-columns: 1.5fr 1fr; }

.fixture-sidebar {
  position: sticky;
  top: 90px;
}
.fixture-sidebar h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.fixture-sidebar h3 { font-size: 1rem; margin: 1.5rem 0 .8rem; color: var(--muted); }

.fixture-list { list-style: none; margin: 0; padding: 0; }
.fixture-list li {
  padding: .75rem 0;
  border-bottom: 1px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.fixture-list li:last-child { border-bottom: 0; }
.fixture-list .fx-date {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fixture-list .fx-row { font-size: .95rem; }
.fixture-list .fx-row strong { color: #fff; }
.fixture-list .fx-meta {
  font-size: .8rem;
  color: var(--muted);
}
.fixture-list .fx-result {
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .8rem;
}
.fx-result.win { background: #1a7a3a; color: #fff; }
.fx-result.loss { background: #8a2020; color: #fff; }

/* Home/Away badge */
.venue-badge {
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .15rem .4rem;
  border-radius: 3px;
  margin-left: .4rem;
}
.venue-badge.home { background: var(--yellow); color: var(--primary); }
.venue-badge.away { background: var(--accent); color: var(--muted); }

/* ---------- Coach Section ---------- */
.coach-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  border-left: 4px solid var(--yellow);
}
.coach-card .coach-info h2 { color: var(--yellow); }
.coach-card .coach-role {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .5px;
}
.coaching-staff {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.staff-card {
  background: var(--bg-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.staff-card h4 { margin-bottom: .2rem; }
.staff-card p { color: var(--muted); font-size: .85rem; margin: 0; }

/* ---------- News Cards ---------- */
.news-card {
  position: relative;
  overflow: hidden;
}
.news-card .tag {
  position: absolute;
  top: .8rem;
  right: .8rem;
}
.news-card h3 { margin-bottom: .4rem; }
.news-card p { color: var(--muted); font-size: .9rem; }
.news-card .news-date {
  font-family: Oswald, sans-serif;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.news-card .read-more {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .5px;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .5rem;
}

/* ---------- Tags / Badges ---------- */
.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--primary);
  border-radius: 4px;
  padding: .2rem .5rem;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.contact-item .contact-icon {
  font-size: 1.2rem;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: .15rem;
}
.contact-item strong {
  display: block;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .5px;
  margin-bottom: .15rem;
}
.social-links {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 6px;
  color: var(--text);
  font-size: .9rem;
  transition: background .15s, color .15s;
}
.social-links a:hover { background: var(--yellow); color: var(--primary); }

/* ---------- Get Involved Form ---------- */
.gi-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.gi-logo {
  max-width: 120px;
  border-radius: 8px;
  flex-shrink: 0;
}
.gi-hero h1 { color: var(--yellow); }

.gi-form { margin-top: 1.5rem; }
.gi-form label {
  display: grid;
  gap: .35rem;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.gi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.gi-form input,
.gi-form select,
.gi-form textarea {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: .65rem .85rem;
  width: 100%;
  resize: vertical;
  font-family: Inter, sans-serif;
  font-size: .95rem;
  transition: border-color .15s, box-shadow .15s;
}
.gi-form input:focus,
.gi-form select:focus,
.gi-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253, 233, 0, .2);
}
.gi-actions {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 6px;
  padding: .8rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 100;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: .5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--yellow);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: .5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: .4rem;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  border: 3px solid var(--bg);
}
.timeline-item h3 {
  color: var(--yellow);
  margin-bottom: .3rem;
  font-size: 1.2rem;
}
.timeline-item p { color: var(--muted); }
.timeline-year {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--primary);
  background: var(--yellow);
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 4px;
  margin-bottom: .4rem;
}

/* ---------- Footer (Sharks-style multi-column) ---------- */
.site-footer {
  background: #060920;
  border-top: 3px solid var(--yellow);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: var(--yellow);
  font-size: .9rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  color: var(--muted);
  font-size: .9rem;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--accent);
  padding-top: 1.2rem;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}

/* ---------- Standings Tables ---------- */
.standings-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.filter-select {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: .5rem .8rem;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  cursor: pointer;
}
.filter-select:focus {
  outline: none;
  border-color: var(--yellow);
}
.data-source {
  font-style: italic;
}

.league-table-wrap {
  margin-bottom: 2.5rem;
}
.league-title {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: .8rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--accent);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 500px;
}
.standings-table th {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .8rem;
  color: var(--muted);
  padding: .6rem .5rem;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}
.standings-table td {
  padding: .65rem .5rem;
  text-align: center;
  border-bottom: 1px solid var(--accent);
  color: var(--text);
}
.standings-table .team-col {
  text-align: left;
  min-width: 160px;
}
.standings-table th.team-col { text-align: left; }
.standings-table .pos-col { width: 36px; }
.standings-table .pts-col {
  color: var(--yellow);
  font-family: Oswald, sans-serif;
  font-size: 1rem;
}
.standings-table th.pts-col { color: var(--yellow); }

.standings-table .vikings-row {
  background: rgba(253, 233, 0, .08);
}
.standings-table .vikings-row td {
  border-bottom-color: rgba(253, 233, 0, .2);
}

.pd-pos { color: #4ade80; }
.pd-neg { color: #f87171; }

/* ---------- Results List ---------- */
.results-controls {
  margin-bottom: 1.5rem;
}
.results-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.result-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: .8rem 1rem;
  transition: border-color .15s;
}
.result-row:hover { border-color: rgba(253, 233, 0, .3); }
.result-date {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.result-teams {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.result-vs {
  color: var(--muted);
  font-size: .85rem;
}
.result-score {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.score-badge {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .2rem .5rem;
  border-radius: 4px;
  background: var(--accent);
}
.score-badge.win { background: rgba(26, 122, 58, .2); color: #4ade80; }
.score-badge.loss { background: rgba(138, 32, 32, .2); color: #f87171; }
.score-badge.draw { background: rgba(253, 233, 0, .15); color: var(--yellow); }
.fx-result.draw { background: #6b6b00; color: #fff; }

/* ---------- Utilities ---------- */
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }

/* ---------- Responsive (≤ 850px) ---------- */
@media (max-width: 850px) {
  .grid-2, .grid-3, .compact-grid { grid-template-columns: 1fr; }
  .programme-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .fixture-sidebar { position: static; top: auto; margin-top: 1.5rem; }
  .stat-bar .container { gap: 1.5rem; }

  .hero-section { min-height: auto; }
  .hero-content { flex-direction: column; text-align: center; padding: 3rem 0; gap: 1.5rem; }
  .hero-logo { margin-inline: auto; max-width: 286px; }
  .hero-text { text-align: center; }
  .cta-row { justify-content: center; }

  .coach-card { flex-direction: column; }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 1rem;
    top: 65px;
    background: var(--primary);
    border: 2px solid var(--yellow);
    border-radius: 8px;
    padding: .5rem;
    width: min(280px, 90vw);
  }
  .nav a { padding: .65rem .8rem; }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 1.1rem; }

  .gi-hero { flex-direction: column; text-align: center; }
  .gi-logo { margin-inline: auto; }

  .result-row { grid-template-columns: 1fr; gap: .4rem; }
  .standings-controls { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-bar .container { gap: 1rem; }
  .stat-item .stat-number { font-size: 1.5rem; }
}
