/* ---------- Self-hosted fonts (GDPR: no request to Google) ----------
   Latin subset (covers EN/DE/ES incl. accents & ß). Files in /fonts.
   Replaces the former Google Fonts CDN <link>. */
@font-face { font-family: "Anton"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/anton-400.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/archivo-400.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/archivo-500.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/archivo-600.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/archivo-700.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/fraunces-400.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/fraunces-600.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/fraunces-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 600; font-display: swap; src: url("fonts/fraunces-600-italic.woff2") format("woff2"); }

:root {
  --bvb-yellow: #FDE100;
  --bvb-yellow-deep: #F5C400;
  --bvb-black: #050505;
  --ink: #111111;
  --paper: #F6F1E6;
  --paper-warm: #EFE7D4;
  --rule: #1a1a1a;
  --muted: #5a5a55;
  --orange: #F5A623;
  --radius-control: 4px;
  --radius-card: 6px;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.16);
  --shadow-soft-hover: 0 14px 30px rgba(0, 0, 0, 0.2);
  --shadow-button: 0 8px 18px rgba(0, 0, 0, 0.18);
  --shadow-button-hover: 0 11px 24px rgba(0, 0, 0, 0.22);
  /* Soft "documentary" depth for the jersey frame (same family as --shadow-soft,
     downward-biased so it lives in the hero's lower padding, not clipped sideways). */
  --shadow-frame: 0 20px 44px rgba(0, 0, 0, 0.26), 0 6px 14px rgba(0, 0, 0, 0.16);
  --shadow-frame-hover: 0 28px 56px rgba(0, 0, 0, 0.30), 0 10px 20px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

/* ---------- Accessibility: skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--bvb-black);
  color: var(--bvb-yellow);
  padding: 12px 18px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid var(--bvb-yellow);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: none;
}

/* ---------- Accessibility: focus-visible ---------- */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--bvb-black);
  outline-offset: 4px;
  border-radius: var(--radius-control);
}
section.dark a:focus-visible,
section.dark button:focus-visible,
header.site a:focus-visible,
header.site button:focus-visible {
  outline-color: var(--bvb-yellow);
}
footer a:focus-visible {
  outline-color: var(--bvb-yellow);
}
.lang-switch:focus-within {
  box-shadow: 0 0 0 3px rgba(253, 225, 0, 0.24);
}
.lang-switch button:focus-visible {
  outline-offset: -4px;
}

