/*
Theme Name: The House FC International
Theme URI: https://thehousefc.com
Author: The House Fight Company
Author URI: https://thehousefc.com
Description: Custom theme voor The House FC International - het internationale affiliate-netwerk van The House Fight Company.
Version: 0.1
License: All Rights Reserved
Text Domain: thehousefc
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
  /* Merkkleuren, afgeleid uit het logo */
  --red: #b63134;
  --red-dark: #8f2427;
  --red-light: #d8484b;
  --ink: #201f1f;
  --black: #0b0b0b;
  --grey: #373535;
  --grey-mid: #6b6767;
  --grey-light: #b8b3b3;
  --paper: #f6f4f2;
  --paper-dim: #e8e4e0;
  --white: #ffffff;

  --font-display: "Bebas Neue", "Anton", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --shadow: 0 18px 40px rgba(11, 11, 11, 0.18);
  --header-h: 96px;
}

/* ==========================================================================
   2. Reset & basis
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h4 { font-size: 1.25rem; letter-spacing: 0.04em; }

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

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

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--paper { background: var(--paper); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.section--dark .eyebrow { color: var(--red-light); }

.lead { font-size: 1.14rem; color: var(--grey); }
.section--dark .lead { color: var(--grey-light); }

.center { text-align: center; }
.center .eyebrow { display: block; }

/* Rode streep onder een kop */
.rule::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  background: var(--red);
  margin: 22px 0 0;
}
.center.rule::after,
.rule.center::after { margin-inline: auto; }

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--black); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* Balk boven de header: wijst bezoekers die de gym in Santos zoeken door.
   Scrollt gewoon mee weg, dus na de eerste blik zit hij niemand in de weg. */
.localbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}
.localbar__inner {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 0;
  position: relative;
}
.localbar__text { color: var(--grey-light); text-align: center; }
.localbar__link {
  color: var(--red-light);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 6px;
}
.localbar__link:hover { color: var(--white); text-decoration: underline; }
.localbar__close {
  position: absolute;
  right: 0;
  background: none;
  border: 0;
  color: var(--grey-mid);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
}
.localbar__close:hover { color: var(--white); }

@media (max-width: 560px) {
  .localbar { font-size: 0.78rem; }
  .localbar__inner { padding-right: 34px; }
  .localbar__link { display: block; margin-left: 0; margin-top: 2px; }
}

/* ==========================================================================
   4. Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
}

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

.site-logo { display: flex; align-items: center; gap: 14px; }
.site-logo img { height: 74px; width: auto; }
.site-logo__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.3em;
  color: var(--grey-light);
  text-transform: uppercase;
  padding-top: 2px;
}

@media (max-width: 520px) {
  .site-logo img { height: 58px; }
  .site-logo__text { display: none; }
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}
.nav__link:hover,
.nav__item--active > .nav__link { color: var(--red-light); }

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 232px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__submenu a {
  display: block;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav__submenu a:hover { background: var(--paper); color: var(--red); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__link { padding: 16px 4px; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border-top: 0;
    padding: 0 0 8px 16px;
  }
  .nav__submenu a { color: var(--grey-light); padding: 12px 4px; }
  .nav__submenu a:hover { background: transparent; }
}

/* ==========================================================================
   5. Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 12vw, 150px) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(182, 49, 52, 0.42), transparent 58%),
    linear-gradient(180deg, #1a1919 0%, #0b0b0b 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .lead { max-width: 54ch; color: rgba(255, 255, 255, 0.82); margin-top: 24px; }
.hero .btn-row { margin-top: 36px; }

.hero--page { padding: clamp(64px, 8vw, 104px) 0; }
.hero--page h1 { max-width: 20ch; }

.hero__crumbs {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.hero__crumbs a { color: rgba(255, 255, 255, 0.7); }
.hero__crumbs a:hover { color: var(--white); }

/* ==========================================================================
   6. Grids & cards
   ========================================================================== */

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
/* auto-fill in plaats van auto-fit: bij één of twee academies blijft een kaart
   op kolombreedte staan in plaats van over de volle breedte uit te rekken. */
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--grey); font-size: 0.98rem; }

