﻿/* Australian Warrior Fitness - premium redesign */
:root {
  --bg: #07080c;
  --bg-2: #0e1118;
  --surface: #141922;
  --surface-2: #1a2030;
  --text: #f5f6f8;
  --muted: #9aa3b2;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff6508;
  --orange-hot: #ff7d2e;
  --lime: #ff7d2e;
  --paper: #f4f1ea;
  --ink: #12141a;
  --header: 124px;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --font: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip:focus { top: 12px; }

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.95), rgba(7, 8, 12, 0.84));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #fff;
  min-width: 236px;
}
.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 22px rgba(255, 101, 8, 0.16));
}
.brand-text {
  display: grid;
  gap: 6px;
  line-height: 1;
}
.brand-text strong {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-text span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  place-items: center;
  margin-left: auto;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.nav-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  padding-left: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  max-width: none;
  width: 100%;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  width: auto;
  min-width: 64px;
  min-height: 44px;
  padding: 6px 7px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  white-space: normal;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.nav-links a span {
  display: block;
  line-height: 0.86;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 125, 46, 0.98), rgba(255, 101, 8, 0.82)),
    var(--orange);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(255, 101, 8, 0.28);
  border-radius: 14px;
  transform: translateY(-1px);
}
.nav-cta {
  position: static;
  flex-shrink: 0;
  min-height: 48px !important;
  padding: 0 12px !important;
  border-radius: 12px !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 12px 28px rgba(255, 101, 8, 0.32) !important;
}

@media (min-width: 1181px) and (max-width: 1600px) {
  .wrap { width: min(var(--max), calc(100% - 1rem)); }
  .nav { gap: 10px; }
  .brand { gap: 8px; min-width: 248px; }
  .brand img { width: 92px; height: 92px; }
  .brand-text strong { font-size: 30px; }
  .brand-text span { font-size: 14px; letter-spacing: 0.13em; }
  .nav-panel { gap: 8px; padding-left: 4px; }
  .nav-links { gap: 7px; }
  .nav-links a { min-width: 68px; min-height: 44px; padding-inline: 5px; font-size: 11px; letter-spacing: 0.015em; }
  .nav-cta { min-height: 52px !important; padding-inline: 12px !important; font-size: 10px !important; }
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(255, 101, 8, 0.32);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.btn-light:hover { background: #f0ece4; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.section-paper .btn-ghost,
.hud .btn-ghost {
  background: #12141a;
  color: #fff;
  border-color: #12141a;
}
.section-paper .btn-ghost:hover,
.hud .btn-ghost:hover {
  background: #000;
  color: #fff;
}
.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
}
.home-hero-media {
  background-position: center 30%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(7, 8, 12, 0.94) 0%, rgba(7, 8, 12, 0.72) 40%, rgba(7, 8, 12, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 8, 12, 0.92) 0%, transparent 50%);
}
.hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header) + 40px) 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 36px;
  align-items: start;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.kicker::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}