body {
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.display {
  font-family: "Anton", "Archivo Black", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.editorial {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.overline {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

/* ---------- Layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bvb-black);
  border-bottom: 2px solid var(--bvb-yellow);
  color: var(--bvb-yellow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--bvb-yellow);
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
.brand-logo--footer { height: 56px; }
nav.links {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.links a {
  text-decoration: none;
  color: #f0ece2;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 10px 0;
  display: inline-block;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px;
  background: var(--bvb-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
nav.links a:hover { color: var(--bvb-yellow); }
nav.links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 12px 20px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 1.15;
  border: 2px solid var(--bvb-black);
  border-radius: var(--radius-control);
  background: var(--bvb-black);
  color: var(--bvb-yellow);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  box-shadow: var(--shadow-button);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-button-hover); }
.btn:active { transform: translateY(0); box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--bvb-black);
  border-color: rgba(5, 5, 5, 0.56);
  box-shadow: none;
}
/* Hover/focus = frosted DARK "glass plate": a translucent ink that blurs the page
   texture behind it, so the diagonal lines visibly soften under the button.
   Yellow text on the darkened plate keeps high contrast.
   Fallback (no backdrop-filter): a more opaque dark ink — readable without any blur,
   contrast never depends on it. Translucent + frosted keeps it secondary, not the
   solid-ink primary. */
.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(5, 5, 5, 0.82);
  color: var(--bvb-yellow);
  border-color: rgba(5, 5, 5, 0.95);
  box-shadow: var(--shadow-button);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .btn-outline:hover,
  .btn-outline:focus-visible {
    background: rgba(5, 5, 5, 0.52);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    backdrop-filter: blur(8px) saturate(1.2);
  }
}

.btn-on-dark {
  background: var(--bvb-yellow);
  color: var(--bvb-black);
  border-color: var(--bvb-yellow);
  box-shadow: 0 10px 22px rgba(253, 225, 0, 0.16);
}
.btn-on-dark:hover { box-shadow: 0 13px 28px rgba(253, 225, 0, 0.22); }

.btn-ghost-on-dark {
  background: transparent;
  color: var(--bvb-yellow);
  border-color: var(--bvb-yellow);
  box-shadow: none;
}
.btn-ghost-on-dark:hover { background: var(--bvb-yellow); color: var(--bvb-black); }

/* Larger CTA modifier */
.btn-lg {
  padding: 18px 30px;
  font-size: 1rem;
  letter-spacing: 0.07em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  border-width: 2px;
}
.btn-lg:hover { box-shadow: 0 13px 30px rgba(0, 0, 0, 0.24); }
.btn-lg.btn-outline,
.btn-lg.btn-outline:hover { box-shadow: none; }
.btn-lg.btn-on-dark { box-shadow: 0 11px 26px rgba(253, 225, 0, 0.18); }
.btn-lg.btn-on-dark:hover { box-shadow: 0 14px 32px rgba(253, 225, 0, 0.24); }
.btn-lg .arrow { font-size: 1.2em; }

/* Text link (used in hero + header) */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bvb-black);
  text-decoration: none;
  border-bottom: 2px solid var(--bvb-black);
  padding-bottom: 2px;
  transition: opacity .18s ease;
}
.text-link:hover { opacity: 0.7; }
.text-link .arrow { transition: transform .18s ease; }
.text-link:hover .arrow { transform: translate(2px, -2px); }

/* ---------- Language switcher ---------- */
.lang-switch {
  display: inline-flex;
  border: 2px solid var(--bvb-yellow);
  border-radius: var(--radius-control);
  background: transparent;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--bvb-yellow);
  color: var(--bvb-yellow);
  padding: 0 14px;
  min-height: 38px;
  min-width: 44px;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: 1;
}
.lang-switch button:first-child { border-left: 0; }
.lang-switch button:hover { background: rgba(253,225,0,0.12); }
.lang-switch button.active {
  background: var(--bvb-yellow);
  color: var(--bvb-black);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-actions > .btn {
  background: var(--bvb-yellow);
  color: var(--bvb-black);
  border-color: var(--bvb-yellow);
  padding: 11px 18px;
  box-shadow: 0 8px 18px rgba(253, 225, 0, 0.16);
}
.header-actions > .btn:hover { box-shadow: 0 11px 24px rgba(253, 225, 0, 0.22); }
.header-actions > .btn:active { box-shadow: 0 5px 14px rgba(253, 225, 0, 0.16); }

/* ---------- Floating redeporte.org link ---------- */
.floating-redeporte {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(246, 241, 230, 0.96);
  color: var(--bvb-black);
  border: 1px solid rgba(5, 5, 5, 0.28);
  box-shadow: var(--shadow-soft);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(140%);
  animation: floatIn .45s ease-out 0.7s forwards;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}
.floating-redeporte:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft-hover);
  background: var(--bvb-black);
  color: var(--bvb-yellow);
}
.floating-redeporte:active {
  transform: translate(0, 0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.floating-redeporte__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bvb-yellow);
  border: 1px solid var(--bvb-black);
  flex-shrink: 0;
}
.floating-redeporte:hover .floating-redeporte__dot {
  border-color: var(--bvb-yellow);
}
.floating-redeporte__arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform .2s ease;
}
.floating-redeporte:hover .floating-redeporte__arrow {
  transform: translate(2px, -2px);
}
.floating-redeporte__label {
  display: inline-block;
}

@keyframes floatIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .floating-redeporte {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-redeporte {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .floating-redeporte__dot { animation: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--bvb-yellow);
  overflow: hidden;
  border-bottom: 4px solid var(--bvb-black);
  padding: 0;
}
/* diagonal stripes background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 38px,
    rgba(0,0,0,0.04) 38px,
    rgba(0,0,0,0.04) 40px
  );
  pointer-events: none;
}
/* grain overlay — light, no blend mode, kept cheap to paint */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  padding: 90px 28px 110px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bvb-black);
  color: var(--bvb-yellow);
  padding: 8px 14px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bvb-yellow);
  box-shadow: 0 0 0 0 rgba(253,225,0,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(253,225,0,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(253,225,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(253,225,0,0); }
}

h1.hero-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--bvb-black);
  margin-bottom: 28px;
}
h1.hero-title .accent {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #2b2b2b;
  display: block;
  font-size: 0.46em;
  letter-spacing: -0.01em;
  margin: 14px 0 6px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.12rem;
  max-width: 520px;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-fine {
  max-width: 480px;
  font-size: 0.82rem;
  color: #3a3a3a;
  line-height: 1.5;
}

/* Hero artwork — jersey detail card */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.jersey-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: var(--bvb-black);
  border: 3px solid var(--bvb-black);
  box-shadow: var(--shadow-frame);
  transform: rotate(-3deg);
  overflow: hidden;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1),
              box-shadow .55s cubic-bezier(.22, 1, .36, 1);
}
.jersey-card:hover {
  transform: rotate(-1deg) translate(-3px, -3px);
  box-shadow: var(--shadow-frame-hover);
}
.jersey-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
.jersey-card:hover .jersey-photo {
  transform: scale(1.04);
}
.jersey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 22%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%);
  pointer-events: none;
  z-index: 1;
}

