/* ============================================================
   U22 Outlook Ice Hawks — styles
   Clean & classic. Palette pulled from the team logo.
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --gold: #f2a81c;
  --gold-bright: #ffc043;
  --charcoal: #2b2e35;
  --charcoal-deep: #20232a;
  --maroon: #6e1f2c;
  --maroon-bright: #8a2738;
  --white: #ffffff;

  /* Neutrals */
  --ink: #1c1e23;
  --muted: #6b7079;
  --line: #e6e7ea;
  --surface: #ffffff;
  --surface-alt: #f5f6f8;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  /* Layout */
  --container: 1140px;
  --radius: 14px;
  --radius-sm: 9px;
  --header-h: 76px;
  --shadow-sm: 0 1px 2px rgba(32, 35, 42, 0.06), 0 4px 14px rgba(32, 35, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(32, 35, 42, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--maroon); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}

/* Anchored sections clear the sticky header */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal-deep);
  box-shadow: 0 6px 18px rgba(242, 168, 28, 0.35);
}
.btn-primary:hover { background: var(--gold-bright); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 46, 53, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 48px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  font-size: 1.15rem;
}
.brand-line2 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 3px;
}

.primary-nav { display: flex; align-items: center; gap: 1.5rem; }
.primary-nav ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--white);
  padding: 0.4rem 0;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.22s ease;
}
.primary-nav a:hover { text-decoration: none; color: var(--gold); }
.primary-nav a:hover::after { width: 100%; }

.nav-social { display: flex; gap: 0.5rem; }
.nav-social a {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-social a:hover { background: var(--gold); border-color: var(--gold); }
.nav-social svg { width: 16px; height: 16px; fill: var(--white); }
.nav-social a:hover svg { fill: var(--charcoal-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px; width: 26px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 75% -10%, rgba(242, 168, 28, 0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(110, 31, 44, 0.55), transparent 60%),
    linear-gradient(160deg, #2b2e35 0%, #20232a 60%, #181a1f 100%);
}
.hero-bg::after {
  /* subtle diagonal texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 2px,
    transparent 2px,
    transparent 9px
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: clamp(150px, 26vw, 230px);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
  animation: rise 0.7s ease both;
}
.hero-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(0.7rem, 1.6vw, 0.9rem);
  color: var(--gold);
  margin: 1.4rem 0 0.4rem;
  animation: rise 0.7s ease 0.05s both;
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  letter-spacing: 1px;
  margin: 0.2rem 0 1.2rem;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  animation: rise 0.7s ease 0.1s both;
}
.champion-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: var(--charcoal-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(242, 168, 28, 0.45);
  margin: 0;
  animation: rise 0.7s ease 0.15s both, pulseGlow 3s ease-in-out 1.2s infinite;
}
.champion-badge svg { width: 22px; height: 22px; fill: var(--charcoal-deep); }
.hero-tagline {
  max-width: 46ch;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  animation: rise 0.7s ease 0.2s both;
}
.hero-tagline a { color: var(--gold); font-weight: 600; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  animation: rise 0.7s ease 0.25s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 26px rgba(242, 168, 28, 0.45); }
  50% { box-shadow: 0 8px 34px rgba(242, 168, 28, 0.7); }
}

/* ----------------------------- Champions feature ----------------------------- */
.champions {
  background: linear-gradient(180deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.champions .champions-kicker {
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.champions-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}
.champions-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  max-width: 880px;
  margin-inline: auto;
}
.champions-figure img { width: 100%; height: auto; display: block; }
.champions-figure figcaption {
  background: var(--gold);
  color: var(--charcoal-deep);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 600;
  padding: 0.7rem 1rem;
}

/* ----------------------------- Sections ----------------------------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--surface-alt); }

/* Posed team photo at top of the current roster */
.team-photo {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface-alt);
}
.team-photo img { width: 100%; height: auto; display: block; }

/* ----------------------------- Upcoming events ----------------------------- */
.events-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-date {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--charcoal-deep);
}
.event-month {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}
.event-day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
}
.event-tba {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.05rem;
}
.event-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  font-size: 1.25rem;
  margin: 0;
}
.event-detail { color: var(--muted); margin: 0.25rem 0 0; }

@media (max-width: 480px) {
  .event-date { width: 62px; height: 62px; }
  .event-day { font-size: 1.6rem; }
  .event-title { font-size: 1.1rem; }
}

/* ----------------------------- Sponsors ----------------------------- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.sponsor-tile {
  display: grid;
  place-items: center;
  height: 132px;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
a.sponsor-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
/* Cap logo size so every logo displays at a consistent visual scale */
.sponsor-tile img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sponsor-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  color: var(--charcoal);
  text-align: center;
}
.sponsor-tile--placeholder {
  border-style: dashed;
  border-color: #cfd3d8;
  background: var(--surface-alt);
  box-shadow: none;
}
.sponsor-tile--placeholder span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .sponsors-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: var(--maroon);
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.section-head h2 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  color: var(--charcoal);
}
.section-head h2::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.9rem auto 0;
}
.section-sub { color: var(--muted); margin: 0.6rem 0 0; font-size: 1.05rem; }

/* ----------------------------- Roster ----------------------------- */
.roster-groups { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3rem); }
.roster-group-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
}
.roster-group-title::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--maroon);
  border-radius: 2px;
}
.roster-group-title .count {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
  font-weight: 500;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}
.player-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem 0.9rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.player-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(var(--gold), var(--maroon));
}
.player-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.captain-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.captain-c { background: var(--maroon); }
.captain-a { background: var(--charcoal); }

.player-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -1px;
}
.player-name {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: var(--charcoal);
  margin: 0.35rem 0 0.3rem;
}
.player-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.player-pos {
  display: inline-block;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}
