/* Confluence Krav Maga — River Steel
   Steel and mist grounds, one ember action colour, and the logo's
   yellow-orange-red kept for the logo and the confluence mark only. */

:root {
  --page: #EEF0F2;
  --surface: #FFFFFF;
  --ink: #12161B;
  --muted: #4B5561;
  --line: #D5DAE0;

  --steel: #1F2A36;
  --band: #141A21;
  --on-band: #EEF0F2;
  --on-band-muted: #A9B4C0;
  --band-line: rgba(238, 240, 242, 0.16);

  --ember: #B83A16;
  --ember-hover: #9E3113;
  --on-ember: #FFFFFF;
  --ember-text: #B83A16;
  --ember-bright: #F07A4F;
  --signal: #F9C630;
  --focus: #1F2A36;


  --prog-adult-bg: #FBE3D9;  --prog-adult-ink: #7A2A10;
  --prog-kids-bg: #DCEAF6;   --prog-kids-ink: #17456B;
  --prog-fitness-bg: #DCEFE3; --prog-fitness-ink: #1F5B3A;
  --prog-mat-bg: #E7E2F4;    --prog-mat-ink: #4A3A78;

  --display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --body: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(18, 22, 27, 0.06), 0 12px 32px -20px rgba(18, 22, 27, 0.4);
  --wrap: 72rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0F1419;
    --surface: #18202A;
    --ink: #E7ECF1;
    --muted: #A3AEBA;
    --line: #2A3440;
    --steel: #1B2530;
    --band: #0A0E12;
    --ember-text: #F28A62;
    --focus: #F9C630;
    --prog-adult-bg: #3A1E14;  --prog-adult-ink: #F7B79D;
    --prog-kids-bg: #15283B;   --prog-kids-ink: #A9CDEF;
    --prog-fitness-bg: #14301F; --prog-fitness-ink: #9FD8B4;
    --prog-mat-bg: #27203F;    --prog-mat-ink: #C9BDF2;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px -20px rgba(0, 0, 0, 0.8);
  }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
p { margin: 0; }
a { color: var(--ember-text); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.hero :focus-visible,
.proof :focus-visible,
.section-band :focus-visible,
.price-panel :focus-visible,
.site-footer :focus-visible,
.page-links :focus-visible { outline-color: var(--signal); }

h1, h2, h3 {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-weight: 800; font-size: clamp(2.75rem, 7vw, 5.25rem); }
h2 { font-weight: 800; font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-weight: 700; font-size: 1.5rem; line-height: 1.05; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 34rem); margin-inline: auto; }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--signal); color: #12161B;
  padding: 0.55rem 0.9rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none;
}
.skip:focus { top: 1rem; }

.eyebrow, .kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.eyebrow { color: var(--ember-text); }
.eyebrow-light { color: var(--ember-bright); }
.kicker { color: var(--signal); }

.section-intro { color: var(--muted); font-size: 1.125rem; max-width: 58ch; margin-top: 0.9rem; }
.fine { color: var(--muted); font-size: 0.95rem; margin-top: 1.5rem; }
.on-band-muted { color: var(--on-band-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.9rem; padding: 0.65rem 1.25rem;
  border: 2px solid transparent; border-radius: var(--radius);
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: progress; }
.btn-lg { min-height: 3.4rem; padding: 0.8rem 1.6rem; font-size: 1.2rem; }
.btn-ember { background: var(--ember); color: var(--on-ember); }
.btn-ember:hover { background: var(--ember-hover); }
.btn-ghost { color: var(--on-band); border-color: rgba(238, 240, 242, 0.5); }
.btn-ghost:hover { border-color: var(--on-band); background: rgba(238, 240, 242, 0.08); }
.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--page); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.text-link { font-weight: 600; }

/* ---------- header (always light, so the logo's red reads) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #FFFFFF; color: #12161B;
  border-bottom: 1px solid #D5DAE0;
}
.site-header :focus-visible { outline-color: #1F2A36; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 4.5rem; }
.site-header.is-minimal .header-row { justify-content: center; }
.brand img { width: 12.5rem; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.25rem; }
.site-nav ul a {
  color: #12161B; text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: 1.08rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.4rem 0; border-bottom: 2px solid transparent;
}
.site-nav ul a:hover { border-bottom-color: #B83A16; }
/* Two lines — the offer, then the alternative — so the label stays narrow
   enough to sit beside the nav links. */
