:root {
  --gold: #f1b300;
  --gold-dark: #c99400;
  --black: #0a0a0a;
  --charcoal: #151515;
  --gray-900: #202020;
  --gray-700: #4a4a4a;
  --gray-200: #ededed;
  --gray-100: #f7f7f7;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: .7rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; }

[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header {
  position: relative;
  background: var(--gold);
  border-bottom: 1px solid rgba(0,0,0,.22);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  align-self: stretch;
  padding: .45rem 1.1rem;
  background: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand small { display: block; color: var(--gray-700); font-size: .75rem; letter-spacing: .08em; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-weight: 800;
  text-transform: none;
  font-size: .9rem;
  align-self: stretch;
}
.primary-nav > a,
.primary-nav button {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: .85rem .75rem;
  font: inherit;
  cursor: pointer;
}
.primary-nav > a:hover,
.primary-nav button:hover { background: var(--gray-100); }
.nav-cta {
  background: var(--white) !important;
  color: var(--black);
  border-radius: 999px;
  margin-left: .25rem;
  align-self: center;
}
.has-menu {
  position: relative;
  display: flex;
  align-items: stretch;
}
.has-menu.full-menu { position: static; }
.has-menu > button {
  min-height: 72px;
}
.has-menu.full-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 1;
}
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  z-index: 2;
  padding: 1.6rem clamp(1rem, 4vw, 4rem);
  background: var(--gray-100);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
}
.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu { display: block; }
.mega-menu a { color: inherit; }
.mega-menu a:hover { color: var(--black); }
.mega-menu small { display: block; opacity: .75; text-transform: none; font-weight: 400; }
.nav-toggle { display: none; }

.hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.72), rgba(0,0,0,.22)),
    radial-gradient(circle at 80% 10%, rgba(241,179,0,.55), transparent 30%),
    var(--black);
  color: var(--white);
  min-height: 560px;
  display: grid;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  padding: 5rem 0;
}
.eyebrow {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
  font-size: .82rem;
}
.hero h1 {
  margin: .7rem 0;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.hero p { max-width: 660px; font-size: 1.15rem; color: #ececec; }
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1rem;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
}
.btn.gold { background: var(--gold); color: var(--black); }
.btn.light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn.ghost { background: transparent; color: var(--white); border-color: var(--white); }

.hero-panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
}
.hero-panel h2 { margin-top: 0; color: var(--gold); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}
.stat {
  background: rgba(255,255,255,.08);
  padding: 1rem;
  border-radius: 12px;
}
.stat strong { display: block; font-size: 1.8rem; color: var(--gold); }

.section { padding: 4.5rem 0; }
.section.alt { background: var(--gray-100); }
.section.dark { background: var(--black); color: var(--white); }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.section:has([data-schedule-heading]) .section-header .eyebrow,
.section:has([data-roster-heading]) .section-header .eyebrow,
.section:has([data-stats-heading]) .section-header .eyebrow {
  display: none;
}
.section-header h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2.7rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.05em;
}
.section-header p { max-width: 600px; margin: .4rem 0 0; color: var(--gray-700); }
.dark .section-header p { color: #d6d6d6; }

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 1rem;
}
.story-card,
.event-card,
.info-card,
.roster-card,
.staff-card {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid #e1e1e1;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.story-card.featured {
  min-height: 280px;
  background: linear-gradient(135deg, var(--black), #2b2b2b);
  color: var(--white);
  border-bottom: 5px solid var(--gold);
}
.story-card span {
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
}
.story-card.featured span { color: var(--gold); }
.story-card h3 { font-size: 1.45rem; line-height: 1.1; }

.event-list {
  display: grid;
  gap: .8rem;
}
.event-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 1rem;
}
.event-date {
  display: grid;
  place-items: center;
  min-height: 76px;
  background: var(--black);
  color: var(--gold);
  font-weight: 900;
  text-align: center;
  border-radius: 12px;
}
.event-card h3 { margin: 0; }
.event-card p { margin: .2rem 0 0; color: var(--gray-700); }

