/* ==========================================================================
   GKR Karate Illawarra — Region 17
   Design system: dark, cinematic, GKR red. Built to feel like the flyer.
   ========================================================================== */

:root {
  /* Surfaces */
  --ink: #08080a;
  --ink-2: #0d0e11;
  --panel: #14151a;
  --panel-2: #1b1c23;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* Type */
  --text: #f6f6f8;
  --muted: #a4a4b0;
  --faint: #6c6c78;

  /* Brand */
  --red: #e31837;
  --red-hot: #ff2d4a;
  --red-deep: #a5102a;
  --gold: #ffd400;
  --ok: #34d399;

  --font-display: 'Anton', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1240px;
  --radius: 20px;
  --radius-sm: 13px;
  --shadow: 0 34px 68px -24px rgba(0, 0, 0, 0.75);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

/* Components below set an explicit `display`, which would otherwise beat the
   user-agent rule for the `hidden` attribute. */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
}
.skip-link:focus { left: 20px; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}

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

.h-xl { font-size: clamp(2.9rem, 7.4vw, 6.4rem); }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.7rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.3rem); }
.h-sm { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }

/* The flyer's raked, heavy headline treatment. */
.slant { display: inline-block; transform: skewX(-8deg); transform-origin: left bottom; }

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  color: var(--red-hot);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: currentColor;
}
.eyebrow--center { justify-content: center; }

.accent { color: var(--red-hot); }

/* Flyer-style marker highlight. A half-height swash leaves the top of the
   glyphs dark-on-dark, so on this palette the block is filled outright. */
.mark {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 0.06em 0.24em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section { padding: clamp(64px, 8.5vw, 132px) 0; }
.section--tight { padding: clamp(48px, 6vw, 92px) 0; }
.section--alt { background: var(--ink-2); }
.section--pull { padding-top: clamp(20px, 2.6vw, 40px); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 58px); display: grid; gap: 16px; }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head--center .lead { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.88rem;
  color: #fff;
  border: 0;
  background: none;
  cursor: pointer;
  isolation: isolate;
  white-space: nowrap;
  transition: color 0.25s;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  border-radius: 11px;
  transform: skewX(-9deg);
  transition: background 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
  box-shadow: 0 16px 34px -14px rgba(227, 24, 55, 0.8);
}
.btn:hover::before { background: var(--red-hot); transform: skewX(-9deg) scale(1.045); }
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--ghost { color: var(--text); }
.btn--ghost::before {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover::before { background: rgba(255, 255, 255, 0.09); }

.btn--light { color: var(--ink); }
.btn--light::before { background: #fff; box-shadow: 0 16px 34px -14px rgba(255, 255, 255, 0.4); }
.btn--light:hover::before { background: #ececf0; }

.btn--lg { padding: 21px 38px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn[disabled], .btn.is-busy { opacity: 0.62; pointer-events: none; }

/* --------------------------------------------------------------------------
   Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(8, 8, 10, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
/* The logo file is a 300x59 lockup; this window shows only its square roundel. */
.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.brand-mark img { height: 42px; width: auto; max-width: none; }
.brand-text { display: grid; line-height: 1; }
.brand-text b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 3px;
}

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-link.is-active { color: #fff; }
.nav-link .chev { width: 11px; height: 11px; opacity: 0.6; transition: transform 0.3s var(--ease); }
.nav-item.is-open .chev { transform: rotate(180deg); }
.nav-link.is-active { position: relative; }
.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  background: var(--red-hot);
  transform: skewX(-14deg);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 13px 22px; font-size: 0.78rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}
.header-phone:hover { color: #fff; }
.header-phone svg { width: 15px; height: 15px; color: var(--red-hot); }

/* --------------------------------------------------------------------------
   Mega menu
   -------------------------------------------------------------------------- */
.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease);
}
.nav-item.is-open .mega { opacity: 1; pointer-events: auto; transform: translateY(0); }

.mega-inner {
  background: linear-gradient(180deg, rgba(16, 17, 21, 0.985), rgba(9, 9, 12, 0.985));
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 44px 90px -34px rgba(0, 0, 0, 0.9);
}

.mega-grid {
  display: grid;
  grid-template-columns: 262px 1fr;
  gap: clamp(26px, 3.4vw, 52px);
  padding: clamp(28px, 3.6vw, 46px) 0;
}

.mega-intro { display: grid; gap: 15px; align-content: start; }
.mega-intro h4 { font-size: 1.75rem; }
.mega-intro p { color: var(--muted); font-size: 0.9rem; line-height: 1.62; }
.mega-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.8rem;
  color: var(--red-hot);
}
.mega-intro-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.mega-intro-link:hover svg { transform: translateX(4px); }

.mega-note {
  margin-top: 4px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 212, 0, 0.28);
  background: rgba(255, 212, 0, 0.07);
  font-size: 0.8rem;
  color: #f0e2a8;
  line-height: 1.5;
}

/* Venue cards inside the timetable mega menu */
.mega-venues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}
.mega-venue {
  --mc: var(--red);
  position: relative;
  display: grid;
  gap: 7px;
  padding: 17px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.mega-venue::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--mc);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.mega-venue:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-3px);
}
.mega-venue:hover::before { transform: scaleY(1); }

.mega-venue-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mega-venue b {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
}
.mega-venue-zone {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.mega-venue-addr { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.mega-venue-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.mega-venue-meta strong { color: var(--red-hot); font-weight: 700; }

/* Simple link-list mega menu (Programs) */
.mega-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-content: start; }
.mega-card--wide { grid-column: 1 / -1; }
/* Doubled-up selector: must outrank `.mega-card span` / `.drawer-sub span`,
   which would otherwise force the badge to display:block. */
.mega-card b .mega-new, .drawer-sub b .mega-new {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.56rem;
  vertical-align: 2px;
}
.mega-card {
  --mc: var(--red);
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 17px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.mega-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--mc);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.mega-card:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.055); transform: translateY(-3px); }
.mega-card:hover::before { transform: scaleY(1); }
.mega-card-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--mc) 16%, transparent);
  color: var(--mc);
}
.mega-card-icon svg { width: 23px; height: 23px; }
.mega-card b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.96rem;
  margin-bottom: 3px;
}
.mega-card span { display: block; font-size: 0.81rem; color: var(--muted); line-height: 1.45; }

/* --------------------------------------------------------------------------
   Mobile drawer
   -------------------------------------------------------------------------- */
