/* =========================================================
   Royal Sporting Academy — styles.css
   Mobile-first. Black ground, California Gold accent.
   ========================================================= */

:root {
  --black: #000000;
  --gold: #C39E6D;        /* California Gold */
  --red: #B22234;
  --white: #FFFFFF;
  --grey: #6B6B6B;        /* body text on off-white only (fails AA on black) */
  --off-white: #F4F4F1;

  /* derived */
  --grey-light: #A8A8A8;  /* muted text on black, AA-safe */
  --hero-bg: #F3F4F1;     /* sampled from the hero image background */
  --rule: rgba(255, 255, 255, 0.16);
  --rule-dark: rgba(0, 0, 0, 0.14);

  --font-head: 'Oswald', 'Arial Narrow', Impact, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius: 2px;
  --gutter: 16px;
  --header-h: 72px;
  --focus: var(--gold);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
[hidden] { display: none !important; }

/* Focus */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.section--light, .hero__panel, .cta__panel, .card, .site-footer { --focus: var(--black); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Type ---------- */
h1, h2, h3, h4, .brand__text, .btn, .program__num, .jump__num {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.section__title {
  font-size: clamp(2.125rem, 1.4rem + 3.2vw, 3.75rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  max-width: 16ch;
}
.section__intro {
  max-width: 62ch;
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
}
.h3 {
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  text-transform: uppercase;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}
.h4 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 2rem;
}
p + p { margin-top: 1rem; }

/* TODO marks: bracketed facts not yet supplied */
mark.todo {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  padding: 0 0.3em;
  border-radius: var(--radius);
  outline: 1px dashed var(--red);
  outline-offset: 1px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section {
  padding-top: clamp(4rem, 3rem + 5vw, 7.5rem);
  padding-bottom: clamp(4rem, 3rem + 5vw, 7.5rem);
}
.section--tight { padding-top: 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--light { background: var(--off-white); color: var(--black); }
.section--ruled { border-top: 1px solid var(--rule); }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Heading left, intro right (reference: "Turning Ideas Into Masterpieces") */
.split { display: grid; gap: 1.25rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: end; }
  .split .section__intro { justify-self: end; }
}

.two-col { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .two-col { grid-template-columns: 1fr 1fr; } }
.panel {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

/* Lists with square gold bullets */
.list { list-style: none; margin-top: 1.25rem; }
.list li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.85rem;
  max-width: 52ch;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--gold);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.6rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background-color 150ms ease, color 150ms ease;
}
.btn:hover { background: var(--white); color: var(--black); }
.section--light .btn:hover, .hero__panel .btn:hover, .cta__panel .btn:hover { background: var(--black); color: var(--white); }
.btn--small { min-height: 44px; padding: 0 1.1rem; font-size: 0.9375rem; }
.btn--large { min-height: 56px; padding: 0 2.2rem; font-size: 1.125rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  line-height: 1.2;
  padding-bottom: 2px;
}
.link-arrow:hover { border-bottom-color: currentColor; }

.section--dark a:not(.btn):not(.link-arrow):not(.card a):not(.cta__panel a) {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.section--light a:not(.btn):not(.link-arrow):not(.jump a):not(.callout-box),
.cta__panel a:not(.btn) {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus { top: 8px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
}
.announce p { margin: 0; padding: 0.6rem var(--gutter); }
.announce a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  padding: 0.35rem 0.25rem;
  margin: -0.35rem 0;
}

/* ---------- Header (full-width sticky bar) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  text-decoration: none;
  color: var(--white);
}
.brand__logo { width: 52px; height: 52px; flex: 0 0 auto; }
.brand__name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.brand__name-sub { color: var(--gold); margin-top: 0.15em; }

.site-header__register { display: none; }

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-right: -8px;
}
.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile dropdown */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--rule);
  display: none;
}
.site-nav.is-open { display: block; }
.site-nav__list { list-style: none; padding: 0.25rem var(--gutter) 1.25rem; }
.site-nav__list a:not(.btn) {
  display: block;
  padding: 0.85rem 0;
  min-height: 44px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.site-nav__list a:not(.btn):hover { color: var(--gold); }
.btn--nav { margin-top: 1rem; width: 100%; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-header__inner { gap: 2rem; }
  .brand__logo { width: 56px; height: 56px; }
  .site-nav {
    position: static;
    display: block;
    flex: 1;
    border: 0;
    background: transparent;
  }
  .site-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.25rem, 0.5rem + 1.5vw, 2.5rem);
    padding: 0;
  }
  .site-nav__list a:not(.btn) {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1.0625rem;
    letter-spacing: 0.06em;
    border: 0;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    position: relative;
  }
  .site-nav__list a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 150ms ease;
  }
  .site-nav__list a:not(.btn):hover { color: var(--white); }
  .site-nav__list a:not(.btn):hover::after { transform: scaleX(1); }
  .site-nav__cta { display: none; }
  .site-header__register { display: inline-flex; }
  .btn--nav { margin: 0; width: auto; min-height: 44px; padding: 0 1.25rem; font-size: 0.9375rem; }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--gutter) var(--gutter) 3.5rem;
  background: var(--black);
}
.hero__panel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--hero-bg);
  color: var(--black);
  border-radius: var(--radius);
  padding-top: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  padding-left: clamp(1.25rem, 1rem + 2vw, 3.5rem);
  padding-right: clamp(1.25rem, 1rem + 2vw, 3.5rem);
  overflow: visible;
}
.hero__title {
  text-align: center;
  font-size: clamp(3rem, 1.5rem + 9vw, 6.75rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.hero__grid {
  margin-top: clamp(1.5rem, 1rem + 2vw, 3rem);
  display: grid;
  gap: 1.5rem;
  align-items: end;
}
.hero__copy { text-align: center; }
.hero__sub {
  max-width: 46ch;
  margin: 0 auto;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.55;
}
.hero__copy .link-arrow { margin-top: 1rem; }
.hero__media {
  margin: 0 auto;
  width: min(100%, 360px);
  border-radius: var(--radius) var(--radius) 0 0;
}
.hero__media img { width: 100%; height: auto; }
.hero__programs {
  list-style: none;
  display: none;
}
.hero__actions {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .hero { padding-bottom: 4.5rem; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    margin-top: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  }
  .hero__copy { text-align: left; align-self: center; padding-bottom: 3rem; }
  .hero__sub { margin: 0; max-width: 34ch; }
  .hero__media { width: 100%; max-width: 440px; }
  .hero__programs {
    display: block;
    align-self: center;
    justify-self: end;
    padding-bottom: 3rem;
    min-width: 12rem;
  }
  .hero__programs a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--rule-dark);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1.375rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .hero__programs li:first-child a { border-top: 1px solid var(--rule-dark); }
  .hero__programs a::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--gold);
    margin-right: 0.75rem;
    flex: 0 0 auto;
  }
  .hero__programs a:hover { color: var(--grey); }
}

