/* ==========================================================================
   Saddleworth Netball Club
   Design system + components
   Palette: club colours — red #E01A2B, black #0B0B0D, white.
   Typeface: Poppins (heavy italics for display, regular for reading).
   Design language: sharp edges, notched corners, hard shadows, slash
   accents, scoreboard stat blocks — pro-club energy for a local club.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Club colours */
  --red: #e01a2b;
  --red-dark: #b31220;
  --red-deep: #7e0c17;
  --red-bright: #ff4655;   /* red for use on black */
  --red-tint: #fdeced;

  --black: #0b0b0d;
  --black-2: #131316;      /* raised dark surface */
  --ink: #101014;          /* headings on white */
  --ink-body: #2b2b31;     /* body text on white */
  --ink-muted: #5d5d66;

  --white: #ffffff;
  --paper: #f7f6f3;        /* warm alt background */
  --line: #e8e6e2;         /* hairline borders */
  --line-dark: rgba(255, 255, 255, .14);

  /* Type */
  --font: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --max: 1200px;
  --max-narrow: 760px;

  /* Geometry — sharp. The notch is the signature. */
  --notch: 12px;
  --notch-sm: 8px;
  --border-w: 2px;

  --shadow-hard: 6px 6px 0 var(--black);
  --shadow-red: 6px 6px 0 var(--red);

  --header-h: 78px;
}

/* Corner cut, bottom-right */
.notch,
.btn,
.card__icon,
.tag,
.radio-pill,
.team-card__age,
.download__icon,
.empty-state__icon {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch-sm)), calc(100% - var(--notch-sm)) 100%, 0 100%);
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4vw, 3.125rem); }
h3 { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); letter-spacing: .01em; line-height: 1.3; }
h4 { font-size: 1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration: none; transition: color .16s ease; }
a:hover { color: var(--black); }

strong, b { font-weight: 600; color: var(--ink); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .5em; }
li::marker { color: var(--red); }

hr { border: 0; border-top: var(--border-w) solid var(--black); margin: 3rem 0; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 999;
  padding: .75rem 1.25rem;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--max-narrow); }
.container--wide { max-width: 1360px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--pearl { background: var(--paper); }
.section--soft { background: var(--paper); }
.section--navy { background: var(--black); color: rgba(255, 255, 255, .75); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.stack > * + * { margin-top: 1.15em; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--teams { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
@media (max-width: 460px) { .grid--teams { grid-template-columns: 1fr; } }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.split--top { align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split--media-first > :first-child { order: 2; }
  .split--wide-text { grid-template-columns: 1.25fr .75fr; }
}

.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-tight { max-width: 52ch; }
.mx-auto { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  font-size: .75rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "//";
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
}
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow, .hero .eyebrow { color: var(--red-bright); }

.lead {
  font-size: clamp(1.125rem, 1.7vw, 1.3125rem);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.section--navy .lead { color: rgba(255, 255, 255, .85); }

.section-head { max-width: 66ch; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  border: var(--border-w) solid transparent;
  font: inherit;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease,
              color .15s ease, border-color .15s ease;
}
.btn svg { width: 1em; height: 1em; flex: none; }
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(0, 0); box-shadow: none; }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); box-shadow: 4px 4px 0 var(--black); }

.btn--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { color: var(--white); box-shadow: 4px 4px 0 var(--red); }

.btn--ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn--ghost:hover { color: var(--red); border-color: var(--red); box-shadow: 4px 4px 0 var(--red-tint); }

.btn--on-dark { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn--on-dark:hover { background: var(--white); color: var(--black); border-color: var(--white); box-shadow: 4px 4px 0 var(--red); }

.btn--lg { padding: 1.125rem 2.25rem; font-size: .9375rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-style: italic;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}
.link-arrow::after {
  content: "→";
  transition: transform .18s ease;
}
.link-arrow:hover { color: var(--black); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-top: 4px solid var(--red);
  border-bottom: var(--border-w) solid var(--black);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 24px -12px rgba(11, 11, 13, .35); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .75rem; flex: none; }
.brand:hover { color: inherit; }
.brand__mark { width: 42px; height: 46px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--black);
}
.brand__sub {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list > li { margin: 0; }

.nav__link {
  position: relative;
  display: block;
  padding: .55rem .5rem;
  font-size: .78125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: color .15s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .6rem; right: .6rem; bottom: .2rem;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--red); font-weight: 700; }

.nav__group { position: relative; }
.nav__toggle {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .5rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: .78125rem;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: color .15s ease;
}
.nav__toggle:hover { color: var(--red); }
.nav__toggle--active { color: var(--red); font-weight: 700; }
.nav__toggle::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.nav__toggle[aria-expanded="true"]::after { transform: translateY(1px) rotate(-135deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + .75rem);
  right: 0;
  min-width: 240px;
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  box-shadow: var(--shadow-hard);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__group.is-open .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu li { margin: 0; }
.nav__menu a {
  display: block;
  padding: .65rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--black);
}
.nav__menu a:hover { background: var(--red-tint); color: var(--red); }
.nav__menu a[aria-current="page"] { color: var(--white); background: var(--red); }

.header__cta { flex: none; margin-left: .5rem; }
.nav__cta-mobile { display: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  padding: 0;
  border: var(--border-w) solid var(--black);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: var(--red-tint); }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--black);
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

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

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 4px) 0 auto 0;
    margin: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    background: var(--white);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 24px 48px -24px rgba(11, 11, 13, .5);
    padding: 1rem var(--gutter) 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link, .nav__toggle {
    width: 100%;
    padding: .9rem .25rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-style: italic;
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
  .nav__toggle { justify-content: space-between; }

  .nav__group { position: static; }
  .nav__menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: 0;
    box-shadow: none;
    background: var(--paper);
    margin: .25rem 0 .5rem;
  }
  .nav__group.is-open .nav__menu { display: block; }
  .nav__menu a { padding: .8rem .75rem; }

  .nav__cta-mobile { display: block; margin-top: 1.25rem; }
  .nav__cta-mobile .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--black);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}