.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 19px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-burger span { top: 50%; margin-top: -1px; }
.nav-burger span::before { top: -6px; left: 0; transform: none; }
.nav-burger span::after { top: 6px; left: 0; transform: none; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 180;
  background: var(--ink);
  overflow-y: auto;
  padding: 26px 0 60px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.drawer.is-open { opacity: 1; pointer-events: auto; transform: none; }

.drawer-group { border-bottom: 1px solid var(--line); }
.drawer-toggle,
.drawer-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 19px 2px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  color: var(--text);
}
.drawer-toggle svg { width: 15px; height: 15px; color: var(--red-hot); transition: transform 0.3s var(--ease); }
.drawer-group.is-open .drawer-toggle svg { transform: rotate(180deg); }
.drawer-panel { display: none; padding-bottom: 16px; }
.drawer-group.is-open .drawer-panel { display: grid; gap: 8px; }
.drawer-sub {
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.drawer-sub b { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.94rem; }
.drawer-sub span { font-size: 0.78rem; color: var(--muted); }
.drawer-cta { margin-top: 26px; display: grid; gap: 12px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 clamp(56px, 7vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 78% 8%, rgba(227, 24, 55, 0.24), transparent 62%),
    radial-gradient(700px 520px at 8% 92%, rgba(227, 24, 55, 0.13), transparent 60%),
    linear-gradient(180deg, #0b0b0e 0%, #08080a 62%, #0a0a0d 100%);
}
/* Faint diagonal "brush" texture echoing the flyer's ink strokes. */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    112deg,
    rgba(255, 255, 255, 0.028) 0px,
    rgba(255, 255, 255, 0.028) 1px,
    transparent 1px,
    transparent 9px
  );
  mask-image: radial-gradient(72% 62% at 50% 34%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 34%, #000 0%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(34px, 4.5vw, 68px);
  align-items: start;
}

.hero h1 { margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero h1 .line--big { font-size: 1.28em; color: var(--red-hot); }

.hero-copy { display: grid; gap: 24px; align-content: start; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.pill svg { width: 14px; height: 14px; color: var(--red-hot); }
.pill--gold { border-color: rgba(255, 212, 0, 0.35); background: rgba(255, 212, 0, 0.09); color: #f2e4a6; }
.pill--gold svg { color: var(--gold); }

/* Countdown to the registration deadline */
.countdown { display: flex; gap: 10px; flex-wrap: wrap; }
.cd-unit {
  min-width: 74px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}
.cd-unit b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cd-unit span {
  display: block;
  margin-top: 5px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   School-holiday offer card — the flyer, translated to the web
   -------------------------------------------------------------------------- */
.offer-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel), var(--ink-2) 72%);
  box-shadow: var(--shadow);
  padding: clamp(26px, 3vw, 40px);
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-hot), var(--gold));
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.offer-head h2 { font-size: clamp(1.7rem, 2.7vw, 2.5rem); line-height: 0.92; }
.offer-head p { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }

/* The red "$35 per child" stamp from the flyer */
.price-stamp {
  flex: none;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 32% 28%, var(--red-hot), var(--red-deep));
  box-shadow: 0 18px 38px -14px rgba(227, 24, 55, 0.85);
  transform: rotate(-7deg);
}
.price-stamp small {
  display: block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}
.price-stamp b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 0.9;
  margin: 2px 0;
}
.price-stamp span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.offer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.offer-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  align-items: start;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}
.offer-list li:first-child { border-top: 0; padding-top: 4px; }
.offer-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
}
.offer-ico svg { width: 26px; height: 26px; }
.offer-list b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  margin-bottom: 4px;
}
.offer-list b em { font-style: normal; color: var(--red-hot); }
.offer-list p { color: var(--muted); font-size: 0.89rem; line-height: 1.55; margin: 0; }

.offer-foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.deadline-stamp {
  display: inline-grid;
  gap: 2px;
  padding: 11px 20px;
  border: 3px solid var(--red);
  border-radius: 6px;
  transform: rotate(-1.4deg);
  background: rgba(227, 24, 55, 0.08);
}
.deadline-stamp small {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.deadline-stamp b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.28rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* The free training tee, echoing the flyer's product badge. */
.tee-badge {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tee-badge img {
  width: 94px;
  height: auto;
  flex: none;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s var(--ease);
}
.tee-badge:hover img { transform: translateY(-4px) rotate(-2deg); }
.tee-badge figcaption {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.08rem;
  line-height: 1.1;
}
.tee-badge figcaption span {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Signup form
   -------------------------------------------------------------------------- */
.signup {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(168deg, var(--panel-2), var(--ink-2) 76%);
  box-shadow: var(--shadow);
  padding: clamp(26px, 3vw, 42px);
}
.signup-head { text-align: center; display: grid; gap: 10px; margin-bottom: 26px; }
.signup-head h2 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
.signup-head p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.steps { display: grid; gap: 22px; }
.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.73rem;
  color: var(--faint);
  margin-bottom: 14px;
}
.step-label i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-style: normal;
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: 700;
  flex: none;
}

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--red-hot); }

.control {
  width: 100%;
  padding: 15px 16px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.control::placeholder { color: var(--faint); }
.control:focus {
  outline: none;
  border-color: var(--red-hot);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.16);
}
.control:user-invalid,
.control.is-invalid {
  border-color: var(--red-hot);
  background: rgba(227, 24, 55, 0.09);
}
select.control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a4a4b0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}
select.control option { background: var(--panel); color: var(--text); }
textarea.control { min-height: 96px; resize: vertical; }

.field-hint { font-size: 0.74rem; color: var(--faint); line-height: 1.5; }
.field-error {
  display: none;
  font-size: 0.76rem;
  color: var(--red-hot);
  font-weight: 600;
}
.field.has-error .field-error { display: block; }

/* Radio / checkbox cards */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.choice:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.06); transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  flex: none;
  display: grid;
  place-items: center;
  transition: border-color 0.25s;
}
.choice-dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-hot);
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}
.choice input:checked ~ .choice-dot { border-color: var(--red-hot); }
.choice input:checked ~ .choice-dot::after { transform: scale(1); }
.choice:has(input:checked) {
  border-color: var(--red-hot);
  background: rgba(227, 24, 55, 0.12);
}
.choice input:focus-visible ~ .choice-dot { outline: 2px solid var(--red-hot); outline-offset: 3px; }
.choice-body { display: grid; gap: 2px; min-width: 0; }
.choice-body b { font-size: 0.92rem; font-weight: 700; }
.choice-body span { font-size: 0.76rem; color: var(--muted); }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}
.consent input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--red);
}