/* Hero load-in: the only animation on the page */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero__title, .hero__grid { animation: hero-in 600ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero__grid { animation-delay: 120ms; }

/* ---------- The Standard ---------- */
.motto {
  margin-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem) 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 1rem + 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}
.motto__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.35em 0.6em;
}
.motto__accent { color: var(--gold); }
.motto__sep {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- Keep your club: photo band ---------- */
.photo-band {
  position: relative;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-band img { width: 100%; height: auto; }
.photo-band__label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.6em 1em;
  max-width: 22ch;
  line-height: 1.15;
}

/* ---------- Programs ---------- */
.programs-intro { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .programs-intro { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 4rem; align-items: center; }
}
.jump { list-style: none; margin-top: 2rem; display: grid; gap: 0.75rem; max-width: 30rem; }
.jump a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  transition: background-color 150ms ease, color 150ms ease;
}
.jump a:hover { background: var(--black); color: var(--white); }
.jump__num { font-size: 1.125rem; color: var(--grey); }
.jump a:hover .jump__num { color: var(--gold); }
.jump__name { flex: 1; }
.jump__arrow {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
}
.jump__arrow::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 6px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.jump__arrow::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.programs-intro__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  justify-self: end;
}
.programs-intro__media img { width: 100%; height: auto; }
.callout-box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius) 0 0 0;
  max-width: 14ch;
  line-height: 1.15;
}
.callout-box:hover { background: var(--black); color: var(--white); }

