@font-face {
  font-family: "Freight Sans Pro";
  src: url("assets/fonts/FreightSansProBook-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Freight Sans Pro";
  src: url("assets/fonts/FreightSansProBook-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Freight Sans Pro";
  src: url("assets/fonts/FreightSansProSemibold-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Freight Sans Pro";
  src: url("assets/fonts/FreightSansProBold-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Aardvark";
  src: url("assets/fonts/Aardvark-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #0d1a22;
  --paper: #f5f2eb;
  --white: #fff;
  --brand: #008c4f;
  --brand-dark: #006c3d;
  --accent: #fff200;
  --muted: #696761;
  --line: rgba(16, 16, 16, 0.16);
  --max: 1180px;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Freight Sans Pro", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.8rem 1rem;
  background: var(--white);
}
.skip:focus {
  top: 1rem;
}
.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 1.5rem), var(--max));
  color: var(--white);
  background: rgba(16, 16, 16, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.nav {
  width: 100%;
  min-height: 58px;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.logo {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
}
.logo img {
  width: 96px;
  height: 76px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}
.menu {
  display: none;
  margin-left: auto;
  border: 1px solid #777;
  color: white;
  background: transparent;
  padding: 0.6rem 0.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.button.alt {
  background: transparent;
  border-color: currentColor;
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
}
h1,
h2 {
  margin: 0 0 0.8rem;
  font-family: "Aardvark", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h3 {
  margin: 0 0 0.8rem;
  font-family: "Freight Sans Pro", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 11ch;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}
h3 {
  font-size: 1.4rem;
}
.no-break {
  white-space: nowrap;
}
.hero {
  min-height: 690px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15)),
    url("assets/images/hero.webp") center/cover;
}
.hero-inner {
  padding-block: 8rem 5rem;
}
.hero p {
  max-width: 560px;
  font-size: 1.2rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.strip {
  padding: 1rem;
  color: var(--ink);
  background: var(--accent);
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section.dark {
  color: white;
  background: var(--ink);
}
.section.red {
  color: var(--ink);
  background: var(--accent);
}
.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.lead {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  max-width: 38ch;
}
.intro-instructor-button {
  margin-top: 0.75rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.dark .card {
  background: #1b1b1b;
  border-color: #333;
}
.card .number {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
}
.card p {
  color: var(--muted);
}
.dark .card p {
  color: #c9c7c2;
}
.programme-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.programme-heading .eyebrow {
  color: var(--accent);
}
.programme-heading h2 {
  max-width: 12ch;
}
.programme-rally {
  font-size: clamp(2.65rem, 5.7vw, 5.35rem);
  line-height: 0.96;
}
.programme-rally span {
  display: block;
  width: fit-content;
}
.programme-rally span:nth-child(1) {
  color: var(--brand);
}
.programme-rally span:nth-child(2) {
  margin-left: 0.35em;
  color: white;
}
.programme-rally span:nth-child(3) {
  margin-left: 0.7em;
  color: var(--accent);
}
.programme-intro {
  margin: 0 0 0.65rem;
  color: #dedbd3;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}
.programme-grid {
  counter-reset: programme;
  align-items: stretch;
}
.programme-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 2px solid #444;
}
.programme-section.dark .programme-card {
  border-color: #444;
  box-shadow: none;
}
.programme-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--brand);
}
.programme-card:nth-child(2)::before {
  background: var(--accent);
}
.programme-card:nth-child(3)::before {
  background: white;
}
.programme-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}
.programme-card .number {
  font-family: "Aardvark", Impact, sans-serif;
  font-size: 3.8rem;
  line-height: 0.8;
  opacity: 0.8;
}
.programme-stage {
  padding: 0.45rem 0.7rem;
  color: #111;
  background: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.programme-card:nth-child(2) .programme-stage {
  color: white;
  background: var(--brand);
}
.programme-card:nth-child(3) .programme-stage {
  background: white;
}
.programme-card h3 {
  color: white;
  font-family: "Aardvark", Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.programme-card > p {
  margin-bottom: 1.35rem;
  line-height: 1.5;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.skill-tags li {
  padding: 0.35rem 0.65rem;
  border: 1px solid #555;
  border-radius: 999px;
  color: #f2f0eb;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.programme-example {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #484848;
}
.programme-example strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.programme-example span {
  display: block;
  color: #bbb8b2;
  font-size: 0.92rem;
  line-height: 1.45;
}
.programme-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  margin-top: 2.8rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: #111;
  background: var(--accent);
  border: 2px solid white;
  box-shadow: 8px 8px 0 var(--brand);
}
.principle-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}
.programme-principle .eyebrow {
  margin-bottom: 0.35rem;
}
.programme-principle strong {
  display: block;
  max-width: 850px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.split-image {
  min-height: 420px;
  background: url("assets/images/youth-coaching.webp") 48% center/cover;
}
.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 7vw, 7rem);
  background: var(--white);
}
.quote {
  margin: 0;
  padding: 1.5rem;
  border-left: 5px solid var(--brand);
  font-size: 1.1rem;
}
.quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  text-transform: uppercase;
}
.page-hero {
  padding-block: 7rem 4rem;
  color: white;
  background: var(--ink);
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
.faq summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-primary {
  max-width: 760px;
}
.contact-alternatives {
  margin: 2rem 0 0;
  padding: 1.25rem 1.4rem;
  border-left: 5px solid var(--brand);
  background: rgba(255, 255, 255, 0.55);
}
.contact-alternatives h3 {
  margin-bottom: 0.55rem;
  color: var(--brand);
}
.contact-alternatives p {
  margin: 0 0 0.8rem;
}
.contact-alternatives p:last-child {
  margin-bottom: 0;
  line-height: 1.75;
}
.contact-alternatives a {
  font-weight: 800;
}
.contact-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.contact-note p {
  margin: 0 0 0.65rem;
}
label {
  display: block;
  margin: 0 0 1rem;
  font-weight: 700;
}
input,
textarea,
select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem;
  border: 1px solid #999;
  background: white;
  font: inherit;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.site-footer {
  padding-block: 3rem;
  color: white;
  background: #080808;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(150px, 0.8fr) minmax(
      220px,
      1fr
    );
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.footer-grid h3 {
  margin: 0 0 1rem;
  color: var(--accent);
}
.footer-grid a {
  color: #e6e4df;
  text-decoration: none;
}
.footer-grid a:hover {
  color: var(--accent);
}
.footer-brand .logo {
  margin-bottom: 1.15rem;
}
.footer-brand .logo img {
  width: 178px;
  height: auto;
}
.footer-brand p {
  max-width: 31rem;
  margin: 0;
  color: #d7d5d0;
}
.footer-links a {
  display: block;
  margin-bottom: 0.55rem;
}
.footer-contact p {
  margin: 0 0 1rem;
  color: #d7d5d0;
}
.footer-contact strong {
  color: white;
}
.small {
  color: #aaa;
  font-size: 0.8rem;
}
@media (max-width: 800px) {
  .menu {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    inset: 76px 0 auto;
    padding: 1rem;
    background: #111;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .intro,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  #family-workshops .button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }
  .intro-instructor-button {
    display: flex;
    width: fit-content;
    margin: 1.25rem auto 0;
  }
  .programme-heading {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .programme-heading h2 {
    max-width: none;
  }
  .programme-rally {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }
  .programme-rally span:nth-child(2) {
    margin-left: 0.18em;
  }
  .programme-rally span:nth-child(3) {
    margin-left: 0.36em;
  }
  .programme-intro {
    margin: 0.7rem 0 0;
  }
  .programme-grid {
    gap: 1.5rem;
  }
  .programme-card {
    min-height: 0;
    padding: 1.5rem;
    border-width: 2px;
  }
  .programme-card-top {
    margin-bottom: 2rem;
  }
  .programme-card .number {
    font-size: 3.25rem;
  }
  .programme-example {
    margin-top: 0.5rem;
  }
  .programme-principle {
    grid-template-columns: 1fr;
  }
  .principle-mark {
    width: 52px;
    height: 52px;
  }
  .hero {
    min-height: 620px;
  }
}

/* StreetSmart-inspired visual direction */
:root {
  --ink: #111;
  --paper: #fff500;
  --brand: #087a4d;
  --brand-dark: #045f3b;
  --accent: #fff500;
  --muted: #444;
  --radius: 999px;
}
body {
  background: var(--accent);
  font-size: 1.15rem;
}
.site-header {
  background: rgba(17, 17, 17, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.16);
}
.nav {
  min-height: 58px;
}
.logo img {
  width: 104px;
  height: 82px;
}
.nav-links a:not(.button) {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu {
  border: 0;
  font-family: "Aardvark", Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.button {
  min-height: 56px;
  padding: 0.85rem 1.8rem;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}
.button.alt {
  border: 2px solid currentColor;
}
.hero {
  position: relative;
  min-height: 760px;
  align-items: end;
  background: #111;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(0, 0, 0, 0.9) 76%
    ),
    url("assets/images/hero-desktop-1600.webp") 42% top/cover;
  filter: grayscale(1) contrast(1.08);
  z-index: -2;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 82px;
  background: var(--accent);
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.hero-inner {
  padding: 50rem 0 7rem;
  text-align: center;
}
.hero-logo {
  width: clamp(150px, 18vw, 220px);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(1px 0 0 white) drop-shadow(-1px 0 0 white)
    drop-shadow(0 1px 0 white) drop-shadow(0 -1px 0 white)
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.65));
}
.hero h1 {
  max-width: 100%;
  margin-inline: auto;
  color: var(--accent);
  font-size: clamp(3rem, 7.2vw, 6rem);
  text-wrap: balance;
  text-shadow: 0 4px 18px #000;
}
.hero .eyebrow {
  color: var(--accent);
}
.hero p {
  margin-inline: auto;
  font-weight: 600;
}
.hero .actions {
  justify-content: center;
}
.hero .button {
  min-width: min(100%, 330px);
}
.hero .button.alt {
  color: white;
}
.strip {
  padding: 1.15rem;
  border-block: 3px solid #111;
}
.action-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
}
.gallery-frame {
  min-width: 0;
  overflow: hidden;
  background: #111;
}
.gallery-frame:first-child {
  grid-row: span 2;
}
.action-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.65s ease;
}
.gallery-frame:first-child img {
  height: 660px;
}
.gallery-frame:nth-child(2) img {
  object-position: 50% 42%;
}
.gallery-frame:nth-child(3) img {
  object-position: 50% 44%;
}
.section {
  background: var(--accent);
}
.section.dark {
  color: white;
  background: #171717;
}
.section.red {
  background: var(--brand);
  color: white;
}
.section.red h2,
.section.red .eyebrow {
  color: white;
}
.section.red .button.alt {
  color: white;
}
.eyebrow {
  color: var(--brand);
}
h1,
h2 {
  color: var(--brand);
}
.page-hero {
  position: relative;
  padding-block: 8rem 6rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.25)),
    url("assets/images/youth-teamwork.webp") 50% 48% / cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 55px;
  background: var(--accent);
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}
.page-hero h1 {
  color: var(--accent);
}
.page-hero .eyebrow {
  color: white;
}
.card {
  border: 2px solid #111;
  border-radius: 0;
  box-shadow: 7px 7px 0 #111;
}
.dark .card {
  box-shadow: 7px 7px 0 var(--accent);
}
.split {
  background: white;
}
.split-image {
  filter: grayscale(1) contrast(1.08);
}
.quote {
  background: rgba(255, 255, 255, 0.38);
  border-left-width: 8px;
}
.site-footer {
  border-top: 8px solid var(--accent);
}
.site-footer .logo img {
  filter: drop-shadow(1px 0 0 white) drop-shadow(-1px 0 0 white)
    drop-shadow(0 1px 0 white) drop-shadow(0 -1px 0 white);
}
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #343434;
  color: #aaa;
}
.footer-legal p {
  margin: 0;
}
.footer-legal p:last-child {
  text-align: right;
}
.footer-legal a {
  color: #d7d5d0;
}

@media (max-width: 760px) {
  .footer-grid {
    gap: 0;
  }
  .footer-brand,
  .footer-links,
  .footer-contact {
    padding-block: 1.5rem;
    border-bottom: 1px solid #343434;
  }
  .footer-brand {
    padding-top: 0;
  }
  .footer-brand .logo img {
    width: 156px;
  }
  .footer-legal {
    display: block;
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 0;
  }
  .footer-legal p {
    margin-bottom: 1rem;
  }
  .footer-legal p:last-child {
    text-align: left;
    margin-bottom: 0;
  }
}
.hp {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.class-list {
  padding-top: 4rem;
}
.programme-accordion {
  margin-top: 2.5rem;
  border-top: 2px solid #111;
}
.programme-accordion details {
  border-bottom: 2px solid #111;
}
.programme-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 1.2rem 4rem 1.2rem 0;
  color: var(--brand);
  cursor: pointer;
  list-style: none;
  font-family: "Aardvark", Impact, sans-serif;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}
.programme-accordion summary::-webkit-details-marker {
  display: none;
}
.programme-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  color: #111;
  font-family: Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
}
.programme-accordion details[open] summary::after {
  content: "−";
}
.programme-accordion summary small {
  display: inline-block;
  margin-left: 0.55rem;
  font-family: "Freight Sans Pro", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.accordion-content {
  max-width: 760px;
  padding: 0 0 2.7rem;
  color: #111;
}
.accordion-content .lead {
  max-width: 34ch;
  font-weight: 700;
}
.programme-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-block: 2rem;
}
.text-link {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 0.2em;
}
.accordion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}
.faq details {
  border-color: #111;
}
.faq summary {
  color: var(--brand);
  font-family: "Aardvark", Impact, sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}