.form-foot { display: grid; gap: 13px; margin-top: 8px; }
.reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-size: 0.74rem;
  color: var(--faint);
}
.reassure span { display: inline-flex; align-items: center; gap: 6px; }
.reassure svg { width: 13px; height: 13px; color: var(--ok); }

/* Honeypot — hidden from people, visible to bots. */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Success + error states */
.notice {
  display: grid;
  gap: 8px;
  padding: 17px 19px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.notice--error { border-color: rgba(227, 24, 55, 0.5); background: rgba(227, 24, 55, 0.1); color: #ffc3cd; }
.notice--ok { border-color: rgba(52, 211, 153, 0.45); background: rgba(52, 211, 153, 0.1); color: #b6f0da; }
.notice b { font-weight: 700; }
.notice ul { margin: 4px 0 0; padding-left: 18px; }

.success-panel { text-align: center; display: grid; gap: 16px; justify-items: center; padding: 12px 0; }
.success-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--ok);
}
.success-ring svg { width: 36px; height: 36px; }
.success-panel h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.success-panel .lead { text-align: center; }
.next-steps {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  text-align: left;
  width: 100%;
  max-width: 460px;
}
.next-steps li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--muted);
}
.next-steps i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--ink-2);
  padding: clamp(24px, 3vw, 38px) 20px;
  text-align: center;
  display: grid;
  gap: 7px;
}
.stat b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--red-hot);
  font-variant-numeric: tabular-nums;
}
.stat span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Timetable
   -------------------------------------------------------------------------- */
.tt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}
.tt-tab {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.tt-tab:hover { color: #fff; border-color: var(--line-strong); transform: translateY(-2px); }
.tt-tab.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 30px -14px rgba(227, 24, 55, 0.9);
}

.tt-panel { display: none; }
.tt-panel.is-active { display: block; animation: fade-up 0.45s var(--ease) both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.venue-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}
.venue-head h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 9px; }
.venue-meta { display: grid; gap: 6px; font-size: 0.88rem; color: var(--muted); }
.venue-meta a { color: var(--muted); transition: color 0.2s; }
.venue-meta a:hover { color: #fff; }
.venue-meta div { display: flex; align-items: flex-start; gap: 9px; }
.venue-meta svg { width: 15px; height: 15px; color: var(--red-hot); flex: none; margin-top: 4px; }

.tt-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.tt-key {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.79rem;
  color: var(--muted);
}
.tt-key b {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
}
.tt-key .dot { width: 10px; height: 10px; border-radius: 3px; transform: rotate(45deg); flex: none; }

.tt-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  -webkit-overflow-scrolling: touch;
}
.tt {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}
.tt th, .tt td {
  padding: 15px 12px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid rgba(255, 255, 255, 0.045);
}
.tt th:last-child, .tt td:last-child { border-right: 0; }
.tt thead th {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  padding: 17px 12px;
  position: sticky;
  top: 0;
  z-index: 2;
}
.tt thead th:first-child { text-align: left; padding-left: 22px; min-width: 210px; }
.tt tbody th {
  text-align: left;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.022);
  min-width: 210px;
}
.tt tbody th b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: var(--text);
}
.tt tbody th span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--faint);
}
.tt tbody tr:last-child th, .tt tbody tr:last-child td { border-bottom: 0; }
.tt tbody tr:hover td { background: rgba(255, 255, 255, 0.022); }
.tt td.is-empty { background: rgba(255, 255, 255, 0.012); }

.slot {
  --cc: var(--red);
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--cc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 38%, transparent);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}
.slot + .slot { margin-top: 8px; }
.slot:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--cc) 22%, transparent);
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--cc) 70%, transparent);
}
.slot b {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--cc) 45%, #fff);
  white-space: nowrap;
}
.slot span { font-size: 0.71rem; color: var(--muted); line-height: 1.4; }

/* Mobile day-by-day view — the wide grid becomes a day picker + stacked cards.
   Hidden on desktop; swapped in for .tt-wrap at the 900px breakpoint. */
.tt-mobile { display: none; }

.tt-daybar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  margin: 0 -2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tt-daybar::-webkit-scrollbar { display: none; }
.tt-day {
  flex: none;
  display: grid;
  gap: 4px;
  justify-items: center;
  min-width: 76px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.tt-day b {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--text);
}
.tt-day span { font-size: 0.63rem; color: var(--faint); white-space: nowrap; }
.tt-day.is-rest b { color: var(--faint); }
.tt-day.is-today b::after {
  content: '';
  position: absolute;
  top: 0;
  right: -9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red-hot);
}
.tt-day.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 30px -14px rgba(227, 24, 55, 0.9);
}
.tt-day.is-active b, .tt-day.is-active span { color: #fff; }
.tt-day.is-active.is-today b::after { background: #fff; }

.tt-day-panel { display: none; gap: 10px; }
.tt-day-panel.is-active { display: grid; animation: fade-up 0.35s var(--ease) both; }
.tt-day-name {
  display: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--muted);
}

/* No-JS fallback: no day picker, the whole week stacks with day headings. */
.tt-mobile:not(.is-enhanced) .tt-daybar { display: none; }
.tt-mobile:not(.is-enhanced) .tt-day-panels { display: grid; gap: 22px; }
.tt-mobile:not(.is-enhanced) .tt-day-panel { display: grid; }
.tt-mobile:not(.is-enhanced) .tt-day-panel.is-restday { display: none; }
.tt-mobile:not(.is-enhanced) .tt-day-name { display: block; }

.tt-card {
  --cc: var(--red);
  position: relative;
  display: grid;
  gap: 5px;
  padding: 15px 16px 15px 21px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}
.tt-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--cc);
}
.tt-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tt-card-top b {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--cc) 45%, #fff);
  white-space: nowrap;
}
.tt-tag {
  flex: none;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cc) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 40%, transparent);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
  color: color-mix(in srgb, var(--cc) 45%, #fff);
}
.tt-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.92rem;
  color: var(--text);
}
.tt-card-sub { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

.tt-card-rest {
  padding: 30px 20px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.tt-foot {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   Kooshies — Friend Training Reward Program
   -------------------------------------------------------------------------- */
.kooshie-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.kooshie-step {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: clamp(20px, 2.2vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel), var(--ink-2) 78%);
}
.kooshie-step i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red-hot);
  line-height: 1;
}
.kooshie-step b {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.02rem;
  color: var(--text);
}
.kooshie-step span { font-size: 0.87rem; color: var(--muted); }