.nav-cta { background: #B83A16; color: #FFFFFF; flex-direction: column; gap: 0.15rem; line-height: 1.15; text-align: center; }
/* Each line stays whole: left to wrap, the narrower desktop widths break one of
   them again and the button grows to three ragged lines. */
.nav-cta span { white-space: nowrap; }

.nav-toggle {
  display: none; align-items: center; gap: 0.6rem;
  min-height: 2.75rem; padding: 0.45rem 0.85rem;
  background: none; color: #12161B; border: 2px solid #12161B; border-radius: var(--radius);
  font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: currentColor;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 1rem;
    padding: 0.5rem 1.25rem 1.5rem;
    background: #FFFFFF; border-bottom: 1px solid #D5DAE0; box-shadow: var(--shadow);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 0.85rem 0; font-size: 1.3rem; border-bottom: 1px solid #E4E8EC; }
  .site-nav ul a:hover { border-bottom-color: #E4E8EC; color: #B83A16; }
  .brand img { width: 10.5rem; }
}

/* ---------- confluence mark ---------- */
.confluence { display: block; width: 100%; height: 2.5rem; pointer-events: none; }
.hero-confluence { position: absolute; left: 0; bottom: 1.25rem; height: 2rem; opacity: 0.9; }
.footer-confluence { height: 1.5rem; margin: -3.5rem 0 2.5rem; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--band); color: var(--on-band); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3rem; align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
}
.hero h1 span { color: var(--ember-bright); }
.hero-sub { color: var(--on-band-muted); font-size: 1.2rem; max-width: 44ch; margin: 1.25rem 0 1.9rem; }
.hero-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.75); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2.25rem; }
  .hero-photo img { aspect-ratio: 16 / 9; }
}

/* ---------- proof strip ---------- */
.proof { background: var(--steel); color: var(--on-band); }
.proof-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; padding: 1.4rem 0; }
.proof p { color: var(--on-band-muted); font-size: 0.95rem; line-height: 1.35; }
.proof strong {
  display: block; color: var(--on-band);
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.03em; text-transform: uppercase;
}
@media (max-width: 760px) { .proof-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tight { padding-top: 2rem; }
.section-surface { background: var(--surface); }
.section-band { background: var(--band); color: var(--on-band); }
.section-band .section-intro { color: var(--on-band-muted); }
.section-band a:not(.btn) { color: var(--on-band); }
.section-head { margin-bottom: 2.5rem; }
.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.25rem; }

.page-head { padding: clamp(2.5rem, 6vw, 4rem) 0 2.25rem; border-bottom: 1px solid var(--line); }
.page-head .btn-row { margin-top: 1.6rem; }

/* program colours, shared by program cards and schedule entries */
.prog-adult { --prog-bg: var(--prog-adult-bg); --prog-ink: var(--prog-adult-ink); }
.prog-kids { --prog-bg: var(--prog-kids-bg); --prog-ink: var(--prog-kids-ink); }
.prog-fitness { --prog-bg: var(--prog-fitness-bg); --prog-ink: var(--prog-fitness-ink); }
.prog-ground, .prog-striking, .prog-kickboxing { --prog-bg: var(--prog-mat-bg); --prog-ink: var(--prog-mat-ink); }
.prog-other { --prog-bg: var(--line); --prog-ink: var(--ink); }