.instructor-credential {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.35rem;
  align-items: start;
  margin-block: 2rem;
  padding-block: 1.5rem;
  border-block: 2px solid #111;
}
.instructor-credential img {
  width: 150px;
  height: auto;
}
.instructor-credential h3 {
  margin-bottom: 0.45rem;
  color: var(--brand);
}
.instructor-credential p {
  margin: 0;
}
.credential-points {
  margin: 1rem 0;
  padding-left: 1.1rem;
}
.credential-points li {
  margin-bottom: 0.35rem;
}
.trial-hero .lead {
  max-width: 44ch;
  color: white;
}
.trial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.65rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}
.trial-card {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  color: white;
  background: #171717;
  border: 3px solid #111;
  box-shadow: 9px 9px 0 var(--brand);
}
.trial-card .eyebrow {
  color: var(--accent);
}
.trial-price {
  margin: 0;
  color: var(--accent);
  font-family: "Aardvark", Impact, sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
}
.trial-card dl {
  margin-block: 1.5rem 2rem;
}
.trial-card dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding-block: 0.8rem;
  border-top: 1px solid #444;
}
.trial-card dt {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}
.trial-card dd {
  margin: 0;
}
.trial-card .button {
  width: 100%;
}
.trial-card .small {
  margin-bottom: 0;
  color: #bbb;
}
.trial-steps .card p {
  color: #c9c7c2;
}
.trial-prep .trial-image {
  min-height: 520px;
  background: url("assets/images/youth-pad-strike.webp") 50% 42% / cover;
  filter: grayscale(1) contrast(1.08);
}
.trial-faq {
  max-width: 900px;
}