.kooshie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

/* Each Kooshie renders as a trading card: a coloured foil frame around a
   dark inner face — name bar, art window, tier line, flavour text, set mark. */
.kooshie-card {
  --kc: var(--red);
  position: relative;
  border-radius: 18px;
  padding: 9px;
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--kc) 55%, #fff) 0%,
    var(--kc) 34%,
    color-mix(in srgb, var(--kc) 55%, #000) 100%);
  box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.8);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.kooshie-card:hover {
  transform: translateY(-8px) rotate3d(1, -1, 0, 3deg);
  box-shadow: 0 34px 64px -22px color-mix(in srgb, var(--kc) 50%, #000);
}
.kooshie-card-inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  border-radius: 11px;
  padding: 12px 13px 13px;
  background: linear-gradient(180deg, #1c1d24, #0e0f13 80%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.kooshie-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.kooshie-top h3 {
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text);
}
.kooshie-num {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--kc) 60%, #fff);
  white-space: nowrap;
}
.kooshie-num em { font-style: normal; font-size: 0.66rem; color: var(--faint); }

/* Art window: sunburst rays and a glow pool behind the floating figurine. */
.kooshie-art {
  position: relative;
  aspect-ratio: 5 / 4.6;
  border-radius: 9px;
  border: 1.5px solid color-mix(in srgb, var(--kc) 55%, transparent);
  overflow: hidden;
  padding: 12px 12px 9px;
  background:
    radial-gradient(85% 60% at 50% 100%, color-mix(in srgb, var(--kc) 38%, transparent), transparent 72%),
    repeating-conic-gradient(from 8deg at 50% 68%,
      color-mix(in srgb, var(--kc) 16%, transparent) 0 8deg,
      transparent 8deg 17deg),
    radial-gradient(130% 110% at 50% -10%, #262833, #0b0c10 78%);
}
.kooshie-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s var(--ease);
}
.kooshie-card:hover .kooshie-art img { transform: translateY(-4px); }

