:root {
  /* Sampled from official AV Avalanche logo + jersey */
  --navy: #002050;
  --navy-deep: #001536;
  --burgundy: #702040;
  --burgundy-hot: #8e2a52;
  --steel: #6b7280;
  --mountain: #a0a0b0;
  --ice: #f3f5f8;
  --white: #ffffff;
  --ink: #111827;
  --win: #1f7a4d;
  --loss: #702040;
  --tie: #6b5a2e;
  --font-brand: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ice);
  min-height: 100vh;
}

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

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Club-style white header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 32, 80, 0.08);
}

body.nav-open .site-header {
  z-index: 50; /* above backdrop so drawer links are tappable */
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-img {
  width: 3.1rem;
  height: auto;
}

.logo-text {
  display: grid;
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.logo-text em {
  font-family: var(--font-brand);
  font-style: normal;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--burgundy);
}

.topnav .nav-links {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topnav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.topnav a:hover { opacity: 1; }
.topnav a.nav-club { color: var(--burgundy); opacity: 1; }

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(0, 32, 80, 0.18);
  background: #fff;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-bars::after {
  position: absolute;
  top: 6px;
  left: 0;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle-bars {
  background: transparent;
}

body.nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Hero — full-bleed club photo */
.hero {
  position: relative;
  min-height: min(92svh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 21, 54, 0.35) 0%, rgba(0, 21, 54, 0.15) 35%, rgba(0, 21, 54, 0.82) 100%),
    linear-gradient(90deg, rgba(112, 32, 64, 0.35) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  padding: 0 0 3.5rem;
  animation: rise 0.9s ease both;
}

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

.hero-logo {
  width: clamp(5.5rem, 14vw, 8.5rem);
  height: auto;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  animation: logo-in 1s ease both 0.15s;
}

@keyframes logo-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.hero-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.brand {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(4.4rem, 16vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.brand-sub {
  margin: 0.15rem 0 0.85rem;
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.28em;
  color: #f0c9d6;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--burgundy-hot);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.season-switch {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.28);
}

.season-switch .btn { min-width: 6.2rem; }

/* Fear the Yeti marquee — club motif */
.marquee {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--burgundy);
  border-bottom: 3px solid var(--burgundy);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-brand);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.18em;
  white-space: nowrap;
  padding: 0.7rem 0;
}

.marquee-track span { padding-right: 0.5rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
section {
  padding: 4.25rem 0;
  scroll-margin-top: 5.5rem; /* clear sticky header */
}

.section-head { margin-bottom: 1.6rem; }

.section-head h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.section-head p {
  margin: 0.55rem 0 0;
  color: var(--steel);
  max-width: 36rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.season {
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

.record-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 32, 80, 0.12);
  border: 1px solid rgba(0, 32, 80, 0.1);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 21, 54, 0.12);
}

.stat {
  background: #fff;
  padding: 1.35rem 1.1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--navy);
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.stat.accent strong { color: var(--burgundy); }

.empty-note {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(112, 32, 64, 0.08);
  border-left: 3px solid var(--burgundy);
  color: var(--navy);
  line-height: 1.5;
}

.muted {
  color: var(--steel);
  line-height: 1.5;
}

.muted.tiny {
  font-size: 0.8rem;
  margin-top: 0.65rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  border: 1px solid rgba(0, 32, 80, 0.18);
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover,
.chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.leader-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.leader {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  background:
    linear-gradient(145deg, rgba(112, 32, 64, 0.35), transparent 55%),
    linear-gradient(160deg, #001a3d, #002050);
  color: #fff;
}

.leader-rank {
  font-family: var(--font-brand);
  font-size: 2rem;
  color: #f0c9d6;
  line-height: 1;
  min-width: 1.5rem;
}

.leader-name {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.leader-line {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  color: rgba(238, 245, 250, 0.8);
}

.stats-table .name-cell {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
}

.game-list { display: grid; gap: 0.65rem; }

.game {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 32, 80, 0.08);
  transition: background 0.2s ease;
}

.game:hover { background: #fafbfd; }

.game-date {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--steel);
}

.game-date strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.game-matchup { display: grid; gap: 0.2rem; }

.game-matchup .teams {
  font-weight: 700;
  color: var(--navy);
}

.game-matchup .meta {
  font-size: 0.82rem;
  color: var(--steel);
}

.rink-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0, 32, 80, 0.28);
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.rink-link:hover {
  color: var(--burgundy);
  text-decoration-color: var(--burgundy);
}

.latest-game-section .rink-link {
  color: #f0c9d6;
  text-decoration-color: rgba(240, 201, 214, 0.45);
}

.latest-game-section .rink-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.score-pill {
  min-width: 5.2rem;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
}

.score-pill.win { background: var(--win); }
.score-pill.loss { background: var(--loss); }
.score-pill.tie { background: var(--tie); }

.result-tag {
  display: inline-block;
  margin-left: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.playoff-badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  background: rgba(112, 32, 64, 0.12);
  color: var(--burgundy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 32, 80, 0.08);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th, td {
  padding: 0.75rem 0.85rem;
  text-align: center;
  white-space: nowrap;
}

th {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px solid rgba(0, 32, 80, 0.1);
  background: rgba(243, 245, 248, 0.9);
}

td:nth-child(2),
th:nth-child(2) { text-align: left; }

tbody tr:nth-child(even) { background: rgba(243, 245, 248, 0.55); }

tr.us td {
  background: rgba(112, 32, 64, 0.1);
  font-weight: 700;
  color: var(--navy);
}

/* Photo strip from club site */
.photo-break {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0;
  background: var(--navy-deep);
}

.photo-break img {
  width: 100%;
  height: clamp(11rem, 28vw, 18rem);
  object-fit: cover;
  filter: saturate(1.05);
}

.photo-break-wide {
  grid-template-columns: 1.35fr 1fr;
}

.story-section,
.playoffs-section {
  background: #fff;
}

.latest-game-section {
  background: linear-gradient(180deg, #001a3d 0%, #002050 100%);
  color: #fff;
}

.next-game-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #e8eef6 100%);
  padding: 2.5rem 0;
}

.practices-section {
  padding: 2.5rem 0;
  background: #fff;
}

.practices-section .practice-item {
  max-width: 40rem;
}

.next-game-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 32, 80, 0.1);
  padding: 1.35rem 1.4rem;
}

.next-game-main h3 {
  margin: 0.2rem 0 0.5rem;
  font-family: var(--font-brand);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.next-game-main .eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.next-when {
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.next-cal-row {
  margin-top: 1rem;
}

.volunteer-panel {
  background: var(--ice);
  padding: 1rem 1.1rem;
}

.volunteer-panel h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.volunteer-list {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  line-height: 1.45;
}

.volunteer-form {
  display: grid;
  gap: 0.55rem;
}

.volunteer-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.volunteer-form input,
.volunteer-form select {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(0, 32, 80, 0.2);
  background: #fff;
}

.volunteer-form .error {
  color: var(--burgundy);
  font-weight: 700;
  margin: 0;
}

.volunteer-form .ok {
  color: #1f7a4d;
  font-weight: 700;
  margin: 0;
}

.gallery-section {
  padding: 2.75rem 0;
  background: #fff;
}

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

.gallery-item {
  margin: 0;
  background: var(--ice);
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  color: var(--steel);
}

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

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.latest-game-section .section-head h2 {
  color: #fff;
}

.latest-game-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.highlight {
  padding: 1.4rem 1.2rem;
  background:
    linear-gradient(160deg, rgba(112, 32, 64, 0.28), transparent 50%),
    linear-gradient(160deg, #001a3d, #002050);
  color: #fff;
  min-height: 10rem;
}

.highlight h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-brand);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: #f0c9d6;
}

.highlight p {
  margin: 0;
  color: rgba(238, 245, 250, 0.86);
  line-height: 1.5;
  font-size: 0.95rem;
}

.club-cta {
  background:
    linear-gradient(120deg, rgba(0, 21, 54, 0.72), rgba(112, 32, 64, 0.55)),
    url("../img/hero-1.jpg") center/cover;
  color: #fff;
  padding: 4rem 0;
}

.club-cta-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.club-cta h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}

.club-cta p {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
}

.sources {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.2rem 0;
}

.sources .section-head h2 { color: #fff; }
.sources .section-head p { color: rgba(255, 255, 255, 0.72); }
.sources a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  padding: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  background: #000d1f;
}

.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-inner a { color: #fff; }

.footer-social {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  opacity: 1;
}

.social-icon {
  flex-shrink: 0;
}

.social-icon.ig {
  color: #f0c9d6;
}

.social-link:hover .social-icon.ig {
  color: #fff;
}

.social-icon.linktree {
  color: #43e55e;
}

.social-link:hover .social-icon.linktree {
  color: #6bff84;
}

/* Club hub team grid */
.teams-section { padding-top: 3.5rem; }

.weekend-section {
  padding-top: 3rem;
  background: #fff;
}

.weekend-digest {
  display: grid;
  gap: 0.55rem;
}

.weekend-row {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.05rem;
  text-decoration: none;
  color: inherit;
  background: var(--ice);
  border-left: 4px solid var(--navy);
  transition: transform 0.2s ease, background 0.2s ease;
}

.weekend-row:hover {
  transform: translateY(-2px);
  background: #fff;
}

.weekend-when {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.35;
}

.weekend-when strong {
  display: block;
  color: var(--navy);
}

.weekend-team {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.weekend-score {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  min-width: 3.5rem;
  text-align: right;
}

.tournaments-section {
  background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
}

.tournament-list {
  display: grid;
  gap: 0.85rem;
}

.tournament-card {
  background: #fff;
  border: 1px solid rgba(0, 32, 80, 0.1);
  padding: 1.2rem 1.25rem;
}

.tournament-card.featured {
  border-left: 4px solid var(--burgundy);
}

.tournament-card h3 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--font-brand);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.tournament-card p {
  margin: 0.65rem 0;
  color: var(--ink);
  line-height: 1.5;
}

.tournament-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.club-info-section { background: #fff; }

.club-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.subhead {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1.2rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.info-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  text-decoration: none;
  color: inherit;
  background: var(--ice);
  border-top: 3px solid var(--navy);
  transition: transform 0.2s ease;
}

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

.info-card-title {
  font-family: var(--font-brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1.15rem;
}

.info-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.4;
}

.info-card-cta {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.announce-list,
.practice-list {
  display: grid;
  gap: 0.65rem;
}

.announce-item,
.practice-item {
  padding: 0.9rem 1rem;
  background: var(--ice);
}

.announce-item h4 {
  margin: 0.15rem 0 0.35rem;
  color: var(--navy);
}

.announce-item p,
.practice-item p {
  margin: 0.35rem 0 0;
  color: var(--ink);
  line-height: 1.45;
}

.announce-date {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
}

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

.team-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 32, 80, 0.1);
  border-left: 4px solid var(--burgundy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 21, 54, 0.12);
  border-left-color: var(--navy);
}

.team-card-div {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.team-card-name {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

.team-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.team-card-foot {
  font-size: 0.8rem;
  color: var(--steel);
}

.back-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.back-link:hover { color: #fff; }

.brand-team {
  font-size: clamp(3.4rem, 12vw, 6.5rem);
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .topnav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(18.5rem, 86vw);
    height: 100dvh;
    height: 100vh;
    background: #fff;
    border-left: 1px solid rgba(0, 32, 80, 0.1);
    box-shadow: -18px 0 40px rgba(0, 21, 54, 0.18);
    padding: 5rem 1.25rem 2rem;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    z-index: 45;
    overflow-y: auto;
  }

  body.nav-open .topnav {
    transform: translateX(0);
  }

  .topnav .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .topnav a {
    display: block;
    padding: 0.95rem 0.75rem;
    font-size: 0.95rem;
    min-height: 3rem;
    border-radius: 4px;
    opacity: 1;
    color: var(--navy);
  }

  .topnav a:hover,
  .topnav a:focus-visible {
    background: rgba(0, 32, 80, 0.06);
    opacity: 1;
  }

  .topnav a.nav-club {
    color: var(--burgundy);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 21, 54, 0.45);
    z-index: 42;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .nav-backdrop[hidden] { display: none; }

  .logo-text { display: none; }

  .site-header-inner { min-height: 3.75rem; }

  .hero {
    min-height: min(78svh, 640px);
    align-items: end;
  }

  .hero-content {
    padding-bottom: 1.75rem;
    padding-top: 5.5rem;
  }

  .hero-logo {
    width: 5.5rem;
    margin-bottom: 0.65rem;
  }

  .brand {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .brand-sub {
    letter-spacing: 0.18em;
    font-size: 1.25rem;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.1rem;
  }

  .cta-row {
    gap: 0.55rem;
  }

  .btn {
    min-height: 2.85rem;
    padding: 0.75rem 1.05rem;
    font-size: 0.82rem;
  }

  .season-switch {
    width: 100%;
    justify-content: stretch;
  }

  .season-switch .btn {
    flex: 1;
    min-width: 0;
  }

  section { padding: 2.75rem 0; }

  .section-head h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .record-strip { grid-template-columns: repeat(2, 1fr); }

  .stat {
    padding: 1.1rem 0.75rem;
  }

  .chip {
    min-height: 2.6rem;
    padding: 0.55rem 0.9rem;
  }

  .filters {
    gap: 0.45rem;
  }

  .highlights,
  .leader-strip,
  .team-grid,
  .link-grid,
  .club-info-grid { grid-template-columns: 1fr; }

  .weekend-section { padding-top: 2.25rem; }

  .weekend-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1rem 0.95rem;
    min-height: 4.5rem;
  }

  .weekend-score { text-align: left; font-size: 1.35rem; }

  .team-card {
    padding: 1.1rem 1rem;
    min-height: 5.5rem;
  }

  .tournament-top { flex-direction: column; }

  .photo-break,
  .photo-break-wide { grid-template-columns: 1fr; }

  .photo-break img { height: 12rem; }

  .game {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1rem 0.95rem;
  }

  .score-pill {
    justify-self: start;
    min-width: 4.8rem;
    font-size: 1.4rem;
    padding: 0.45rem 0.7rem;
  }

  .club-cta-inner { flex-direction: column; align-items: flex-start; }

  .footer-social {
    gap: 0.75rem 1rem;
  }

  .social-link {
    min-height: 2.75rem;
  }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 1.35rem, var(--max)); }

  .hero-kicker { font-size: 0.7rem; letter-spacing: 0.14em; }

  .marquee-track {
    font-size: 0.92rem;
    padding: 0.55rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