.hero h1 {
  margin: 16px 0 18px;
  max-width: 11ch;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-lead {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 560px;
}
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.logo-tile img {
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}
.hero-meta a { color: #ffb48a; text-decoration: underline; text-underline-offset: 2px; }

/* Light info card - matches proven AWF pattern */
.hud {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  padding: 24px;
  margin-top: 28px;
  align-self: start;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hud-logo {
  width: 104px;
  margin: 0 0 12px auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
}
.hud h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 900;
}
.hud p {
  margin: 0;
  color: #666b73;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(16, 17, 20, 0.12);
}
.stat {
  min-height: 78px;
  display: grid;
  place-content: center;
  padding: 10px;
  background: #fff;
  text-align: center;
}
.stat b {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}
.stat span {
  margin-top: 5px;
  color: #666b73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
}
.section-paper {
  background: var(--paper);
  color: var(--ink);
}
.section-dark {
  background: var(--bg-2);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2,
.block-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}
.section-head p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}
.section-paper .section-head p { color: #666b73; }
.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Program cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
a.mission {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
a.mission:hover { transform: translateY(-4px); }
a.mission img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: -2;
  transition: transform 0.35s ease;
}
a.mission:hover img { transform: scale(1.05); }
a.mission::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 9, 12, 0.94), rgba(8, 9, 12, 0.12) 62%);
}
a.mission > div { padding: 24px; }
a.mission .tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-hot);
}
a.mission h3 {
  margin: 0 0 8px;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 900;
}
a.mission p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
a.mission .go {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
a.mission .go::after { content: " ->"; color: var(--orange); }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.split-copy p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}
.section-paper .split-copy p { color: #555b66; }
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-paper .pill {
  background: #fff;
  border-color: rgba(16, 17, 20, 0.1);
  color: var(--ink);
}
.media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.media-frame img {
  width: 100%;
  min-height: 340px;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  padding: 22px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.section-paper .card {
  background: #fff;
  border-color: rgba(16, 17, 20, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
}
.card p,
.card li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.section-paper .card p,
.section-paper .card li { color: #666b73; }
.card ul { display: grid; gap: 8px; }
.card ul li {
  position: relative;
  padding-left: 14px;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Page hero - strong scrim so text stays readable on busy photos */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header) + 36px) 0 48px;
  background: #000;
}
.page-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: none;
  transform: none;
  background-size: cover;
  background-position: center 30%;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Left text readable; right photo bright (Mikel 12 Sep) */
  background:
    linear-gradient(95deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 28%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.12) 68%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.page-hero-inner > * {
  max-width: 720px;
}
.page-hero-inner .hero-actions {
  max-width: none;
}
.page-hero .kicker,
.page-hero .hero-lead,
.page-hero h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.page-hero h1 {
  margin: 12px 0 14px;
  max-width: none;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}
.page-hero .hero-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  line-height: 1.55;
}
.page-hero .btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.page-hero .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.5);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.crumbs a { color: var(--orange-hot); }

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: start;
}
.form-panel {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: var(--shadow);
}
.form-panel-head {
  padding: 20px 22px;
  background: var(--ink);
  color: #fff;
}
.form-panel-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
}
.form-panel-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}
.form-panel-body { padding: 20px 22px 22px; }
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.field > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field .req { color: var(--orange); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 17, 20, 0.14);
  background: #faf9f6;
  color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--orange);
  border-color: transparent;
  background: #fff;
}
.field-hint {
  margin: 0 0 8px;
  color: #666b73;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}
.field-error {
  margin: 6px 0 0;
  color: #c62828;
  font-size: 11px;
  font-weight: 700;
}

/* Compact multi-class picker */
.class-field > span,
.class-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.class-picker-head > span:first-child {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.class-count-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 101, 8, 0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}
.class-picker {
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.class-day-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 6px;
  overflow-x: auto;
  background: #f3f1ec;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  scrollbar-width: thin;
}
.class-day-tab {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #555b66;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.class-day-tab:hover { background: rgba(16, 17, 20, 0.06); }
.class-day-tab.is-active {
  background: var(--ink);
  color: #fff;
}
.class-picker-list {
  max-height: 250px;
  overflow: auto;
  padding: 4px 0;
  scrollbar-width: thin;
}
.class-day-group { padding: 0 0 2px; }
.class-day-group[hidden] { display: none !important; }
.class-day-label {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 5px 10px 3px;
  background: linear-gradient(#fff 70%, rgba(255, 255, 255, 0.9));
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.check-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 5px 10px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.12s ease;
}
.check-row:hover { background: #faf8f4; }
.check-row:has(input:checked) {
  background: #fff6ef;
  border-left-color: var(--orange);
}
.check-row input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--orange);
}
.check-name {
  min-width: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.check-meta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #7a8190;
  white-space: nowrap;
}
.class-selected-bar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 8px;
  border-top: 1px solid rgba(16, 17, 20, 0.08);
  background: #f7f5f0;
}
.class-selected-label {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666b73;
}
.class-selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.class-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 101, 8, 0.28);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.class-clear-btn {
  flex-shrink: 0;
  min-height: 24px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #666b73;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.class-clear-btn:hover {
  background: rgba(16, 17, 20, 0.06);
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.aside-sticky {
  position: sticky;
  top: calc(var(--header) + 16px);
  display: grid;
  gap: 12px;
}
.side-card {
  padding: 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.side-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
}
.side-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.side-card a {
  color: var(--orange-hot);
  font-weight: 800;
}

/* Schedule */
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.schedule .card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 10px;
}

/* CTA */
.cta-band {
  padding: 56px 0;
  background: var(--orange);
  color: #fff;
}
.cta-band .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.05;
}
.cta-band p {
  margin: 0;
  max-width: 480px;
  font-weight: 700;
  font-size: 16px;
}
.cta-band .btn {
  background: #fff;
  color: #12141a;
  box-shadow: none;
  border: 0;
}
.cta-band .btn:hover {
  background: #f4f1ea;
  color: #12141a;
}
.cta-band .btn-ghost {
  background: #0b1220;
  color: #fff;
  border: 1px solid #0b1220;
  box-shadow: none;
}
.cta-band .btn-ghost:hover {
  background: #05080f;
  color: #fff;
  border-color: #05080f;
}