.kooshie-type {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.kooshie-tier {
  flex: none;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--kc) 82%, #000);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.6rem;
}
.kooshie-epithet {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  color: color-mix(in srgb, var(--kc) 65%, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kooshie-flavor {
  align-self: start;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
}

.kooshie-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--faint);
}
.kooshie-foot > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.kooshie-foot svg { width: 13px; height: 13px; color: var(--kc); flex: none; }
.kooshie-foot b { color: var(--text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kooshie-set { flex: none; font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* Rare: gold-foil frame. */
.kooshie-card--rare {
  background: linear-gradient(160deg, #fff3b0 0%, #f5c518 30%, #b8860b 68%, #8a5f06 100%);
}

/* Ultra Rare: animated holographic rainbow frame — the chase card. */
.kooshie-card--ultra-rare {
  background: linear-gradient(120deg,
    #b16cea, #5f8bff, #3fd0d4, #7ee081, #ffe066, #ff8fa3, #b16cea);
  background-size: 320% 320%;
  animation: kooshie-holo 6.5s ease-in-out infinite;
}
@keyframes kooshie-holo {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.kooshie-random {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.kooshie-random svg { width: 17px; height: 17px; color: var(--red-hot); flex: none; }

.kooshie-tc {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(24px, 2.8vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.kooshie-tc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
/* Each group is a labelled band, so the seven program rules read separately
   from the privacy terms instead of as one undifferentiated wall. */
.kooshie-tc .tc-group { padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line); }
.kooshie-tc .tc-group:first-of-type { padding-top: 14px; margin-top: 14px; }
.kooshie-tc .tc-group h4 {
  margin: 0 0 16px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.kooshie-tc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.kooshie-tc li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--muted);
  text-wrap: pretty;
}
/* Bold lead-in then explanation — the term carries the scan, the rest fills in. */
.kooshie-tc li b { display: block; color: var(--text); font-weight: 700; margin-bottom: 1px; }
.kooshie-tc li a { color: var(--red-hot); text-decoration: underline; text-underline-offset: 2px; }
.kooshie-tc li svg { width: 16px; height: 16px; color: var(--ok); flex: none; margin-top: 5px; }
/* The privacy group is the serious half — cool it down so it doesn't read as
   another list of perks. */
.kooshie-tc .tc-group:last-of-type li svg { color: var(--muted); }
.kooshie-tc .tc-group:last-of-type li { font-size: 0.82rem; color: var(--faint); }
.kooshie-tc .tc-group:last-of-type li b { color: var(--muted); }

@media (max-width: 560px) {
  .kooshie-tc li { grid-template-columns: 14px 1fr; gap: 10px; font-size: 0.84rem; }
}

/* --------------------------------------------------------------------------
   Location cards
   -------------------------------------------------------------------------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.loc-card {
  position: relative;
  display: grid;
  gap: 13px;
  align-content: start;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel), var(--ink-2) 78%);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.loc-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.loc-card:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.loc-card:hover::before { transform: scaleX(1); }
.loc-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.loc-card h3 { font-size: 1.4rem; }
.loc-zone {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.loc-card p { font-size: 0.87rem; color: var(--muted); margin: 0; }
.loc-lines { display: grid; gap: 7px; font-size: 0.84rem; color: var(--muted); }
.loc-lines div { display: flex; gap: 9px; align-items: flex-start; }
.loc-lines svg { width: 15px; height: 15px; color: var(--red-hot); flex: none; margin-top: 3px; }
.loc-lines a { transition: color 0.2s; }
.loc-lines a:hover { color: #fff; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.link-btn:hover { color: #fff; border-color: var(--line-strong); background: rgba(255, 255, 255, 0.05); }
.link-btn svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   Feature / why cards
   -------------------------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.feature {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.feature:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(227, 24, 55, 0.14);
  color: var(--red-hot);
}
.feature-ico svg { width: 25px; height: 25px; }
.feature h3 { font-size: 1.28rem; }
.feature p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Split media band
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.cta-band {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(38px, 5vw, 72px) clamp(24px, 4vw, 60px);
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
  background: linear-gradient(135deg, var(--red-deep), var(--red) 46%, #7d0b1f 100%);
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(112deg, rgba(0,0,0,0.09) 0 2px, transparent 2px 11px);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .lead { color: rgba(255, 255, 255, 0.9); text-align: center; }
.cta-band .eyebrow { color: #ffd9df; }

/* --------------------------------------------------------------------------
   Booking page
   -------------------------------------------------------------------------- */
.booking-grid { display: grid; grid-template-columns: 1fr 400px; gap: clamp(26px, 3.4vw, 52px); align-items: start; }

.session-card {
  position: relative;
  display: block;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.session-card + .session-card { margin-top: 11px; }
.session-card:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.06); transform: translateY(-2px); }
.session-card input { position: absolute; opacity: 0; pointer-events: none; }
.session-card:has(input:checked) { border-color: var(--red-hot); background: rgba(227, 24, 55, 0.12); }
.session-card:has(input:disabled) { opacity: 0.42; cursor: not-allowed; }
.session-inner { display: grid; grid-template-columns: 22px 1fr auto; gap: 14px; align-items: center; }
.session-body b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
}
.session-body span { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.session-tag {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}
.session-tag--full { border-color: rgba(227, 24, 55, 0.5); color: #ffb3bf; }
.session-tag--open { border-color: rgba(52, 211, 153, 0.45); color: #a7ead2; }

.aside-card {
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid;
  gap: 14px;
  align-content: start;
}
.aside-card h3 { font-size: 1.2rem; }
.aside-card p { font-size: 0.86rem; color: var(--muted); margin: 0; }
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.aside-list li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; }
.aside-list svg { width: 18px; height: 18px; color: var(--ok); margin-top: 2px; }

/* --------------------------------------------------------------------------
   Instructor dashboard
   -------------------------------------------------------------------------- */
.dash-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.week-nav { display: flex; align-items: center; gap: 11px; }
.week-nav b {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
  min-width: 190px;
  text-align: center;
}

.dash-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }

.roster-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.day-col {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.day-col.has-class { border-color: rgba(227, 24, 55, 0.4); }
.day-col-head {
  padding: 13px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.day-col-head b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.86rem;
}
.day-col-head span { display: block; font-size: 0.72rem; color: var(--faint); margin-top: 3px; }
.day-class {
  padding: 9px 12px;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--red-hot);
  border-bottom: 1px dashed var(--line);
  background: rgba(227, 24, 55, 0.06);
}
.day-body { padding: 11px; display: grid; gap: 8px; align-content: start; flex: 1; }
.attendee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 11px;
  border-radius: 9px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
}
.attendee small { display: block; color: var(--faint); font-size: 0.71rem; }
.icon-btn {
  border: 0;
  background: none;
  color: var(--faint);
  cursor: pointer;
  padding: 3px;
  line-height: 0;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.icon-btn:hover { color: var(--red-hot); background: rgba(227, 24, 55, 0.14); }
.icon-btn svg { width: 15px; height: 15px; }
.empty-note { font-size: 0.76rem; color: var(--faint); text-align: center; padding: 14px 0; font-style: italic; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.data-table { width: 100%; min-width: 900px; border-collapse: collapse; font-size: 0.86rem; }
.data-table th, .data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.data-table thead th {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
}
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: rgba(255, 255, 255, 0.022); }
.data-table a { color: var(--muted); }
.data-table a:hover { color: #fff; }

.login-wrap { min-height: 78vh; display: grid; place-items: center; padding: calc(var(--header-h) + 40px) 0 60px; }
.login-card {
  width: min(100% - 40px, 420px);
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   Breadcrumbs + page hero
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(46px, 6vw, 82px)) 0 clamp(34px, 4.5vw, 62px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(760px 500px at 74% 0%, rgba(227, 24, 55, 0.22), transparent 62%),
    linear-gradient(180deg, #0c0c10, var(--ink) 78%);
}
.page-hero h1 { margin-bottom: 18px; }

/* Standalone landing-page chrome ($page_bare). Brand and phone only — no nav,
   no drawer, no footer link columns, no sticky CTA. */
.site-header--bare .brand { cursor: default; }
.site-header--bare .header-actions { gap: 0; }
.site-footer--bare .footer-grid { grid-template-columns: 1.6fr 1fr; }
@media (max-width: 900px) {
  .site-footer--bare .footer-grid { grid-template-columns: 1fr; }
}

/* Optional-field marker, the quiet counterpart to .req */
.opt { color: var(--faint); font-weight: 500; font-size: 0.9em; letter-spacing: 0; }

/* Opt-in consent — visually separated from the required confirmations so it
   never reads as another box you have to tick to proceed. */
.consent--optin {
  margin-top: 4px;
  padding: 15px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
  color: var(--faint);
  line-height: 1.62;
}
.consent--optin b { color: var(--muted); font-weight: 700; }

/* Video-backed hero (Kooshies). The video sits behind the copy; the ::before
   gradient is re-used on top of it as the legibility scrim. */
.page-hero--video::before {
  background:
    radial-gradient(760px 500px at 74% 0%, rgba(227, 24, 55, 0.30), transparent 62%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.68), rgba(8, 8, 10, 0.86) 62%, var(--ink) 100%);
}
.page-hero--video .hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero--video .hero-video { display: none; }
  .page-hero--video {
    background: url('../video/kooshies-poster.jpg') 50% 32% / cover no-repeat;
  }
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 20px;
}
.crumbs a { color: var(--muted); transition: color 0.2s; }
.crumbs a:hover { color: var(--red-hot); }
.crumbs .sep { opacity: 0.4; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(48px, 6vw, 82px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 3vw, 48px);
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--faint);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-about p { font-size: 0.88rem; color: var(--muted); max-width: 34ch; }
.footer-contact { display: grid; gap: 11px; font-size: 0.88rem; color: var(--muted); }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; color: var(--red-hot); flex: none; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--faint);
}
.social-row { display: flex; gap: 10px; }
.social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.social:hover { color: #fff; border-color: var(--red); background: rgba(227, 24, 55, 0.16); transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; }

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 150;
  display: none;
  gap: 9px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 44px -18px rgba(0, 0, 0, 0.9);
  transform: translateY(140%);
  transition: transform 0.4s var(--ease);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { flex: 1; padding: 14px 16px; font-size: 0.78rem; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1140px) {
  .mega-venues { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1040px) {
  .nav-desktop, .header-phone { display: none; }
  .nav-burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .loc-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .kooshie-grid { grid-template-columns: repeat(2, 1fr); }
  .kooshie-steps { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
}

@media (max-width: 900px) {
  .tt-wrap { display: none; }
  .tt-mobile { display: block; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* Small phones: the brand + burger own the header, and the sticky bottom bar
   carries the call to action instead of a cramped header button. */
@media (max-width: 640px) {
  .header-actions .btn { display: none; }
  .brand-text span { font-size: 0.56rem; letter-spacing: 0.18em; white-space: nowrap; }
  .brand-text b { font-size: 1.02rem; }
}

@media (max-width: 680px) {
  :root { --header-h: 72px; }
  .container { width: min(100% - 32px, var(--container)); }
  .loc-grid, .feature-grid, .field-grid { grid-template-columns: 1fr; }
  .kooshie-grid { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: 1fr; }
  .day-col { min-height: 0; }
  .offer-head { flex-direction: column-reverse; align-items: flex-start; }
  .price-stamp { width: 106px; height: 106px; }
  .price-stamp b { font-size: 2.35rem; }
  .offer-list li { grid-template-columns: 42px 1fr; gap: 13px; }
  .offer-ico { width: 42px; height: 42px; border-radius: 12px; }
  .offer-ico svg { width: 21px; height: 21px; }
  .btn { width: 100%; padding: 17px 22px; }
  .btn-row { width: 100%; }
  .btn-row .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .cd-unit { min-width: 64px; flex: 1; }
}

/* --------------------------------------------------------------------------
   Test-site banner (IS_TEST_SITE only — never renders in production)
   -------------------------------------------------------------------------- */
.test-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 9px 16px;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #08080a;
  background: repeating-linear-gradient(135deg, var(--gold) 0 14px, #e6bf00 14px 28px);
}

/* ==========================================================================
   Champs '26 — NSW State Titles (/statechamps)
   The flyer is a white sheet with a red band; on this dark system the band
   becomes the page's spine — a red rake that runs through the hero, the venue
   update and the closing CTA, with everything else held in cool panels.
   ========================================================================== */

.champs-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(34px, 4.4vw, 60px)) 0 clamp(40px, 5vw, 70px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.champs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 50% -6%, rgba(227, 24, 55, 0.34), transparent 66%),
    linear-gradient(180deg, #101015, var(--ink) 74%);
}
/* The flyer's swept brush strokes, rebuilt as raked light. */
.champs-hero::after {
  content: '';
  position: absolute;
  inset: -30% -20%;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(102deg,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 78px),
    repeating-linear-gradient(102deg,
      rgba(227, 24, 55, 0.11) 0 2px,
      transparent 2px 232px);
  mask-image: radial-gradient(120% 80% at 50% 20%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 20%, #000 20%, transparent 78%);
}

.champs-wordmark { display: grid; justify-items: center; gap: 6px; }
.champs-wordmark h1 {
  font-size: clamp(3.4rem, 13.4vw, 9.6rem);
  line-height: 0.82;
  letter-spacing: -0.005em;
  /* `background-clip: text` clips the gradient to the padding box, and at
     line-height 0.82 that box is shorter than Anton's capitals — the tops of
     the letters come out transparent. Pad the box past the ink and cancel the
     padding with an equal negative margin, so nothing moves. */
  padding: 0.2em 0 0.12em;
  margin: -0.2em 0 -0.12em;
  background: linear-gradient(178deg, #ffffff 22%, #cfcfd8 58%, #7e7e8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.6));
}
.champs-wordmark h1 em {
  font-style: normal;
  background: linear-gradient(178deg, var(--red-hot) 18%, var(--red) 56%, var(--red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* The flyer rules a hairline under the wordmark and letterspaces the state
   line beneath it. */
.champs-wordmark .champs-sub {
  display: block;
  width: 100%;
  max-width: 780px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.9vw, 1.02rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Date band — the flyer's solid red strip. */
.champs-band-wrap { margin: clamp(24px, 2.8vw, 34px) auto 0; width: min(100%, 860px); }
.champs-band {
  margin: 0 auto;
  padding: 18px 26px;
  border-radius: 14px;
  transform: skewX(-8deg);
  background: linear-gradient(100deg, var(--red-deep), var(--red) 42%, var(--red-hot));
  box-shadow: 0 26px 54px -22px rgba(227, 24, 55, 0.85);
}
.champs-band > * { transform: skewX(8deg); }
.champs-band b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.15rem, 3.1vw, 2rem);
  line-height: 1;
  color: #fff;
}
.champs-band span {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.champs-hero .hero-badges { justify-content: center; margin-top: clamp(18px, 2.2vw, 24px); }
.champs-hero .btn-row { justify-content: center; }
.champs-hero .countdown { justify-content: center; }

.cd-caption {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 11px;
}

/* --------------------------------------------------------------------------
   Venue — the flyer's "CHANGE OF VENUE" update, given its own stage
   -------------------------------------------------------------------------- */
.venue-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(26px, 3.2vw, 44px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.venue-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red-hot), var(--red-deep));
}
.venue-stamp {
  display: grid;
  place-items: center;
  gap: 4px;
  width: clamp(96px, 11vw, 128px);
  height: clamp(96px, 11vw, 128px);
  border-radius: 22px;
  border: 1px solid rgba(255, 212, 0, 0.4);
  background: rgba(255, 212, 0, 0.09);
  color: var(--gold);
  text-align: center;
  transform: rotate(-4deg);
}
.venue-stamp svg { width: 30px; height: 30px; }
.venue-stamp b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.15;
}
.venue-body { display: grid; gap: 10px; min-width: 0; }
.venue-body .eyebrow { color: var(--gold); }
.venue-body h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.venue-body address {
  font-style: normal;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  color: var(--muted);
  line-height: 1.5;
}
.venue-body .link-btn { margin-top: 6px; justify-self: start; }
.venue-was {
  font-size: 0.78rem;
  color: var(--faint);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Run sheet
   -------------------------------------------------------------------------- */
.runsheet { display: grid; gap: 0; position: relative; }
.run-item {
  display: grid;
  grid-template-columns: clamp(96px, 12vw, 148px) 34px 1fr;
  gap: clamp(14px, 2vw, 26px);
  align-items: start;
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-top: 1px solid var(--line);
}
.run-item:last-child { border-bottom: 1px solid var(--line); }
.run-time {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1;
  color: var(--red-hot);
  letter-spacing: 0.01em;
  padding-top: 2px;
}
/* The connector: a rail with a node on it, drawn per row so the run sheet
   reflows cleanly on a phone without a stray tail at either end. */
.run-node { position: relative; justify-self: center; padding-top: 4px; }
.run-node i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: var(--panel-2);
  color: var(--red-hot);
  transform: rotate(45deg);
}
.run-node i svg { width: 16px; height: 16px; transform: rotate(-45deg); }
.run-node::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 42px;
  bottom: calc(-1 * clamp(18px, 2.2vw, 26px) - 8px);
  width: 1px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
  transform: translateX(-50%);
}
.run-item:last-child .run-node::after { display: none; }
.run-body b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.02rem, 1.8vw, 1.35rem);
}
.run-body span { display: block; font-size: 0.88rem; color: var(--muted); margin-top: 4px; }
.run-item--marquee .run-node i { border-color: var(--red); background: rgba(227, 24, 55, 0.16); }
.run-item--marquee .run-body b { color: #fff; }

/* --------------------------------------------------------------------------
   Fees
   -------------------------------------------------------------------------- */
.fee-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.fee-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.fee-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.fee-card:hover::before { transform: scaleX(1); }
.fee-card:hover { border-color: var(--line-strong); }
.fee-head { display: flex; align-items: center; gap: 13px; }
.fee-head .fee-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(227, 24, 55, 0.14);
  color: var(--red-hot);
  flex: none;
}
.fee-head .fee-ico svg { width: 22px; height: 22px; }
.fee-head h3 { font-size: 1.32rem; }
.fee-rows { list-style: none; margin: 0; padding: 0; display: grid; }
.fee-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.fee-rows li:first-child { border-top: 0; }
.fee-rows li small { display: block; font-size: 0.76rem; color: var(--faint); }
.fee-rows li b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}
.fee-rows li.is-free b { color: var(--ok); font-size: 1.2rem; }
.fee-note { font-size: 0.82rem; color: var(--faint); margin: 0; }

/* --------------------------------------------------------------------------
   Entry rules
   -------------------------------------------------------------------------- */
.rule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.rule {
  display: grid;
  gap: 11px;
  align-content: start;
  padding: clamp(22px, 2.5vw, 30px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
}
.rule--hot { border-color: rgba(227, 24, 55, 0.42); background: rgba(227, 24, 55, 0.07); }
.rule i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--red-hot);
}
.rule--hot i { border-color: rgba(227, 24, 55, 0.4); background: rgba(227, 24, 55, 0.12); }
.rule i svg { width: 20px; height: 20px; }
.rule b {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.12rem;
}
.rule p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.rule p + p { margin-top: 10px; }
.rule strong { color: var(--text); font-weight: 700; }
.rule a { color: var(--red-hot); text-decoration: underline; text-underline-offset: 2px; }
.rule a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Compulsory safety equipment
   -------------------------------------------------------------------------- */
.gear-panel {
  padding: clamp(24px, 3vw, 42px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
}
.gear-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.gear-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.gear-item svg { width: 20px; height: 20px; color: var(--ok); margin-top: 2px; }
.gear-item b { display: block; font-size: 0.95rem; font-weight: 700; }
.gear-item span { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* The one rule that catches people out on the day. */
.warn-strip {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 212, 0, 0.38);
  background: rgba(255, 212, 0, 0.08);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #f0e2ab;
}
.warn-strip svg { width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }
.warn-strip b { color: #fff; font-weight: 700; }

/* --------------------------------------------------------------------------
   Nationals tee — product shots beside the pre-order card. The fee-card
   carries its own surface, so this only lays the two columns out.
   -------------------------------------------------------------------------- */
.tee-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
}
.tee-shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.2vw, 16px); }
.tee-shots img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
}
.tee-shots .tee-main { grid-column: 1 / -1; }
@media (max-width: 860px) {
  .tee-panel { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Standalone sticky CTA. $page_bare suppresses the site-wide bar, so
   /statechamps renders its own .mobile-cta inline and inherits the same
   styling, breakpoint and IntersectionObserver behaviour.
   -------------------------------------------------------------------------- */
.mobile-cta .btn--ghost { flex: 0 0 auto; width: auto; padding-inline: 20px; }

@media (max-width: 860px) {
  .fee-grid, .rule-grid { grid-template-columns: 1fr; }
  .venue-panel { grid-template-columns: 1fr; justify-items: start; }
  .venue-stamp { transform: rotate(-4deg) scale(0.92); transform-origin: left center; }
}

@media (max-width: 620px) {
  .run-item { grid-template-columns: 1fr; gap: 6px; }
  .run-node { display: none; }
  .champs-band { transform: none; }
  .champs-band > * { transform: none; }
  .champs-wordmark .champs-sub { letter-spacing: 0.3em; text-indent: 0.3em; }
}

/* --------------------------------------------------------------------------
   Champs '26 — video hero
   The clip is a phone video (9:16), so it ships twice: a centre-band landscape
   crop for wide screens and the full portrait frame for phones. app.js picks
   one before load — `media` on <source> is not reliable across browsers — and
   the poster is painted on the section itself so the hero still looks right
   with no JavaScript, on reduced motion, and before the first frame decodes.
   -------------------------------------------------------------------------- */
.champs-hero--video {
  background: url('../video/champs-poster.jpg') 50% 42% / cover no-repeat var(--ink);
}
.champs-hero--video .hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  pointer-events: none;
}
/* The scrim has to work much harder here than on a still: the wordmark sits
   over moving white gi against a bright hall. */
.champs-hero--video::before {
  z-index: -2;
  background:
    radial-gradient(900px 620px at 50% -6%, rgba(227, 24, 55, 0.34), transparent 66%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.80) 0%, rgba(8, 8, 10, 0.62) 34%,
                            rgba(8, 8, 10, 0.86) 72%, var(--ink) 100%);
}
.champs-hero--video::after { z-index: -1; }
.champs-hero--video .champs-wordmark h1 { filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.9)); }

.champs-hero--video .pill,
.champs-hero--video .cd-unit {
  background: rgba(10, 10, 13, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}
.champs-hero--video .pill--gold {
  background: rgba(46, 37, 0, 0.6);
  border-color: rgba(255, 212, 0, 0.4);
}
.champs-hero--video .cd-caption { color: var(--muted); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95); }

@media (max-width: 860px) {
  .champs-hero--video { background-image: url('../video/champs-poster-portrait.jpg'); }
  /* The wide crop shows a band of torsos; the portrait frame shows a whole
     competitor, so far more white gi sits directly behind the copy. */
  .champs-hero--video::before {
    background:
      radial-gradient(700px 520px at 50% -6%, rgba(227, 24, 55, 0.32), transparent 64%),
      linear-gradient(180deg, rgba(8, 8, 10, 0.86) 0%, rgba(8, 8, 10, 0.74) 30%,
                              rgba(8, 8, 10, 0.90) 72%, var(--ink) 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .champs-hero--video .hero-video { display: none; }
}

/* --------------------------------------------------------------------------
   Champs '26 — gallery
   Five portrait frames and one landscape. Multi-column masonry balanced them
   badly (one short column, six photos into three), so the wall is an explicit
   4x2 grid of 4:5 tiles instead: the podium shot takes two of them side by
   side, and the eighth tile is the entry call — the photos are the argument
   for entering, so the button belongs in the middle of them.
   -------------------------------------------------------------------------- */
.shot-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}
.shot {
  position: relative;
  display: block;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.shot--wide { grid-column: span 2; aspect-ratio: 8 / 5; }
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: saturate(0.92) contrast(1.04);
}
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(227, 24, 55, 0.2), transparent 46%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.shot:hover img { transform: scale(1.055); filter: saturate(1) contrast(1.04); }
.shot:hover::after { opacity: 1; }

/* The entry tile. Same footprint as a photo, so the grid stays square. */
.shot-cta {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: clamp(18px, 2vw, 26px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, var(--red-deep), var(--red) 52%, #7d0b1f);
}
.shot-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(112deg, rgba(0, 0, 0, 0.1) 0 2px, transparent 2px 11px);
  pointer-events: none;
}
.shot-cta > * { position: relative; z-index: 1; }
.shot-cta b {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 0.98;
}
.shot-cta span { font-size: 0.79rem; color: rgba(255, 255, 255, 0.86); line-height: 1.5; }
.shot-cta .btn { width: 100%; padding: 14px 18px; font-size: 0.76rem; }
.shot-cta .btn::before { background: #fff; box-shadow: none; }
.shot-cta .btn { color: var(--ink); }
.shot-cta .btn:hover::before { background: #ececf0; }

.shot-note {
  margin-top: clamp(20px, 2.4vw, 30px);
  font-size: 0.8rem;
  color: var(--faint);
  text-align: center;
}

/* Two columns is held as far down as it can be: a single column turns six
   4:5 tiles into several screens of scrolling, and the photos read fine small. */
@media (max-width: 1040px) {
  .shot-wall { grid-template-columns: repeat(2, 1fr); }
  /* The two-wide tile has to lead here: auto-placement cannot fit it beside a
     single tile, so it wraps and leaves a hole in the row above. Leading, it
     fills row one and the remaining six tiles fill three rows exactly. */
  .shot--wide { order: -1; }
}
@media (max-width: 380px) {
  .shot-wall { grid-template-columns: 1fr; }
  .shot--wide { grid-column: span 1; }
}

/* --------------------------------------------------------------------------
   Champs '26 — what to bring
   -------------------------------------------------------------------------- */
.bring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 12px;
}
.bring-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  line-height: 1.45;
}
.bring-item i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(227, 24, 55, 0.13);
  color: var(--red-hot);
}
.bring-item i svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   Champs '26 — FAQ
   Native <details>, so it works with no JavaScript, is keyboard-operable and
   is searchable in-page by the browser's own find. Held to a reading measure
   rather than the full container: fifteen questions across 1240px is a wall.
   -------------------------------------------------------------------------- */
.faq-list { max-width: 880px; margin-inline: auto; display: grid; gap: 10px; }

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  transition: border-color 0.3s, background 0.3s;
}
.faq[open] { border-color: rgba(227, 24, 55, 0.4); background: var(--panel-2); }
.faq:hover { border-color: var(--line-strong); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.25;
  transition: color 0.2s;
}
/* Safari draws its own disclosure triangle unless both of these are set. */
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ''; }
.faq summary:hover { color: var(--red-hot); }
.faq[open] summary { color: #fff; }
.faq summary:focus-visible { outline: 2px solid var(--red-hot); outline-offset: -2px; border-radius: var(--radius-sm); }

.faq-chev {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--line);
  color: var(--red-hot);
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.faq-chev svg { width: 15px; height: 15px; }
.faq[open] .faq-chev {
  transform: rotate(180deg);
  background: rgba(227, 24, 55, 0.14);
  border-color: rgba(227, 24, 55, 0.4);
}

.faq-a { padding: 0 20px 20px; display: grid; gap: 11px; }
.faq-a p { margin: 0; font-size: 0.92rem; line-height: 1.65; color: var(--muted); }
.faq-a strong { color: var(--text); font-weight: 700; }

.faq-foot {
  max-width: 880px;
  margin: clamp(22px, 2.6vw, 32px) auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.faq-foot a { color: var(--red-hot); }

@media (max-width: 560px) {
  .faq summary { padding: 16px 15px; gap: 12px; }
  .faq-a { padding: 0 15px 17px; }
}

/* Informational counterpart to .warn-strip — same shape, no alarm. */
.note-strip {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  background: rgba(227, 24, 55, 0.06);
}
.note-strip svg { width: 20px; height: 20px; color: var(--red-hot); margin-top: 2px; }
.note-strip p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--muted); }
.note-strip p + p { margin-top: 8px; }
.note-strip strong { color: var(--text); font-weight: 700; }

/* Page-orientation copy directly under the hero. */
.intro-copy {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 14px;
}
.intro-copy p { margin: 0; }
.intro-copy .lead { margin-inline: auto; text-align: center; }
.intro-copy p:first-child {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  color: var(--text);
  /* Anton is condensed enough that a `ch` measure comes out absurdly narrow. */
  max-width: 640px;
  margin-inline: auto;
}

.sub-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(30px, 3.4vw, 46px) 0 clamp(16px, 1.8vw, 22px);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  font-family: var(--font-display);
  font-weight: 400;
}
.sub-head::after { content: ''; flex: 1; height: 1px; background: var(--line); }