.hero h1, .hero h2 { color: var(--white); }

.hero__court {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .1;
  pointer-events: none;
}

/* speed slashes, top right */
.hero::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -4%;
  width: clamp(220px, 26vw, 420px);
  height: 130%;
  z-index: -1;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 42px,
    rgba(224, 26, 43, .55) 42px 58px,
    transparent 58px 132px,
    rgba(224, 26, 43, .18) 132px 148px
  );
  pointer-events: none;
}

.hero--home { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero--home .hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .hero--home .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero__title { margin-bottom: 1.5rem; font-size: clamp(2.875rem, 6.6vw, 5.25rem); line-height: .95; }
.hero__title span { display: block; }
.hero__title .hero__title-sm { color: var(--red-bright); font-size: .52em; letter-spacing: .01em; }

.hero__sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero__figure { position: relative; }
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--red);
  z-index: -1;
}
.hero__figure img {
  width: 100%;
  border: var(--border-w) solid var(--white);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: -1rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .9rem 1.35rem .9rem 1.1rem;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  box-shadow: var(--shadow-hard);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%);
}
.hero__badge img { width: 34px; height: 38px; object-fit: contain; border: 0; aspect-ratio: auto; }
.hero__badge-text { line-height: 1.3; }
.hero__badge-text b {
  display: block;
  font-size: .875rem;
  color: var(--black);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}
.hero__badge-text span { font-size: .71875rem; color: var(--ink-muted); font-weight: 500; }
@media (max-width: 620px) { .hero__badge { left: 0; } }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 3rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.hero__meta div { line-height: 1.25; }
.hero__meta b {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.hero__meta span {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-bright);
}