/* Footer */
.site-footer {
  padding: 48px 0 20px;
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.site-footer a:hover { color: var(--orange-hot); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
}

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

@media (min-width: 861px) and (max-width: 1180px) {
  :root { --header: 108px; }
  .wrap { width: min(var(--max), calc(100% - 0.75rem)); }
  .nav { gap: 8px; }
  .brand { gap: 8px; min-width: 210px; }
  .brand img { width: 84px; height: 84px; }
  .brand-text strong { font-size: 26px; letter-spacing: 0.04em; }
  .brand-text span { font-size: 13px; letter-spacing: 0.1em; }
  .nav-panel { gap: 7px; padding-left: 2px; }
  .nav-links { gap: 6px; }
  .nav-links a { min-width: 62px; min-height: 44px; padding: 6px 4px; font-size: 10px; letter-spacing: 0.01em; border-radius: 12px; }
  .nav-cta { min-height: 48px !important; padding-inline: 10px !important; font-size: 9px !important; border-radius: 10px !important; }
}
/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .brand { min-width: 0; }
  .brand img { width: 92px; height: 92px; }
  .brand-text strong { font-size: 30px; }
  .brand-text span { font-size: 15px; }
  .nav-panel {
    position: fixed;
    inset: var(--header) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(7, 8, 12, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100dvh - var(--header));
    overflow: auto;
  }
  body.nav-open .nav-panel { display: flex; }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    max-width: none;
    gap: 8px;
  }
  .nav-links a {
    padding: 14px 12px;
    border-radius: 999px;
    font-size: 13px;
    min-width: 0;
    min-height: 58px;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }
  .nav-links a span {
    display: block;
    line-height: 1.02;
  }
  .nav-cta {
    position: static;
    right: auto;
    width: 100%;
    min-height: 48px !important;
    border-radius: 999px !important;
  }
}
@media (max-width: 900px) {
  .hero-inner,
  .split,
  .mission-grid,
  .card-grid,
  .form-shell,
  .schedule,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .hero { min-height: auto; }
  .hero h1 { max-width: none; }
  .aside-sticky { position: static; }
  .hud { margin-top: 28px; }
  .hud-logo { margin-top: 0; margin-left: 0; }
}
@media (max-width: 560px) {
  :root { --header: 104px; }
  .brand img { width: 82px; height: 82px; }
  .brand-text strong { font-size: 25px; }
  .brand-text span { font-size: 13px; }
  .nav-links { grid-template-columns: 1fr; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .logo-strip { grid-template-columns: 1fr 1fr; max-width: none; }
  .gallery { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  a.mission { min-height: 340px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Sending overlay on booking forms */
.awf-sending {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.78);
  padding: 24px;
}
.awf-sending.is-on { display: flex; }
.awf-sending-card {
  width: min(420px, 100%);
  background: #111;
  border: 1px solid #2a2a2a;
  border-top: 4px solid #ff6a00;
  padding: 28px 24px 24px;
  text-align: center;
  color: #f5f5f5;
}
.awf-sending-card p {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.awf-sending-card span {
  display: block;
  margin-bottom: 18px;
  color: #bbbbbb;
  font-size: 14px;
}
.awf-sending-track {
  height: 10px;
  background: #222;
  border-radius: 999px;
  overflow: hidden;
}
.awf-sending-bar {
  height: 100%;
  width: 0;
  background: #ff6a00;
  transition: width 0.2s linear;
}
.awf-sending-pct {
  margin-top: 10px;
  color: #ff6a00;
  font-weight: 800;
}



.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* Competitions hero marks — Julie WNL white + AWF shield */
.hero-wnl-mark {
  position: absolute;
  top: calc(var(--header) + 12px);
  right: max(1rem, calc((100% - var(--max)) / 2));
  z-index: 3;
  width: min(320px, 42vw);
  height: auto;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.65));
}
.hero-awf-mark {
  position: absolute;
  right: 7%;
  bottom: 6%;
  z-index: 3;
  width: min(168px, 24vw);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.6));
}
@media (max-width: 700px) {
  .hero-wnl-mark { width: min(210px, 52vw); top: calc(var(--header) + 6px); }
  .hero-awf-mark { width: 92px; right: 4%; bottom: 5%; }
}