.player-home { color: var(--muted); }

/* ----------------------------- Past Seasons (accordion) ----------------------------- */
.past-seasons {
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.season {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.season-header { margin: 0; }
.season-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: var(--font-display);
}
.season-toggle:hover { background: var(--surface-alt); }
.season-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
}
.season-champ {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  background: var(--gold);
  color: var(--charcoal-deep);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.season-runnerup {
  background: linear-gradient(135deg, #d9dde1, #aeb4bb);
  color: var(--charcoal-deep);
}
.season-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 22px;
}
.season-icon::before,
.season-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 3px;
  background: var(--maroon);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.season-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.season-toggle[aria-expanded="true"] .season-icon::after { transform: translate(-50%, -50%) rotate(0); }
.season-panel-inner { padding: 0.4rem 1.4rem 1.6rem; }
.season-note { color: var(--muted); margin: 0 0 1.2rem; }

/* Team photo */
.season-photo {
  margin: 0 0 1.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface-alt);
}
.season-photo img { width: 100%; height: auto; display: block; }

/* Award winners */
.season-awards { margin: 0 0 1.8rem; }
.season-awards-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
}
.season-awards-title::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.award-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(242, 168, 28, 0.12), rgba(110, 31, 44, 0.08));
  border: 1px solid rgba(242, 168, 28, 0.45);
}
.award-medal {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 4px 12px rgba(242, 168, 28, 0.4);
}
.award-medal svg { width: 22px; height: 22px; fill: var(--charcoal-deep); }
.award-info { display: flex; flex-direction: column; min-width: 0; }
.award-name {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  font-size: 1.05rem;
}
.award-label { color: var(--maroon); font-weight: 600; font-size: 0.88rem; }

/* ----------------------------- People (staff + exec) ----------------------------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}
.person-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-alt .person-card { background: var(--white); }
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-avatar {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Coaching staff: larger cards with profile photos, two per row (matches the
   Executive grid) so longer contact emails fit on a single line. */
#staffGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin-inline: auto;
}
#staffGrid .person-card { padding: 1.5rem; gap: 1.3rem; }
#staffGrid .person-avatar { width: 92px; height: 92px; font-size: 1.7rem; }
#staffGrid .person-name { font-size: 1.3rem; }
#staffGrid .person-role { font-size: 1rem; }
.person-info { min-width: 0; }
.person-name {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0;
}
.person-role {
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0.15rem 0 0;
}
.person-contact {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
  white-space: nowrap;
}
.person-contact:hover { color: var(--maroon); text-decoration: underline; }

/* Executive & Board: same card size/style as coaching staff, but two per row
   so the longer contact emails fit on a single line. */
#execGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin-inline: auto;
}
#execGrid .person-card { padding: 1.5rem; gap: 1.3rem; }
#execGrid .person-avatar { width: 80px; height: 80px; font-size: 1.6rem; }
#execGrid .person-name { font-size: 1.3rem; }
#execGrid .person-role { font-size: 1rem; }

@media (max-width: 640px) {
  #execGrid, #staffGrid { grid-template-columns: 1fr; max-width: 480px; }
  .person-contact { font-size: 0.8rem; white-space: normal; overflow-wrap: anywhere; }
}

/* Open / vacant positions */
.person-card--open {
  border-style: dashed;
  border-color: var(--line);
  background: var(--surface-alt);
  box-shadow: none;
}
.person-card--open:hover { transform: none; box-shadow: var(--shadow-sm); }
.person-card--open .person-avatar {
  background: transparent;
  border: 2px dashed var(--muted);
  box-shadow: none;
  color: var(--muted);
  font-weight: 500;
}
.person-card--open .person-name {
  color: var(--muted);
  font-style: italic;
  font-weight: 500;
}

/* ----------------------------- Feedback ----------------------------- */
.section-feedback {
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(242, 168, 28, 0.12), transparent 60%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
  color: var(--white);
}
.section-feedback .section-head h2 { color: var(--white); }
.section-feedback .section-kicker { color: var(--gold); }
.section-feedback .section-sub { color: rgba(255, 255, 255, 0.75); }
.feedback-email { color: rgba(255, 255, 255, 0.8); margin: 0.6rem 0 0; font-size: 1rem; }
.feedback-email a { color: var(--gold); font-weight: 600; }

.feedback-inner { max-width: 720px; }
.feedback-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(242, 168, 28, 0.25);
}
.form-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form-status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gold-bright);
  font-weight: 500;
}
.form-status.error { color: #ff9a9a; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--charcoal-deep); color: rgba(255, 255, 255, 0.8); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-logo { width: 96px; height: auto; }
.footer-brand p {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}
.footer-col h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0 0 0.6rem; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(255, 255, 255, 0.82); }
.footer-col a:hover { color: var(--gold); }
.league-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  padding: 0.5rem 0.8rem 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.league-badge:hover { text-decoration: none; background: var(--white); }
.league-badge img { width: 44px; height: auto; flex: 0 0 auto; }
.league-badge span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--charcoal-deep);
  font-weight: 600;
}
.footer-note { font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.55); }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal);
    border-bottom: 3px solid var(--gold);
    padding: 0.5rem 0 1.2rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .primary-nav ul a {
    display: block;
    padding: 0.95rem clamp(1.1rem, 4vw, 2.2rem);
    font-size: 1rem;
  }
  .primary-nav a::after { display: none; }
  .nav-social { padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 0; }
}

@media (max-width: 520px) {
  .feedback-form { grid-template-columns: 1fr; }
  .brand-line1 { font-size: 1rem; }
  .player-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