.card__more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.numbered { counter-reset: step; }
.numbered .card { position: relative; padding-top: 40px; }
.numbered .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.28;
  position: absolute;
  top: 20px;
  right: 24px;
}

.stat { text-align: center; display: block; }
.stat--link { transition: transform 0.15s ease; }
.stat--link:hover { transform: translateY(-3px); }
.stat--link:hover .stat__value { color: var(--white); }
.stat--link:hover .stat__label { color: var(--paper); }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  color: var(--red-light);
}
.stat__label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 10px;
}

/* Split (tekst naast beeld) */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split__media {
  aspect-ratio: 4 / 3;
  background: var(--paper-dim) url("assets/img/mark-the-house-fc.png") center / 42% no-repeat;
  border-radius: var(--radius);
}

/* Slotregel die op zichzelf staat, bijvoorbeeld onderaan een verhaal */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 10px;
}
.section--dark .statement { color: var(--red-light); }

/* Korte voordelen naast elkaar, zonder kaderkaartjes */
.benefits { gap: 34px 40px; }
.benefit { border-top: 3px solid var(--red); padding-top: 20px; }
.benefit .icon { width: 30px; height: 30px; color: var(--red); margin-bottom: 14px; }
.benefit h3 { font-size: 1.4rem; margin-bottom: 8px; }
.benefit p { color: var(--grey); font-size: 0.98rem; margin: 0; }

/* Drie stappen op een rij, genummerd */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  font-size: 1.02rem;
  color: var(--grey);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 31px;
  text-align: center;
}

/* Juridische pagina's: doorlopende tekst met genummerde kopjes */
.legal h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-top: 52px;
  margin-bottom: 16px;
}
.legal h2:first-of-type { margin-top: 44px; }
.legal ul { margin: 0 0 1.2em; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal__updated {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 28px;
}
.legal__address {
  background: var(--paper);
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  line-height: 1.8;
}

/* Prestatielijst op een teamprofiel */
.achievements { list-style: none; margin: 32px 0 0; padding: 0; }
.achievements li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--paper-dim);
  font-size: 0.98rem;
}
.achievements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 3px;
  background: var(--red);
}
.source-note { margin-top: 24px; font-size: 0.82rem; color: var(--grey-mid); }

/* Pijlers: korte kernwaarden onder elkaar, met rode markering */
.pillars { display: grid; gap: 26px; margin: 34px 0 38px; }
.pillar { border-left: 3px solid var(--red); padding-left: 22px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pillar p { color: var(--grey); font-size: 0.98rem; margin: 0; }
.section--dark .pillar p { color: var(--grey-light); }

/* Pijler waarvan de tekst nog moet komen — valt bewust op */
.pillar--placeholder { border-left-style: dashed; background: rgba(182, 49, 52, 0.06); padding: 14px 20px; }
.pillar--placeholder h3 { color: var(--red-dark); }

/* Beeldband over de volle breedte, als adempauze in een leesverhaal */
.media-band {
  height: clamp(240px, 34vw, 460px);
  background: var(--paper-dim) url("assets/img/mark-the-house-fc.png") center / auto 46% no-repeat;
}

/* Met een echte foto erin: vullend, in plaats van het logo-vlak */
.split__media--photo,
.media-band--photo { background-size: cover; background-position: center; }

/* Placeholder-markering, zichtbaar tijdens de contentronde */
.placeholder {
  border-left: 4px solid var(--red);
  background: rgba(182, 49, 52, 0.06);
  padding: 16px 20px;
  font-size: 0.86rem;
  color: var(--grey);
  margin: 24px 0;
}
.placeholder strong { color: var(--red-dark); }

/* ==========================================================================
   7. Affiliates: kaart, filter en lijst
   ========================================================================== */

.finder { display: grid; grid-template-columns: 1fr 420px; gap: 0; align-items: stretch; }
@media (max-width: 900px) { .finder { grid-template-columns: 1fr; } }

#affiliate-map {
  height: 560px;
  background: var(--paper-dim);
  z-index: 1;
}
@media (max-width: 900px) { #affiliate-map { height: 380px; } }

.finder__panel {
  background: var(--white);
  border-left: 1px solid var(--paper-dim);
  display: flex;
  flex-direction: column;
  max-height: 560px;
}
@media (max-width: 900px) { .finder__panel { max-height: none; border-left: 0; border-top: 1px solid var(--paper-dim); } }

.finder__search { padding: 20px; border-bottom: 1px solid var(--paper-dim); }
.finder__search input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--paper-dim);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.finder__search input:focus { outline: none; border-color: var(--red); }
.finder__count {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grey-mid);
  margin-top: 12px;
}