.jersey-num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: var(--bvb-yellow);
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(253, 225, 0, 0.35);
}
.jersey-stamp {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: var(--bvb-yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 12px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(253, 225, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .jersey-card,
  .jersey-photo {
    transition: none;
  }
  .jersey-card:hover {
    transform: rotate(-3deg);
  }
  .jersey-card:hover .jersey-photo {
    transform: none;
  }
}

/* ---------- Lusaka photo card (base) ---------- */
.lusaka-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--bvb-black);
  background: var(--bvb-black);
  box-shadow: 6px 6px 0 var(--bvb-black);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1),
              box-shadow .5s cubic-bezier(.22, 1, .36, 1);
}
.lusaka-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
.lusaka-photo:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--bvb-black);
}
.lusaka-photo:hover img { transform: scale(1.04); }

.lp-tape {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: var(--bvb-yellow);
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(253, 225, 0, 0.4);
}

/* Impact section — prose left, photo right (column natural width) */
.impact-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 5vw, 64px);
  /* Center so the photo doesn't float at the top with a dead band below the prose. */
  align-items: center;
  margin-top: 4px;
}
.impact-row .impact-prose { max-width: 640px; }
.impact-photo {
  max-width: 420px;
  width: 100%;
  justify-self: center;
  margin-top: 0;
}

/* Support section — photo tucked under the intro paragraph.
   Compact + fixed 4:3 crop so it no longer drives the section height. */
.support-photo {
  max-width: 300px;
  width: 100%;
  margin-top: 24px;
}
.support-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 45% 18%;
  height: auto;
}

/* Final CTA — small polaroid above the closing headline */
.final-photo {
  max-width: 260px;
  width: 100%;
  margin: 0 auto 44px;
  transform: rotate(-2deg);
}
.final-photo:hover { transform: rotate(-1deg) translate(-3px, -3px); }

@media (max-width: 960px) {
  .impact-row { grid-template-columns: 1fr; gap: 32px; }
  .impact-photo { max-width: 100%; justify-self: stretch; }
  .support-photo { max-width: 100%; margin-top: 28px; }
  .final-photo { max-width: 220px; margin-bottom: 36px; }
}

/* ---------- Section base ---------- */
section { padding: 104px 0; position: relative; }
section.dark { background: var(--bvb-black); color: #f0ece2; }
section.paper-warm { background: var(--paper-warm); }


.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head .overline { color: var(--bvb-black); }
section.dark .section-head .overline { color: var(--bvb-yellow); }

h2.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--bvb-black);
}
section.dark h2.section-title { color: var(--bvb-yellow); }
h2.section-title .em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #2b2b2b;
}
section.dark h2.section-title .em { color: #f0ece2; }

.section-num {
  display: inline-block;
  width: fit-content;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.32);
}
section.dark .section-num { border-color: rgba(253, 225, 0, 0.44); color: rgba(253, 225, 0, 0.78); }

/* ---------- Story (dark) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story-prose p {
  font-size: 1.08rem;
  color: #d8d4ca;
  margin-bottom: 22px;
  max-width: 540px;
}
.story-prose p strong {
  color: var(--bvb-yellow);
  font-weight: 600;
}
.pullquote {
  border-left: 4px solid var(--bvb-yellow);
  padding: 8px 0 8px 24px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #f0ece2;
  margin: 36px 0;
  max-width: 520px;
}
.pullquote .cite {
  display: block;
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bvb-yellow);
  margin-top: 14px;
}

.stat-card {
  background: rgba(253, 225, 0, 0.06);
  border: 1px solid rgba(253, 225, 0, 0.25);
  padding: 32px 28px;
  margin-bottom: 16px;
}
.stat-card .y {
  font-family: "Anton", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--bvb-yellow);
}
.stat-card .label {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: #d8d4ca;
  margin-top: 10px;
}
.stat-card .desc {
  color: #d8d4ca;
  font-size: 0.98rem;
  margin-top: 16px;
  line-height: 1.55;
}

/* ---------- Impact ---------- */
.impact-prose {
  max-width: 760px;
}
.impact-prose p {
  font-size: 1.12rem;
  color: #2a2a2a;
  margin-bottom: 22px;
}
.impact-prose p:first-of-type {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
}