.program {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--black);
  display: grid;
  gap: 1rem;
}
.program:first-of-type { margin-top: clamp(3.5rem, 2.5rem + 3vw, 5.5rem); }
.program__num {
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.program__num::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 4px;
  background: var(--gold);
  margin-top: 0.5rem;
}
.program__title {
  font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.75rem);
  text-transform: uppercase;
  font-weight: 700;
}
.program__tag {
  margin-top: 0.5rem;
  color: var(--grey);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.program__body > p:not(.program__tag) { margin-top: 1.25rem; max-width: 66ch; }
.program__body > .btn { margin-top: 1.75rem; }

@media (min-width: 720px) {
  .program { grid-template-columns: 6rem 1fr; gap: 0 2rem; }
}

.glance {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
}
.glance li { padding-right: 0.9rem; margin-right: 0.9rem; border-right: 2px solid var(--gold); line-height: 1.3; }
.glance li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

.listing { list-style: none; margin-top: 1.5rem; }
.listing__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.listing__row + .listing__row { border-top: 0; }
.listing__text { font-weight: 600; }

.empty {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  max-width: 62ch;
  font-weight: 500;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin-top: 1rem;
  max-width: 62ch;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-top: 1rem;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1;
  color: var(--black);
}
.tryouts { margin-top: 1.75rem; }
.tryouts--closed { font-weight: 500; }
.tryouts--closed .link-arrow { margin-left: 0.25rem; }

/* ---------- Coaches: card grid ---------- */
.card {
  background: var(--off-white);
  color: var(--black);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}
.coaches {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) { .coaches { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

.coach { display: grid; gap: 0.25rem; align-content: start; }
.coach__placeholder,
.coach__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.coach__placeholder {
  background: var(--black);
  border: 3px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
}
.coach__photo { object-fit: cover; }
.coach__name { font-size: 1.625rem; text-transform: uppercase; }
.coach__role {
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.coach__bio { margin-top: 0.75rem; }

/* ---------- Ticker band (static) ---------- */
.ticker {
  background: var(--gold);
  color: var(--black);
  overflow: hidden;
  border-top: 3px solid var(--black);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  padding: 0.9rem 0 0.9rem var(--gutter);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ticker__sep {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: var(--black);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ---------- FAQ ---------- */
.faq { border-top: 2px solid var(--black); }
.faq:first-of-type { margin-top: 2.5rem; }
.faq:last-of-type { border-bottom: 2px solid var(--black); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
  padding: 1.1rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--black);
}
.faq[open] summary::after { content: "\2212"; }
.faq__body { padding: 0 0 1.5rem; max-width: 62ch; }

.age-calc__label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.age-calc__row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.age-calc__input {
  font: inherit;
  min-height: 44px;
  padding: 0 0.75rem;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  min-width: 12rem;
}
.age-calc__out { margin-top: 1rem; font-weight: 600; }
.age-calc__out:empty { display: none; }
.age-calc__rule { margin-top: 1rem; font-size: 0.9375rem; color: var(--grey); }

/* ---------- Final CTA: light card with the player ---------- */
.cta__panel {
  background: var(--hero-bg);
  color: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
}
.cta__copy {
  padding: clamp(2.5rem, 2rem + 3vw, 5rem) clamp(1.25rem, 1rem + 2vw, 4rem) clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.cta__title {
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.98;
  text-wrap: balance;
}
.cta__body { margin-top: 1.5rem; max-width: 46ch; font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem); }
.cta__copy .btn--large { margin-top: 2.25rem; }
.cta__media { display: none; }

@media (min-width: 900px) {
  .cta__panel { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); align-items: end; }
  .cta__copy { align-self: center; }
  .cta__media { display: block; padding: 2.5rem 2.5rem 0 0; }
  .cta__media img { width: 100%; max-width: 400px; margin-left: auto; height: auto; }
}

/* ---------- Footer (gold block, crest, three columns) ---------- */
.site-footer {
  background: var(--gold);
  color: var(--black);
  padding: clamp(3rem, 2rem + 3vw, 4.5rem) 0 1.75rem;
}
.site-footer a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 1px;
}
.site-footer a:hover { border-bottom-color: var(--black); }
.site-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem; } }

.site-footer__crest { width: 120px; height: 120px; }
.site-footer__name {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-footer__name-sub { color: var(--black); opacity: 0.72; margin-top: 0.15em; }
.site-footer__tag { margin-top: 1rem; max-width: 36ch; font-size: 0.9375rem; }

.site-footer__heading {
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--black);
  margin-bottom: 1rem;
}
.site-footer__list { list-style: none; font-size: 0.9375rem; }
.site-footer__list li { padding: 0.35rem 0; }
.site-footer__list a, .site-footer__social a { display: inline-block; min-height: 24px; }

.site-footer__social {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  border: 2px solid var(--black);
  border-bottom-width: 2px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color 150ms ease, color 150ms ease;
}
.site-footer__social a:hover { background: var(--black); color: var(--gold); }

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
}
.site-footer__links { list-style: none; display: flex; gap: 1.5rem; }