.video-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 2rem;
}
.video-feature h2 {
  margin: .45rem 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.video-feature p {
  max-width: 520px;
  color: var(--gray-700);
  font-size: 1.05rem;
}
.video-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  justify-self: center;
  width: min(100%, 390px);
  overflow: hidden;
  border: 6px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.team-tile {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.9)),
    var(--gray-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.12);
}
.team-tile-logo {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team-tile-logo img {
  max-width: 136px;
  max-height: 88px;
  object-fit: contain;
}
.team-tile-logo img[src$=".png"] {
  opacity: 1;
}
.team-tile-logo img {
  color: transparent;
}
.team-tile:hover {
  transform: translateY(-3px);
  outline: 3px solid var(--gold);
}
.team-tile h3 {
  color: var(--gold);
  font-weight: 900;
  margin: .3rem 0;
  line-height: 1.05;
}
.team-tile p { margin: 0; opacity: .8; }

.team-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.team-directory-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid #ddd;
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.team-directory-short {
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
}
.team-directory-card h3 {
  margin: .25rem 0;
  font-size: 1.45rem;
  line-height: 1.05;
}
.team-directory-card p {
  margin: 0;
  color: var(--gray-700);
  font-weight: 800;
}
.team-directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: auto;
}
.team-directory-actions .btn {
  min-height: 40px;
  padding: .55rem .8rem;
  font-size: .78rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.job-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.job-card h3 {
  padding-bottom: .7rem;
  border-bottom: 3px solid var(--gold);
}
.info-card h3 { margin-top: 0; }
.info-card p { color: var(--gray-700); }
.info-card .btn {
  margin-top: .7rem;
}
.job-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-hero {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 72px;
  z-index: 45;
  padding: 1rem 0 .8rem;
  border-bottom: 0;
}
.page-hero[data-team-page] .eyebrow {
  display: none;
}
.page-title p { max-width: 760px; color: #ddd; font-size: 1.1rem; }
.page-hero[data-team-page] .page-title {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}
.page-hero[data-team-page] .page-title h1 {
  grid-column: 1;
  font-size: clamp(1.15rem, 2vw, 2rem);
  color: var(--gold);
}
.page-hero[data-team-page] .page-title p {
  grid-column: 1;
  margin: .45rem 0 0;
}
.page-title .team-social-icons {
  display: inline-flex;
  vertical-align: middle;
  gap: .4rem;
}
.page-title .social-link {
  width: 31px;
  height: 31px;
}
.team-subnav {
  background: transparent;
  color: var(--white);
  position: sticky;
  top: 72px;
  z-index: 46;
  margin-top: -70px;
  pointer-events: none;
}
.team-subnav .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.6rem;
  overflow-x: auto;
  min-height: 70px;
  align-items: center;
  pointer-events: none;
}
.team-subnav a {
  padding: 1rem .2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  pointer-events: auto;
  color: var(--gold);
}
.team-subnav a:hover {
  color: var(--white);
}
.team-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.2rem;
}
.team-facts-section {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.team-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.team-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: 2rem;
  padding-bottom: 0;
}
.roster-grid,
.roster-list,
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.roster-grid,
.roster-list {
  grid-template-columns: 1fr;
  gap: .15rem;
}
.staff-grid {
  grid-template-columns: repeat(4, 1fr);
}
.staff-role-section + .staff-role-section {
  padding-top: 4.5rem;
}
.staff-role-section .section-header {
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
}
.roster-header {
  align-items: center;
}
.season-control {
  display: grid;
  gap: .35rem;
  min-width: min(100%, 320px);
  color: var(--gray-700);
  font-weight: 900;
}
.season-control span {
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--gray-700);
}
.season-control select {
  min-height: 46px;
  padding: .7rem .9rem;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  font-weight: 800;
}
.roster-card .avatar,
.staff-card .avatar {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b2b2b, #111);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: .9rem;
}
.roster-row {
  display: grid;
  grid-template-columns: 92px minmax(220px, .85fr) minmax(260px, 1fr);
  align-items: center;
  gap: 1.8rem;
  min-height: 128px;
  padding: 1rem 1.2rem;
  background: #f5f5f5;
  border-bottom: 1px solid var(--white);
}
.roster-row:nth-child(even) {
  background: #ebebeb;
}
.roster-row-media {
  width: 82px;
  height: 104px;
}
.roster-row .avatar {
  width: 82px;
  height: 104px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2b2b2b, #111);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
}
.roster-photo {
  width: 82px;
  height: 104px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  background: var(--gray-200);
}
.roster-row h3 {
  margin: 0;
  line-height: 1.15;
  color: var(--gray-700);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.roster-row-details p {
  margin: .2rem 0;
  color: var(--black);
}
.roster-row-details strong {
  font-style: italic;
}
.roster-row-socials {
  min-height: 24px;
  margin-top: .7rem;
}
.roster-instagram {
  display: inline-flex;
  width: 22px;
  height: 22px;
  overflow: hidden;
  color: transparent;
  background: url("../img/social-icons/instagram.png") center / contain no-repeat;
}
.player-tag {
  display: inline;
  margin-top: 0;
  color: var(--gold-dark);
  font-weight: 900;
}
.roster-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: .55rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
}
.roster-row-meta {
  margin-top: .55rem;
}
.roster-empty {
  grid-column: 1 / -1;
}
.player-hero {
  background: var(--gray-100);
  border-bottom: 5px solid var(--gold);
}
.player-hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem 0 1.5rem;
}
.player-headshot {
  width: 220px;
  min-height: 260px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid #ddd;
  padding: .5rem;
}
.player-headshot img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center top;
}
.player-headshot .avatar {
  width: 100%;
  height: 245px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}