/* Lusaka feature row */
.lusaka {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  margin-top: 48px;
}
.lusaka-card {
  background: var(--bvb-black);
  color: #f0ece2;
  padding: 48px 42px;
  border-radius: var(--radius-card);
  position: relative;
  isolation: isolate;
}
.lusaka-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid var(--bvb-yellow);
  z-index: -1;
  pointer-events: none;
}
.lusaka-card .overline { color: var(--bvb-yellow); margin-bottom: 18px; }
.lusaka-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  color: var(--bvb-yellow);
  line-height: 1;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.lusaka-card p { font-size: 1.02rem; color: #d8d4ca; margin-bottom: 14px; }
.lusaka-card .text-yellow { color: var(--bvb-yellow); }
.lusaka > .fade-up:last-child {
  justify-self: center;
  width: 100%;
}
.map-svg { width: 100%; height: auto; max-width: 440px; margin: 0 auto; display: block; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--paper);
  border: 2px solid var(--bvb-black);
  padding: 32px 26px 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 5px 5px 0 var(--bvb-black); }
.step .num {
  font-family: "Anton", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--bvb-yellow);
  background: var(--bvb-black);
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.step h4 {
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--bvb-black);
}
.step p { font-size: 0.98rem; color: #2a2a2a; }

.steps-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 42px;
  justify-content: center;
}

/* ---------- What support makes possible ---------- */
/* Reduced bottom padding: Support and Join share the same --paper background,
   so the seam between them must not read as an empty band. */
.support-section { padding: 88px 0 40px; }
.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.support-list {
  list-style: none;
  /* Stretch to the (taller) left column and distribute the 6 items, so item 06
     reaches the column bottom instead of leaving a dead gap under it.
     On mobile the grid is a single column, so there is no taller sibling and the
     list simply packs at its natural height. */
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.support-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: baseline;
}
.support-list li:last-child { border-bottom: none; }
.support-list .marker {
  font-family: "Anton", sans-serif;
  color: var(--bvb-yellow);
  background: var(--bvb-black);
  font-size: 1rem;
  line-height: 1;
  padding: 4px 8px;
  text-align: center;
  letter-spacing: 0.04em;
  align-self: center;
}
.support-list .label {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: var(--ink);
}
.support-list .sublabel {
  color: #5a5a55;
  font-size: 0.94rem;
  margin-top: 6px;
}
.support-num { margin-bottom: 28px; }
.support-title { margin-bottom: 28px; }
.support-intro {
  font-size: 1.08rem;
  color: #2a2a2a;
  max-width: 460px;
}

/* ---------- Direct donation ---------- */
/* Reframed as a secondary/contextual path (not a second donation climax):
   lighter padding, hairline rules instead of the heavy black frame. */