/* Competitions photo gallery — Julie's full set, 3–4 columns */
.comp-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.comp-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .comp-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .comp-gallery { grid-template-columns: 1fr 1fr; }
}

.comp-gallery img { cursor: zoom-in; }
.comp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.comp-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

/* holidays aliases */
.btn-cyan { }
.btn.btn-cyan { background: linear-gradient(135deg, #1bfff3, #25d7ff); color: #071018; border: 0; }
.btn.btn-cyan:hover { filter: brightness(1.05); }
.jot-wrap { background: #12141a; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.jot-wrap iframe { display:block; width:100%; min-height:760px; border:0; background:#fff; }
.expect-photo { width:100%; height:auto; max-height:340px; object-fit:cover; object-position:center top; display:block; border-radius:14px; }


/* Mikel 12 Sep — stacked H1 + school holidays hero framing */
.page-hero h1.hero-title-stack {
  line-height: 0.92;
}
.page-hero.school-holidays-hero .hero-media.school-holidays-hero-media,
.page-hero.school-holidays-hero .hero-media {
  background-position: center 42%;
  background-size: cover;
}


/* ===== HEADER LOCK (Mikel 13 Sep) — match homepage site.css chrome ===== */
:root { --header: 108px !important; }
.site-header {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 50 !important;
  height: var(--header) !important;
  overflow: hidden !important;
  animation: awf-header-shift 5s linear infinite !important;
  background: linear-gradient(105deg, #000 0%, #181a20 16%, #3a2a48 28%, #575d68 40%, #20242b 52%, #050608 68%, #2a1a32 84%, #111319 100%) !important;
  background-size: 520% 100% !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
}
.site-header::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  animation: awf-header-sheen 3.2s linear infinite !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 101, 8, 0.22) 25%, rgba(27, 255, 243, 0.2) 50%, rgba(255, 42, 163, 0.22) 72%, transparent 100%) !important;
  transform: translateX(-110%) !important;
}
.site-header .nav { position: relative !important; z-index: 1 !important; }
@keyframes awf-header-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes awf-header-sheen {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}
.nav {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-shrink: 0 !important;
  color: #fff !important;
  min-width: 0 !important;
}
.brand img {
  width: 96px !important;
  height: 96px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 8px 16px rgba(255, 101, 8, 0.22)) !important;
}
.brand-text {
  display: grid !important;
  gap: 2px !important;
  line-height: 0.98 !important;
}
.brand-text strong {
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.brand-text span {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--orange) !important;
  white-space: nowrap !important;
}
.nav-panel {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  min-width: 0 !important;
  flex: 0 1 auto !important;
  margin-left: auto !important;
}
.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  max-width: none !important;
  width: auto !important;
  flex: 0 0 auto !important;
}
.nav-links a {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  width: auto !important;
  min-height: 44px !important;
  padding: 6px 8px !important;
  border-radius: 10px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.88) !important;
  text-align: center !important;
  white-space: normal !important;
}
.nav-links a span { display: block !important; line-height: 1.05 !important; }
.nav-links a span + span::before { content: none !important; }
.nav-links a:hover {
  color: var(--orange-hot) !important;
  background: rgba(255, 101, 8, 0.1) !important;
  border-color: rgba(255, 101, 8, 0.28) !important;
}
.nav-links a[aria-current="page"] {
  color: #fff !important;
  background: rgba(255, 101, 8, 0.18) !important;
  border-color: rgba(255, 101, 8, 0.55) !important;
  box-shadow: none !important;
  border-radius: 10px !important;
}
.nav-cta {
  position: static !important;
  flex-shrink: 0 !important;
  margin-left: 4px !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 22px rgba(255, 101, 8, 0.3) !important;
}
@media (min-width: 1181px) and (max-width: 1320px) {
  .nav { gap: 8px !important; }
  .brand { gap: 12px !important; }
  .brand img { width: 88px !important; height: 88px !important; }
  .brand-text strong { font-size: 20px !important; }
  .brand-text span { font-size: 13px !important; letter-spacing: 0.1em !important; }
  .nav-panel { gap: 6px !important; }
  .nav-links a { min-height: 42px !important; padding: 5px 7px !important; font-size: 10.5px !important; }
  .nav-cta { min-height: 44px !important; padding-inline: 14px !important; font-size: 11px !important; }
}
@media (max-width: 1180px) {
  :root { --header: 96px !important; }
}
@media (max-width: 860px) {
  :root { --header: 88px !important; }
}