/* Interior page hero */
.hero--page { padding-block: clamp(3rem, 7vw, 5.25rem); border-bottom: 6px solid var(--red); }
.hero--page .hero__inner { max-width: 68ch; }
.hero--page h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 1rem; }
.hero--page .hero__sub { margin-bottom: 0; }
.hero--page .btn-row { margin-top: 2rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb li { margin: 0; color: rgba(255, 255, 255, .55); }
.breadcrumb li + li::before { content: "//"; margin-right: .6rem; color: var(--red-bright); font-weight: 800; }
.breadcrumb a { color: rgba(255, 255, 255, .8); }
.breadcrumb a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   8. Motto band + ticker
   -------------------------------------------------------------------------- */
.motto {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding-block: 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  border-block: var(--border-w) solid var(--black);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  padding-block: .875rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  user-select: none;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker__item {
  white-space: nowrap;
  padding-inline: 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .85);
}
.ticker__item--solid { color: var(--white); -webkit-text-stroke: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

.motto__label {
  margin-bottom: 1.25rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.motto__label::before { content: "// "; font-weight: 800; }
.motto__quote {
  position: relative;
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  font-style: italic;
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}
.motto__quote em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
.motto__full {
  position: relative;
  max-width: 44ch;
  margin: 1.75rem 0 0;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--white);
  border: var(--border-w) solid var(--black);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .9375rem; line-height: 1.65; color: var(--ink-muted); }
.card__foot { margin-top: auto; padding-top: 1.25rem; }

a.card, .card--link { cursor: pointer; }
a.card:hover, .card--hover:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-red);
}
a.card:hover h3 { color: var(--red); }

.card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 1.25rem;
  background: var(--red);
  color: var(--white);
}
.card__icon svg { width: 22px; height: 22px; }

.card--feature { background: var(--white); }
.card--flat { background: var(--paper); border-color: var(--black); }

.card__num {
  display: block;
  margin-bottom: 1rem;
  font-size: .8125rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .14em;
  color: var(--red);
}

/* --------------------------------------------------------------------------
   10. Fact strip — scoreboard
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: var(--line-dark);
  border: var(--border-w) solid var(--black);
  overflow: hidden;
  box-shadow: var(--shadow-red);
}
.facts__item { padding: clamp(1.5rem, 3vw, 2rem); background: var(--black); }
.facts__item dt {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: .5rem;
}
.facts__item dt::before { content: "// "; font-weight: 800; }
.facts__item dd {
  margin: 0;
  font-size: 1.1875rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.facts__item dd small {
  display: block;
  font-size: .78125rem;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .6);
  margin-top: .3rem;
}

/* --------------------------------------------------------------------------
   11. Media
   -------------------------------------------------------------------------- */
.media { position: relative; }
.media img {
  width: 100%;
  border: var(--border-w) solid var(--black);
  object-fit: cover;
}
.media--tall img { aspect-ratio: 4 / 5; }
.media--wide img { aspect-ratio: 16 / 10; }
.media--square img { aspect-ratio: 1 / 1; }
.media--focus-low img { object-position: 50% 72%; }
.media--focus-mid img { object-position: 50% 40%; }

@media (min-width: 760px) {
  .media--offset::before {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 62%;
    height: 62%;
    background: var(--red);
    z-index: -1;
  }
}

.media-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: var(--border-w) solid var(--black);
}
.media-banner img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border: 0; }
@media (max-width: 700px) { .media-banner img { aspect-ratio: 4 / 3; } }
.media-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(to top, rgba(11, 11, 13, .88) 0%, rgba(11, 11, 13, .3) 55%, rgba(11, 11, 13, 0) 100%);
  color: var(--white);
}
.media-banner__overlay > div { border-left: 4px solid var(--red); padding-left: 1.25rem; }
.media-banner__overlay h2, .media-banner__overlay h3 { color: var(--white); margin-bottom: .35rem; }
.media-banner__overlay p { color: rgba(255, 255, 255, .8); font-size: .9375rem; }

/* --------------------------------------------------------------------------
   12. Training / team list — fixture cards
   -------------------------------------------------------------------------- */
.team-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: clamp(1.35rem, 2.4vw, 1.75rem);
  background: var(--black);
  border: var(--border-w) solid var(--black);
  transition: transform .16s ease, box-shadow .16s ease;
}
.team-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-red); }

.team-card__age {
  display: grid;
  place-items: center;
  min-width: 74px;
  max-width: 96px;
  padding: .8rem .6rem;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-style: italic;
  font-size: 1.125rem;
  letter-spacing: -.01em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}