.direct {
  background: var(--paper-warm);
  padding: 52px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
}
.direct-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: center;
}
.direct h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.direct p {
  font-size: 1.05rem;
  color: #2a2a2a;
  max-width: 620px;
  margin-bottom: 22px;
}
.direct-cta {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-self: end;
  width: min(100%, 360px);
  padding: 22px 24px;
  background: rgba(246, 241, 230, 0.64);
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-left: 4px solid var(--bvb-yellow);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.donate-overline { margin-bottom: 18px; }
.direct .editorial { font-family: "Fraunces", serif; font-style: italic; }

/* Hero CTAs spacing (slightly tighter, primary first) */
.hero-ctas .text-link { margin-left: 4px; }

/* ---------- Rules ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.rules-col h4 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--bvb-black);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bvb-black);
}
.rules-col p,
.rules-col li {
  font-size: 0.98rem;
  color: #2a2a2a;
  margin-bottom: 12px;
  line-height: 1.6;
}
.rules-col ul {
  list-style: none;
  padding-left: 0;
}
.rules-col ul li {
  position: relative;
  padding-left: 22px;
}
.rules-col ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bvb-yellow-deep);
  font-family: "Anton", sans-serif;
  font-weight: 700;
}
.rules-fine {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--paper-warm);
  border: 2px solid var(--bvb-black);
  font-size: 0.88rem;
  color: #2a2a2a;
}
.rules-fine strong { font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--bvb-yellow);
  padding: 110px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--bvb-black);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0, transparent 38px,
    rgba(0,0,0,0.04) 38px, rgba(0,0,0,0.04) 40px
  );
  pointer-events: none;
}
.final-cta h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.35rem, 5.45vw, 4.8rem);
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--bvb-black);
  max-width: 960px;
  margin: 0 auto 14px;
  position: relative;
  text-wrap: balance;
}
.final-cta .editorial-line {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #2a2a2a;
  margin-bottom: 40px;
  position: relative;
}
.final-cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bvb-black);
  color: #c0bcb4;
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 38px;
}
footer p.foot-desc { margin-top: 18px; max-width: 320px; font-size: 0.92rem; color: #a8a49b; }
footer h5 {
  font-family: "Anton", sans-serif;
  color: var(--bvb-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 4px; font-size: 0.92rem; }
footer ul li a {
  color: #c0bcb4;
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
}
footer ul li a:hover { color: var(--bvb-yellow); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 18px 0;
  margin-top: 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.footer-legal a {
  color: #c0bcb4;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 0;
}
.footer-legal a:hover { color: var(--bvb-yellow); }
.footer-legal__pending {
  color: #7d786f;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 0;
  cursor: not-allowed;
}
.footer-base {
  padding-top: 22px;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: #8a867d;
}
.footer-base a { color: var(--bvb-yellow); text-decoration: none; }

/* ---------- Story: archive video ---------- */
.ref-video {
  margin: 64px auto 0;
  max-width: 720px;
}
.ref-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--bvb-yellow);
  background: #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
  overflow: hidden;
}
.ref-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ref-video__frame.is-playing .ref-video__media {
  z-index: 2;
}
/* Cover sits over the video until the visitor chooses to play — this keeps the
   low-resolution first frame hidden and the section feeling intentional. */
.ref-video__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px;
  text-align: left;
  color: var(--bvb-yellow);
  background:
    linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.55) 100%),
    url("bvb_signed_jersey.webp") center / cover no-repeat;
  transition: opacity .3s ease;
}
.ref-video__cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ref-video__cover[hidden] {
  display: none;
}
.ref-video__badge {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--bvb-black);
  border: 1px solid rgba(253,225,0,0.4);
  padding: 5px 10px;
}
.ref-video__title {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.ref-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bvb-yellow);
  color: var(--bvb-black);
  box-shadow: 0 0 0 8px rgba(253,225,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ref-video__cover:hover .ref-video__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 12px rgba(253,225,0,0.22);
}
.ref-video__play svg { margin-left: 3px; }
.ref-video__cap {
  margin-top: 16px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: #c9c5bb;
  text-align: center;
}