/* ---------- programs ---------- */
.programs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.program {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.program-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.program-body { flex: 1; display: flex; flex-direction: column; gap: 0.9rem; padding: 1.4rem 1.4rem 1.5rem; }
.program-for {
  align-self: flex-start;
  padding: 0.2rem 0.55rem; border-radius: 3px;
  background: var(--prog-bg); color: var(--prog-ink);
  font-family: var(--display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.program-summary { color: var(--muted); }
.program-times {
  list-style: none; margin: 0; padding: 0.85rem 0 0;
  display: grid; gap: 0.3rem;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.program-times li { display: flex; gap: 0.75rem; }
.program-times .d {
  width: 2.6rem; flex: none;
  font-family: var(--display); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.program-more summary { cursor: pointer; font-weight: 600; }
.program-more[open] summary { margin-bottom: 0.7rem; }
.program-more p { color: var(--muted); font-size: 0.98rem; }
.program-more p + p { margin-top: 0.7rem; }
.program .text-link { margin-top: auto; }
.also { margin-top: 1.75rem; color: var(--muted); }
.also strong { color: var(--ink); font-weight: 600; }

@media (max-width: 960px) {
  .programs { grid-template-columns: minmax(0, 1fr); }
  .program { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
  .program-img { height: 100%; aspect-ratio: auto; }
}
@media (max-width: 600px) {
  .program { display: flex; }
  .program-img { height: auto; aspect-ratio: 3 / 2; }
}

/* ---------- schedule ---------- */
.week { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.day { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1rem 1.2rem; }
.section-surface .day { background: var(--page); }
.day.is-today { border: 2px solid var(--ember); padding: calc(1.1rem - 1px) calc(1rem - 1px) calc(1.2rem - 1px); }
.day-name { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 1.5rem; margin-bottom: 0.9rem; }
.today-badge {
  display: none;
  padding: 0.25rem 0.5rem; border-radius: 3px;
  background: var(--ember); color: var(--on-ember);
  font-size: 0.8rem; letter-spacing: 0.1em;
}
.day.is-today .today-badge { display: inline-block; }
.classes { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.class {
  display: grid; grid-template-columns: 4.4rem minmax(0, 1fr); gap: 0.05rem 0.75rem;
  padding: 0.7rem 0.8rem; border-radius: 4px;
  background: var(--prog-bg); color: var(--prog-ink);
}
.class-time {
  grid-row: span 2;
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; line-height: 1.25;
  font-variant-numeric: tabular-nums;
}
.class-name { font-weight: 600; line-height: 1.3; }
.class-audience { font-size: 0.9rem; line-height: 1.35; }

@media (max-width: 960px) { .week { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .week { grid-template-columns: minmax(0, 1fr); } }

/* ---------- first class + pricing ---------- */
.first-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 3rem; align-items: start; }
.faq { margin-top: 1.75rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.02em; text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--ember-text); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { max-width: 60ch; padding: 0 0 1.2rem; color: var(--muted); }

.price-panel {
  position: sticky; top: 6rem;
  padding: 2rem 1.75rem;
  background: var(--steel); color: var(--on-band); border-radius: var(--radius);
}
.price-title { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.price-from { color: var(--on-band-muted); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.08em; }
.price { font-size: clamp(3.5rem, 8vw, 5rem); line-height: 0.9; font-variant-numeric: tabular-nums; }
.price-panel p:not(.eyebrow) { color: var(--on-band-muted); }
.btn-col { display: grid; gap: 0.7rem; margin-top: 1.5rem; }

@media (max-width: 900px) {
  .first-grid { grid-template-columns: minmax(0, 1fr); }
  .price-panel { position: static; }
}

/* ---------- instructors ---------- */
.instructors { display: grid; gap: 1.5rem; }
.instructor {
  display: grid; grid-template-columns: 9.5rem minmax(0, 1fr); gap: 1.4rem; align-items: start;
  max-width: 56rem;
  padding: 1.4rem;
  background: var(--page); border: 1px solid var(--line); border-radius: var(--radius);
}
.instructor img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.nick { color: var(--ember-text); }
.creds { list-style: none; margin: 0.9rem 0 0; padding: 0; display: grid; gap: 0.45rem; }
.creds li { position: relative; padding-left: 1.1rem; font-size: 0.98rem; line-height: 1.4; }
.creds li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 0.45rem; height: 2px; background: var(--ember-text); }

@media (max-width: 480px) {
  .instructor { grid-template-columns: minmax(0, 1fr); }
  .instructor img { max-width: 10rem; }
}

/* ---------- reviews ---------- */
.reviews { columns: 3 18rem; column-gap: 1.5rem; }
.review {
  break-inside: avoid; margin: 0 0 1.5rem;
  padding: 1.4rem 1.4rem 1.2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.review blockquote { margin: 0; }
.review blockquote p::before { content: "“"; }
.review blockquote p::after { content: "”"; }
.review figcaption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.25rem 1rem; margin-top: 1rem; font-size: 0.92rem; }
.review-name { font-weight: 600; }
.review-src { color: var(--muted); }
.review-cta { margin-top: 0.5rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 3rem; align-items: start; }
.contact-list { display: grid; gap: 1.1rem; margin: 1.75rem 0; }
.contact-list div { display: grid; grid-template-columns: 6rem minmax(0, 1fr); gap: 1rem; }
.contact-list dt {
  padding-top: 0.15rem; color: var(--on-band-muted);
  font-family: var(--display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-list dd { margin: 0; font-size: 1.1rem; overflow-wrap: anywhere; }
.map { margin-top: 1.75rem; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); background: var(--steel); }
.map iframe { display: block; width: 100%; height: 100%; border: 0; }

.enquiry-panel {
  position: relative; display: grid; gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--surface); color: var(--ink); border-radius: var(--radius);
}
.enquiry-panel :focus-visible { outline-color: var(--focus); }
.enquiry-panel h3 { font-size: 1.8rem; }
.enquiry-panel p { margin: 0; max-width: 46ch; }
.enquiry-panel .btn { justify-self: start; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- footer ---------- */
.site-footer { padding: 3.5rem 0 1.5rem; background: var(--steel); color: var(--on-band-muted); font-size: 0.97rem; }
.site-footer a { color: var(--on-band); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr)); gap: 2rem; }
.footer-name {
  margin-bottom: 0.6rem; color: var(--on-band);
  font-family: var(--display); font-weight: 800; font-size: 1.6rem; line-height: 1; text-transform: uppercase;
}
.footer-h { margin: 0 0 0.7rem; color: var(--on-band); font-family: var(--display); font-weight: 800; font-size: 1rem; line-height: 0.98; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer address { font-style: normal; margin-bottom: 0.5rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--band-line);
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- QR quick-links page ---------- */
.page-links main { background: var(--band); color: var(--on-band); }
.links-page { padding: 3rem 0 4rem; }
.links-page h1 { font-size: clamp(2.6rem, 10vw, 3.8rem); }
.links-page .section-intro { color: var(--on-band-muted); }
.link-stack { list-style: none; margin: 2rem 0; padding: 0; display: grid; gap: 0.75rem; }
.link-card {
  display: flex; flex-direction: column; justify-content: center; gap: 0.15rem;
  min-height: 3.75rem; padding: 1rem 1.2rem;
  background: var(--steel); color: var(--on-band); text-decoration: none;
  border: 1px solid var(--band-line); border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.link-card:hover { border-color: var(--on-band); }
.link-card span { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; }
.link-card small { color: var(--on-band-muted); font-size: 0.95rem; }
.link-card-primary { background: var(--ember); border-color: var(--ember); }
.link-card-primary:hover { background: var(--ember-hover); border-color: var(--ember-hover); }
.link-card-primary small { color: #FFE9E0; }
.links-social { color: var(--on-band-muted); }
.links-social a { color: var(--on-band); }

/* ---------- two locations ---------- */
.hero a:not(.btn) { color: var(--on-band); }
.hero-call { margin-top: 1.25rem; color: var(--on-band-muted); }
.site-nav ul a[aria-current="page"] { border-bottom-color: #B83A16; }

.locations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.location-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.location-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.location-body { flex: 1; display: flex; flex-direction: column; gap: 0.85rem; padding: 1.5rem; }
.location-body h3 { font-size: 2.2rem; }
.location-address { color: var(--muted); }
.formerly { color: var(--muted); font-size: 0.95rem; font-style: italic; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  padding: 0.2rem 0.55rem; border-radius: 3px;
  background: var(--prog-kids-bg); color: var(--prog-kids-ink);
  font-family: var(--display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.location-actions { margin-top: auto; padding-top: 0.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
@media (max-width: 800px) { .locations { grid-template-columns: minmax(0, 1fr); } }

.age-groups { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.age-group {
  display: flex; flex-direction: column; gap: 0.35rem; padding: 1.4rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.age-group .ages { font-family: var(--display); font-weight: 800; font-size: 2.3rem; line-height: 1; text-transform: uppercase; }
.age-group .group-name { color: var(--muted); font-weight: 600; }
@media (max-width: 700px) { .age-groups { grid-template-columns: minmax(0, 1fr); } }

.photo-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; max-width: 54rem; }
.photo-strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: var(--radius); }

.schedule-pending {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.5rem;
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.section-surface .schedule-pending { background: var(--page); }
.schedule-pending p { max-width: 52ch; }
.schedule-locations { display: grid; gap: 2.5rem; }
.schedule-loc-title { font-size: 2rem; }
.schedule-location .fine { margin: 0.4rem 0 1rem; }
/* the date beside a day name, once the grid shows real dates from MyMemberForge */
.day-date { font-family: var(--body); font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.day.is-today .day-date { color: var(--ember); }

.contact-list div { grid-template-columns: 7.5rem minmax(0, 1fr); }
.map-tall { margin-top: 0; aspect-ratio: 4 / 3; }
.footer-locations li + li { margin-top: 0.6rem; }

/* ---------- home page video ---------- */
.hero-video { position: relative; }
.hero-video video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #0A0E12; }
.video-toggle {
  position: absolute; right: 0.75rem; bottom: 0.75rem;
  min-height: 2.25rem; padding: 0.35rem 0.75rem;
  background: rgba(10, 14, 18, 0.78); color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 4px;
  font-family: var(--display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
}
.video-toggle:hover { background: rgba(10, 14, 18, 0.92); }

/* kids age groups inside a program card */
.age-list { list-style: none; margin: 0; padding: 0.85rem 0 0; display: grid; gap: 0.3rem; border-top: 1px solid var(--line); }
.age-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.97rem; }
.age-list .age-name { font-weight: 600; }

/* ---------- privacy and other text pages ---------- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: 1.8rem; margin-top: 2.5rem; }
.prose ul { padding-left: 1.2rem; }
.prose li + li { margin-top: 0.3rem; }
.prose strong { font-weight: 600; }

.form-note { color: var(--muted); font-size: 0.9rem; }
.section-band .enquiry-panel a:not(.btn) { color: var(--ember-text); }

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