.team-card__body h3 { color: var(--white); font-size: 1.0625rem; margin-bottom: .65rem; }
.team-card__when {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .6rem;
  margin-bottom: .875rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
}
.team-card__when .dot { width: 5px; height: 5px; background: var(--red-bright); align-self: center; }
.team-card__when .venue { font-weight: 500; text-transform: none; letter-spacing: 0; color: rgba(255, 255, 255, .65); }

.people { margin: 0; padding: 0; list-style: none; display: grid; gap: .4rem; }
.people li {
  margin: 0;
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}
.people li b {
  color: var(--red-bright);
  font-weight: 700;
  font-size: .71875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.people li span { color: rgba(255, 255, 255, .88); font-weight: 500; }

/* Simple schedule list */
.schedule { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.schedule li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem 1rem;
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-left: 6px solid var(--red);
}
.schedule li b {
  flex: none;
  min-width: 6.5rem;
  color: var(--black);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}
.schedule li span { color: var(--ink-body); font-size: .9375rem; font-weight: 500; }

/* --------------------------------------------------------------------------
   13. Tabs
   -------------------------------------------------------------------------- */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: 0;
  list-style: none;
}
.tabs__list li { margin: 0; flex: 1 1 auto; }
.tab {
  width: 100%;
  padding: .9rem 1.25rem;
  border: var(--border-w) solid var(--black);
  background: var(--white);
  font: inherit;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch-sm)), calc(100% - var(--notch-sm)) 100%, 0 100%);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.tab:hover { color: var(--red); border-color: var(--red); }
.tab[aria-selected="true"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.tabs__panel[hidden] { display: none; }

.doc-block h3 {
  margin-top: 2.5rem;
  padding-bottom: .875rem;
  border-bottom: var(--border-w) solid var(--black);
  font-size: 1rem;
  color: var(--red);
}
.doc-block h3:first-child { margin-top: 0; }
.doc-block ul { padding-left: 0; list-style: none; }
.doc-block ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .875rem;
  font-size: .9875rem;
}
.doc-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 10px; height: 10px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 100%);
}
.doc-block ul.list--cross li::before { background: var(--black); }

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form-card {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  border: var(--border-w) solid var(--black);
  box-shadow: 8px 8px 0 var(--red);
}

.form-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }

.field label, .fieldset__legend {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
}
.field .req { color: var(--red); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  font-size: .9375rem;
  color: var(--black);
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-radius: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint), 4px 4px 0 var(--red-tint);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230b0b0d' stroke-width='2' stroke-linecap='square' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.fieldset { border: 0; margin: 0; padding: 0; grid-column: 1 / -1; }
.fieldset__legend { display: block; margin-bottom: .625rem; padding: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: .625rem; }
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.25rem;
  border: var(--border-w) solid var(--black);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.radio-pill input {
  appearance: none;
  width: 14px; height: 14px;
  margin: 0;
  border: 2px solid var(--black);
  transition: border-color .15s ease, background-color .15s ease;
}
.radio-pill:hover { border-color: var(--red); color: var(--red); }
.radio-pill:has(input:checked) { border-color: var(--red); background: var(--red); color: var(--white); }
.radio-pill:has(input:checked) input { border-color: var(--white); background: var(--white); box-shadow: inset 0 0 0 3px var(--red); }
.radio-pill:has(input:focus-visible) { outline: 3px solid var(--red); outline-offset: 3px; }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.form-note { font-size: .8125rem; color: var(--ink-muted); line-height: 1.55; }

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--red-tint);
  border: var(--border-w) solid var(--red);
  color: var(--black);
  font-size: .9375rem;
  font-weight: 500;
}
.form-status[hidden] { display: none; }

/* --------------------------------------------------------------------------
   15. Download list
   -------------------------------------------------------------------------- */