.finder__list { overflow-y: auto; flex: 1; }

.affiliate-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--paper-dim);
  padding: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s ease;
}
.affiliate-item:hover,
.affiliate-item[data-active="true"] { background: var(--paper); }
.affiliate-item__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.affiliate-item__place {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}
.affiliate-item__addr { display: block; font-size: 0.88rem; color: var(--grey-mid); margin-top: 8px; }

.finder__empty { padding: 40px 20px; text-align: center; color: var(--grey-mid); font-size: 0.92rem; }

.map-popup { font-family: var(--font-body); min-width: 190px; }
.map-popup strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.03em; text-transform: uppercase; display: block; }
.map-popup span { display: block; font-size: 0.84rem; color: var(--grey-mid); margin: 6px 0 10px; }
.map-popup a { font-weight: 700; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }

.leaflet-container { font-family: var(--font-body); }

/* Affiliate-profiel */
.profile-facts { list-style: none; margin: 0; padding: 0; }
.profile-facts li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-dim);
  font-size: 0.95rem;
}
.profile-facts .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  padding-top: 3px;
}
@media (max-width: 560px) { .profile-facts li { grid-template-columns: 1fr; gap: 4px; } }

.profile-map { height: 380px; border-radius: var(--radius); overflow: hidden; z-index: 1; }

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   8. Formulieren
   ========================================================================== */

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 2px solid var(--paper-dim);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { min-height: 150px; resize: vertical; }
.field__hint { font-size: 0.8rem; color: var(--grey-mid); }

.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.86rem; color: var(--grey); }
.form__consent input { margin-top: 3px; }

.notice { padding: 16px 20px; border-radius: var(--radius); font-size: 0.92rem; margin-bottom: 24px; }
.notice--ok { background: #e8f3ec; border-left: 4px solid #2f7d4f; color: #1d5233; }
.notice--error { background: #fbeaea; border-left: 4px solid var(--red); color: var(--red-dark); }

/* Cookiebanner: onderaan, buiten de leesrichting, maar wel duidelijk */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--ink);
  border-top: 3px solid var(--red);
  box-shadow: 0 -12px 30px rgba(11, 11, 11, 0.25);
}
.consent__inner {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.consent__text {
  margin: 0;
  color: var(--grey-light);
  font-size: 0.9rem;
  max-width: 70ch;
}
.consent__text a { color: var(--red-light); }
.consent__text a:hover { color: var(--white); }
.consent__actions { display: flex; gap: 12px; flex-shrink: 0; }
.consent__actions .btn { padding: 12px 22px; }

@media (max-width: 760px) {
  .consent__inner { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px 0; }
  .consent__actions .btn { flex: 1; justify-content: center; }
}

/* Plaats van de kaart zolang er geen toestemming is */
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
  background: var(--paper-dim);
  z-index: 2;
}
.map-consent p {
  margin: 0;
  max-width: 42ch;
  color: var(--grey);
  font-size: 0.94rem;
}
#affiliate-map, .profile-map { position: relative; }

/* ==========================================================================
   9. CTA-band & footer
   ========================================================================== */

.cta-band {
  background: var(--red);
  color: var(--white);
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 56ch; margin-inline: auto; color: rgba(255, 255, 255, 0.9); }
.cta-band .btn--dark { margin-top: 28px; }

.site-footer { background: var(--black); color: var(--grey-light); padding: 72px 0 32px; font-size: 0.92rem; }
.site-footer h4 { color: var(--white); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 18px; }
.site-footer a { color: var(--grey-light); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer__logo { height: 76px; width: auto; margin-bottom: 18px; }

.site-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--grey-mid);
}
.site-footer__bottom a { color: var(--grey-mid); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 0; color: var(--white); }

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