/* Purposeful motion: energetic, lightweight and accessibility-aware */
html.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
html.motion-ready body:not(.motion-start) .hero .eyebrow,
html.motion-ready body:not(.motion-start) .hero h1,
html.motion-ready body:not(.motion-start) .hero-inner > p:not(.eyebrow),
html.motion-ready body:not(.motion-start) .hero .actions,
html.motion-ready body:not(.motion-start) .hero-logo {
  opacity: 0;
}
html.motion-ready body.motion-start .hero-logo {
  animation: hero-fade 0.75s 0.08s both;
}
html.motion-ready body.motion-start .hero .eyebrow {
  animation: hero-rise 0.65s 0.18s both;
}
html.motion-ready body.motion-start .hero h1 {
  animation: hero-rise 0.75s 0.28s both;
}
html.motion-ready body.motion-start .hero-inner > p:not(.eyebrow) {
  animation: hero-rise 0.75s 0.4s both;
}
html.motion-ready body.motion-start .hero .actions {
  animation: hero-rise 0.75s 0.52s both;
}
@keyframes hero-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .gallery-frame:hover img {
    transform: scale(1.045);
    filter: grayscale(0.15) contrast(1.04) saturate(0.85);
  }
  .button {
    transition:
      transform 0.22s ease,
      background-color 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }
  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 rgba(17, 17, 17, 0.18);
  }
  .section.dark .button:hover,
  .site-header .button:hover {
    box-shadow: 0 9px 0 rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 800px) {
  .site-header {
    top: 0.5rem;
    right: 0.5rem;
    left: auto;
    width: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }
  .nav {
    width: auto;
    min-height: 0;
    padding: 0;
  }
  .menu {
    padding: 0.7rem 1rem;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
  }
  .nav-links {
    top: 3.5rem;
    right: 0;
    left: auto;
    width: min(88vw, 330px);
    padding: 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  }
  .nav-links .button {
    margin-top: 0.5rem;
  }
  .hero {
    min-height: 0;
  }
  .hero::before {
    background-color: #111;
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.08) 42%,
        rgba(0, 0, 0, 0.9) 76%
      ),
      url("assets/images/hero-mobile-1200.webp");
    background-position:
      center,
      38% 5.5rem;
    background-size:
      cover,
      auto calc(100% - 5.5rem);
    background-repeat: no-repeat;
  }
  .hero-inner {
    padding: 20rem 0 6rem;
  }
  .hero-logo {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    width: 239px;
    margin: 0;
    transform: translateX(-50%);
  }
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 11.5vw, 4rem);
    line-height: 0.92;
  }
  .hero .actions {
    display: grid;
  }
  .action-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-frame,
  .gallery-frame:first-child {
    grid-row: auto;
  }
  .gallery-frame:last-child {
    grid-column: 1 / -1;
  }
  .action-gallery img,
  .gallery-frame:first-child img {
    height: 240px;
  }
  .programme-accordion summary {
    min-height: 82px;
    padding-right: 3rem;
  }
  .programme-accordion summary small {
    display: block;
    margin: 0.35rem 0 0;
  }
  .programme-facts {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .instructor-credential {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .instructor-credential img {
    width: 150px;
  }
  .trial-intro {
    grid-template-columns: 1fr;
  }
  .trial-card {
    min-width: 0;
  }
  .trial-prep .trial-image {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  html.motion-ready .reveal,
  html.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html.motion-ready body.motion-start .hero-logo,
  html.motion-ready body.motion-start .hero .eyebrow,
  html.motion-ready body.motion-start .hero h1,
  html.motion-ready body.motion-start .hero-inner > p:not(.eyebrow),
  html.motion-ready body.motion-start .hero .actions,
  html.motion-ready body.motion-start .hero::before {
    animation: none;
    opacity: 1;
  }
  .action-gallery img,
  .button {
    transition: none;
  }
}