.player-hero h1 {
  margin: .2rem 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}
.player-hero p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.2rem;
  font-weight: 900;
}
.player-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.player-stat-table-wrap {
  overflow-x: auto;
}
.player-stat-table th {
  white-space: nowrap;
}
.player-stat-table td {
  white-space: nowrap;
  font-weight: 800;
}
.player-stat-table tbody tr:nth-child(even) {
  background: var(--gray-100);
}
.staff-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  background: var(--gray-200);
  margin-bottom: .9rem;
}
.staff-card {
  padding: 1rem;
}
.staff-card h3 {
  margin: 0;
  line-height: 1.15;
}
.staff-tag {
  display: block;
  margin-top: .25rem;
  color: var(--gold-dark);
  font-weight: 900;
}
.staff-card p {
  margin: .35rem 0 0;
  color: var(--gray-700);
  font-weight: 800;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-radius: var(--radius);
}
.table-wrap[data-schedule-page] {
  overflow: visible;
  border: 0;
  border-radius: 0;
}
.schedule-record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d9d9d9;
  background: var(--white);
  margin-bottom: 1rem;
}
.schedule-record-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: .25rem;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #d9d9d9;
}
.schedule-record-card:last-child {
  border-right: 0;
}
.schedule-record-card span {
  color: var(--gray-700);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.schedule-record-card strong {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .95;
}
.schedule-list {
  display: grid;
  gap: .15rem;
}
.schedule-row {
  display: grid;
  grid-template-columns: minmax(360px, 1.4fr) minmax(210px, .8fr) minmax(180px, .55fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 104px;
  padding: 1rem;
  background: #f1f1f1;
  border-bottom: 1px solid var(--white);
}
.schedule-row:nth-child(even) {
  background: #e7e7e7;
}
.schedule-match-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.schedule-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.schedule-logo-fallback {
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-weight: 900;
}
.schedule-date {
  margin: 0 0 .35rem;
  color: var(--black);
  font-size: .9rem;
  font-weight: 900;
}
.schedule-match-main h3 {
  margin: 0;
  color: var(--gray-700);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.05;
}
.schedule-match-main h3 span {
  display: inline-flex;
  margin-right: .35rem;
  padding: .15rem .3rem;
  background: var(--gold);
  color: var(--black);
  font-size: .75rem;
  line-height: 1;
  text-transform: lowercase;
}
.schedule-match-main p:last-child,
.schedule-match-meta p {
  margin: .35rem 0 0;
  color: var(--gray-700);
  font-weight: 800;
}
.schedule-match-meta strong {
  display: block;
  margin-top: .4rem;
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}
.schedule-match-result {
  display: grid;
  justify-items: start;
  gap: .55rem;
}
.schedule-result {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
}
.schedule-result.w {
  background: transparent;
}
.schedule-result.l {
  background: transparent;
  color: var(--black);
}
.schedule-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
}
.schedule-links a {
  color: var(--black);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.schedule-links a::before {
  content: ">";
  margin-right: .25rem;
  color: var(--black);
  font-weight: 900;
}
.schedule-empty {
  border: 0;
  box-shadow: none;
}
.schedule-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: var(--white);
}
.stat-card span {
  display: block;
  color: var(--gray-700);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.stat-card strong {
  display: block;
  margin-top: .35rem;
  color: var(--black);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
th, td {
  text-align: left;
  padding: .9rem;
  border-bottom: 1px solid #e5e5e5;
}
th {
  background: var(--black);
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-grid a {
  display: block;
  color: #ddd;
  margin: .35rem 0;
}
.footer-grid a:hover { color: var(--gold); }
.site-social-icons {
  margin-top: .55rem;
  gap: .7rem;
}
.site-social-icons .social-link {
  width: 48px;
  height: 48px;
}
.site-social-icons .social-link img {
  width: 100%;
  height: 100%;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 2rem;
  padding-top: 1rem;
  color: #aaa;
}

@media (max-width: 900px) {
  .hide-sm { display: none; }
  .nav-toggle {
    display: inline-flex;
    padding: .6rem .8rem;
    background: var(--black);
    color: var(--white);
    border: 0;
    font-weight: 900;
    text-transform: uppercase;
  }
  .primary-nav {
    display: none;
    position: absolute;
    inset: 72px 0 auto 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 3px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:hover,
  .primary-nav button:hover {
    background: var(--gray-100);
  }
  .page-hero[data-team-page] .page-title {
    grid-template-columns: 1fr;
  }
  .page-hero {
    position: static;
  }
  .team-subnav {
    background: var(--black);
    position: static;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .team-subnav .container {
    justify-content: flex-start;
    min-height: auto;
    pointer-events: auto;
  }
  .team-subnav a {
    padding: .8rem .1rem;
  }
  .has-menu { width: 100%; }
  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    display: grid;
    box-shadow: none;
  }
  .hero-inner,
  .team-layout,
  .schedule-row,
  .video-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .schedule-row {
    align-items: start;
    gap: 1rem;
  }
  .schedule-match-result {
    justify-items: start;
  }
  .roster-row {
    grid-template-columns: 82px 1fr;
    gap: 1rem;
  }
  .roster-row-details {
    grid-column: 2;
  }
  .story-grid,
  .team-grid,
  .team-directory-grid,
  .quick-grid,
  .jobs-grid,
  .roster-grid,
  .roster-list,
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .story-grid,
  .team-grid,
  .team-directory-grid,
  .quick-grid,
  .jobs-grid,
  .roster-grid,
  .roster-list,
  .staff-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .event-card { grid-template-columns: 1fr; }
  .team-facts-grid,
  .schedule-record-grid {
    grid-template-columns: 1fr;
  }
  .schedule-record-card {
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .schedule-record-card:last-child {
    border-bottom: 0;
  }
  .schedule-match-main {
    align-items: start;
  }
  .schedule-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .roster-row {
    grid-template-columns: 1fr;
  }
  .roster-row-media,
  .roster-row-details {
    grid-column: auto;
  }
  .roster-row-media,
  .roster-row .avatar,
  .roster-photo {
    width: 96px;
    height: 122px;
  }
  .player-hero-grid {
    grid-template-columns: 1fr;
  }
  .player-headshot {
    width: 180px;
    min-height: 220px;
  }
  .player-headshot img,
  .player-headshot .avatar {
    height: 205px;
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 3.5rem 0; }
}

.sports-menu-grid,
.inside-menu-grid {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}
.sports-menu-grid { grid-template-columns: 1fr 1fr; }
.inside-menu-grid { grid-template-columns: repeat(3, 1fr); }
.sports-menu h2,
.inside-menu h2 {
  margin: 0 0 .45rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid #d7d7d7;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-900);
}
.sports-row,
.inside-row {
  min-height: 48px;
  border-bottom: 1px solid #d7d7d7;
}
.sports-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 1rem;
}
.sports-name,
.inside-row {
  font-weight: 900;
  text-transform: none;
}
.inside-row {
  display: flex;
  align-items: center;
  padding: .75rem 1.5rem .75rem 0;
}
.sports-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: .9rem;
  color: var(--gray-700);
  font-weight: 700;
  text-transform: none;
}
.sports-actions a { white-space: nowrap; }
.team-social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.team-social-facts {
  display: grid;
  gap: .45rem;
  margin: 1rem 0;
}
.social-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 900;
  box-shadow: none;
  transition: transform .16s ease, filter .16s ease;
}
.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.social-link.compact {
  width: 36px;
  height: 36px;
}
.social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.all-teams-row { background: rgba(241,179,0,.12); padding-inline: .75rem; }

@media (max-width: 900px) {
  .mega-menu {
    position: static;
    width: 100%;
    padding: 1rem;
    box-shadow: none;
  }
  .sports-menu-grid,
  .inside-menu-grid {
    grid-template-columns: 1fr;
  }
  .sports-row {
    grid-template-columns: 1fr;
    gap: .4rem;
    padding: .75rem 0;
  }
  .sports-actions {
    justify-content: start;
    flex-wrap: wrap;
  }
}