/* ---------- Join the campaign (sign-up) ---------- */
.join {
  background: var(--paper);
  /* Priority action block: sits directly under the hero. */
  padding: 72px 0 96px;
  scroll-margin-top: 84px;
}
.join-lead {
  font-size: 1.12rem;
  color: #2a2a2a;
  max-width: 460px;
  margin-top: 18px;
}
/* Three legal statements — prominent, part of the free-giveaway legal skeleton. */
.giveaway-legal {
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 20px;
  display: grid;
  gap: 10px;
  background: rgba(253, 225, 0, 0.14);
  border-left: 4px solid var(--bvb-yellow-deep);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
}
.giveaway-legal li {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--bvb-black);
  padding-left: 26px;
  position: relative;
}
.giveaway-legal li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--bvb-yellow-deep);
}
/* First + last name side by side (collapses on narrow cards). */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-row .field { margin-bottom: 20px; }
/* "Optional" divider before the newsletter consent (separate consent). */
.join-optional {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.join-optional::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(5, 5, 5, 0.16);
}
.join-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}
.join-copy p {
  font-size: 1.08rem;
  color: #2a2a2a;
  max-width: 460px;
  margin-top: 20px;
}
.join-overline { color: var(--bvb-black); margin-bottom: 18px; }
.join-card {
  background: var(--paper-warm);
  color: var(--ink);
  padding: 38px 36px;
  border: 1px solid rgba(5, 5, 5, 0.28);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  position: relative;
  max-width: 480px;
  justify-self: end;
}
.join-card::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  background: var(--bvb-yellow);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
}
.join-form .field { margin-bottom: 20px; }
.join-form label {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bvb-black);
  margin-bottom: 8px;
}
.join-form input {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 1rem;
  color: var(--bvb-black);
  background: var(--paper);
  border: 1.5px solid rgba(5, 5, 5, 0.28);
  border-radius: var(--radius-control);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.join-form input::placeholder { color: #7a766d; }
.join-form input:focus-visible {
  outline: none;
  border-color: var(--bvb-black);
  box-shadow: 0 0 0 3px rgba(253, 225, 0, 0.4);
}
.join-form input:user-invalid {
  border-color: #c0392b;
}
.join-consent { margin-bottom: 22px; }
.join-form .consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  margin-bottom: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 0.86rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: #2a2a2a;
}
.join-form .consent-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--bvb-yellow-deep);
  cursor: pointer;
  flex-shrink: 0;
}
.join-form .consent-label a {
  color: var(--bvb-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.join-submit { width: 100%; justify-content: center; margin-top: 4px; }
.join-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}
.join-status {
  margin-top: 16px;
  padding: 12px 15px;
  border-left: 4px solid var(--bvb-black);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  background: rgba(5, 5, 5, 0.05);
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.join-status[hidden] { display: none; }
.join-status--pending {
  border-left-color: var(--bvb-yellow-deep);
  background: rgba(245, 196, 0, 0.16);
  color: #5c4a00;
}
.join-status--error {
  border-left-color: #c0392b;
  background: rgba(192, 57, 43, 0.10);
  color: #8f271c;
}
.join-status--success {
  border-left-color: #2f7d38;
  background: rgba(47, 125, 56, 0.10);
  color: #245c2b;
}

/* ---------- Red Deporte (organisation) ---------- */
.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.org-col h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--bvb-yellow);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(253,225,0,0.35);
}
.org-col p { color: #d8d4ca; font-size: 1rem; margin-bottom: 20px; }
.org-contact {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(253,225,0,0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d8d4ca;
}
.org-contact a { color: var(--bvb-yellow); text-decoration: none; }
.org-contact a:hover { text-decoration: underline; }
.org-contact__sep { color: rgba(253,225,0,0.5); }

/* ---------- Footer social ---------- */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #c0bcb4;
  border: 1px solid #2a2a2a;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social a:hover {
  color: var(--bvb-black);
  background: var(--bvb-yellow);
  border-color: var(--bvb-yellow);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .nav { padding-inline: 22px; }
  nav.links { gap: 18px; }
  nav.links a { font-size: 0.84rem; }
  .header-actions { gap: 12px; }
  .brand-logo { height: 44px; }
}

@media (max-width: 1100px) {
  nav.links { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  nav.links { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 60px 24px 90px; gap: 60px; }
  .hero-art { min-height: 360px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .story-grid,
  .lusaka,
  .support,
  .direct-inner,
  .rules-grid,
  .join-inner,
  .org-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ref-video__frame { box-shadow: 8px 8px 0 rgba(0,0,0,0.85); }
  .join-card {
    justify-self: stretch;
    max-width: none;
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
  }
  .steps { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .support-section { padding: 76px 0 76px; }
  .join { padding: 48px 0 76px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .direct-cta {
    justify-self: stretch;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    padding: 22px;
    border-left: 0;
    border-top: 4px solid var(--bvb-yellow);
  }
  .btn-lg { padding: 16px 24px; font-size: 0.98rem; }
  .header-link { display: none; }
  .header-actions { gap: 10px; }
  .nav { padding: 12px 18px; }
  .brand-logo { height: 40px; }
  .brand-logo--footer { height: 48px; }
}

/* Phone: drop the header CTA (the hero already exposes it prominently)
   so the language switch always fits without overflowing. */
@media (max-width: 720px) {
  .header-actions > .btn { display: none; }
  .join-submit,
  .direct-cta .btn {
    width: 100%;
    justify-content: center;
  }
  /* Compact the footer on phones without removing any trust signals. */
  footer { padding: 44px 0 28px; }
  .footer-grid { gap: 30px; margin-bottom: 28px; }
  footer p.foot-desc { margin-top: 14px; }
  footer h5 { margin-bottom: 12px; }
  footer ul li { margin-bottom: 0; }
  .footer-social { margin-top: 18px; }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
  }
  .footer-legal a,
  .footer-legal__pending { padding: 4px 0; }
  .footer-base { padding-top: 18px; }
}

@media (max-width: 380px) {
  .lang-switch { font-size: 0.7rem; }
  .lang-switch button { padding: 0 10px; min-width: 38px; }
  .nav { padding: 10px 14px; }
}

/* Entrance animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-tag .dot { animation: none; }
  html { scroll-behavior: auto; }
}