.downloads { display: grid; gap: 1rem; }
.downloads--split { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.download {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  transition: transform .15s ease, box-shadow .15s ease;
}
.download:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-red); }
.download__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
}
.download__icon svg { width: 20px; height: 20px; }
.download__body { flex: 1; min-width: 0; }
.download__body b {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--black);
}
.download__body span { font-size: .8125rem; color: var(--ink-muted); }
.download__cue {
  flex: none;
  color: var(--red);
  font-size: .78125rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.download:hover .download__cue { color: var(--black); }

/* --------------------------------------------------------------------------
   16. Kit list
   -------------------------------------------------------------------------- */
.kit-list { display: grid; gap: .875rem; margin: 0; padding: 0; list-style: none; }
.kit-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  margin: 0;
  padding: 1.05rem 1.35rem;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  font-size: .9375rem;
}
.kit-list li b { flex: 1 1 auto; color: var(--black); font-weight: 600; }
.tag {
  display: inline-block;
  padding: .35rem .8rem;
  background: var(--red);
  color: var(--white);
  font-size: .65625rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag--muted { background: var(--black); color: var(--white); }
.tag--light { background: var(--white); color: var(--black); }

/* --------------------------------------------------------------------------
   17. Check list
   -------------------------------------------------------------------------- */
.check-list { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: .75rem; }
.check-list li {
  position: relative;
  margin: 0;
  padding-left: 1.9rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-body);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .3em;
  width: 18px; height: 18px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: .62em;
  width: 8px; height: 4px;
  border-left: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--black);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
  isolation: isolate;
  border: var(--border-w) solid var(--black);
  box-shadow: 10px 10px 0 var(--red);
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -2%;
  width: clamp(160px, 20vw, 300px);
  height: 140%;
  z-index: -1;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 34px,
    rgba(224, 26, 43, .55) 34px 48px,
    transparent 48px 108px,
    rgba(224, 26, 43, .2) 108px 120px
  );
}
.cta-band h2 { color: var(--white); max-width: 20ch; }
.cta-band p { max-width: 52ch; }
.cta-band .btn-row { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   19. Empty state
   -------------------------------------------------------------------------- */
.empty-state {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background: var(--paper);
  border: var(--border-w) dashed var(--black);
}
.empty-state__icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--red);
  color: var(--white);
}
.empty-state__icon svg { width: 28px; height: 28px; }
.empty-state p { max-width: 46ch; margin-inline: auto; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   20. Prose (policy pages)
   -------------------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.375rem, 2.4vw, 1.75rem); }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1rem; line-height: 1.8; }

.callout {
  padding: 1.25rem 1.5rem;
  border: var(--border-w) solid var(--black);
  border-left: 6px solid var(--red);
  background: var(--red-tint);
  font-size: .9375rem;
  color: var(--ink-body);
}
.callout strong { color: var(--black); }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: 0 2rem;
  background: var(--black);
  color: rgba(255, 255, 255, .6);
  font-size: .9375rem;
  border-top: 6px solid var(--red);
  overflow: hidden;
}
.footer__ornament {
  white-space: nowrap;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .12);
  user-select: none;
  pointer-events: none;
  margin: .5rem 0 clamp(1.5rem, 4vw, 3rem);
}

.site-footer h4 {
  margin-bottom: 1.25rem;
  font-size: .71875rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--red-bright);
}
.site-footer h4::before { content: "// "; font-weight: 800; }
.site-footer a { color: rgba(255, 255, 255, .78); font-weight: 500; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--red-bright); text-underline-offset: 4px; text-decoration-thickness: 2px; }

.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }

.footer__brand { display: flex; align-items: center; gap: .875rem; margin-bottom: 1.25rem; }
.footer__crest {
  display: grid;
  place-items: center;
  flex: none;
  width: 56px; height: 56px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%);
}
.footer__crest img { width: 36px; height: 40px; object-fit: contain; }
.footer__brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.footer__brand-text b {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.footer__brand-text i {
  font-style: normal;
  font-size: .6563rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.footer__blurb { max-width: 34ch; line-height: 1.7; color: rgba(255, 255, 255, .6); }

.footer__list { margin: 0; padding: 0; list-style: none; display: grid; gap: .625rem; }
.footer__list li { margin: 0; }

.socials { display: flex; gap: .625rem; margin-top: 1.5rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  transition: background-color .15s ease, color .15s ease, transform .15s ease, border-color .15s ease;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translate(-2px, -2px); }
.socials svg { width: 18px; height: 18px; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .45);
}
.footer__bar ul { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.footer__bar li { margin: 0; }

/* --------------------------------------------------------------------------
   22. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
