/* ============================================================
   SPORTS BRIDGE INTERNATIONAL FOUNDATION
   Sport Editorial × Field Geometry
   One shared stylesheet for all pages. See DESIGN_BRIEF.md.
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------ */
:root {
  /* Ground & ink */
  --paper:        #FAF7F1;
  --paper-dim:    #F1ECE3;
  --ink:          #101714;
  --ink-soft:     #4A544F;

  /* Brand DNA (shared with SBI store — do not change) */
  --teal:         #1D9E75;
  --teal-deep:    #14735A;
  --pink:         #D4537E;

  /* Lines */
  --line:         1.5px solid var(--ink);
  --line-soft:    1px solid rgba(16, 23, 20, 0.18);
  --line-paper:   1.5px solid var(--paper);

  /* Type */
  --font-display: "Oswald", sans-serif;
  --font-body:    "Figtree", sans-serif;
  --font-mono:    "IBM Plex Mono", monospace;

  --fs-hero:      clamp(2.5rem, 9.5vw, 7.75rem);
  --fs-hero-sub:  clamp(1.375rem, 3vw, 2.625rem);
  --fs-head:      clamp(2.25rem, 4.6vw, 4.25rem);
  --fs-head-sm:   clamp(1.75rem, 3.2vw, 2.75rem);
  --fs-stat:      clamp(2.5rem, 5.5vw, 5rem);
  --fs-mono:      0.8125rem;
  --fs-label:     1.0625rem;  /* content pseudo-headings — kickers, stat labels */

  /* Rhythm */
  --space-section: clamp(5rem, 11vw, 11rem);
  --space-head:    clamp(2.25rem, 5vw, 4.5rem);
  --wrap:          1280px;
  --gutter:        clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease-athletic: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:        180ms;
  --t-base:        420ms;
  --t-draw:        1200ms;

  /* Z-scale */
  --z-arc:    -1;
  --z-base:    1;
  --z-nav:    40;
  --z-menu:   39;
}

/* ------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

::selection { background: var(--teal); color: var(--paper); }

.skip-link {
  position: absolute; left: -200vw; top: 0;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: var(--fs-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.75rem 1.25rem; z-index: var(--z-nav);
}
.skip-link:focus-visible { left: 0; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ------------------------------------------------------------
   3. TYPE VOICES
   ------------------------------------------------------------ */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.97;
}

.kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.body-copy { color: var(--ink-soft); max-width: 62ch; }
.body-copy strong { color: var(--ink); }

.measure { max-width: 62ch; }

/* Underline-draw links (left → right) */
.link-draw {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1.5px;
  transition: background-size 200ms var(--ease-athletic);
  padding-bottom: 2px;
}
.link-draw:hover, .link-draw:focus-visible { background-size: 100% 1.5px; }

/* Body links */
.prose a, .body-copy a {
  color: var(--teal-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.prose a:hover, .body-copy a:hover { color: var(--ink); }

/* ------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ------------------------------------------------------------ */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-section); position: relative; }
.section-tight { padding-block: calc(var(--space-section) * 0.7); position: relative; }

/* Asymmetric two-column editorial split */
.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem var(--gutter);
  align-items: start;
}
.split > .lead-col { grid-column: 1 / 8; }
.split > .side-col { grid-column: 9 / 13; }

/* ------------------------------------------------------------
   5. FIELD GEOMETRY VOCABULARY
   ------------------------------------------------------------ */

/* 5.1 Corner quarter-circle arcs (pitch corners).
   Place inside a relatively-positioned frame. */
.corner { position: absolute; width: 26px; height: 26px; pointer-events: none; }
.corner-tl { top: 0; left: 0;  border-right: var(--line); border-bottom: var(--line); border-bottom-right-radius: 100%; border-top: 0; border-left: 0; }
.corner-tr { top: 0; right: 0; border-left: var(--line);  border-bottom: var(--line); border-bottom-left-radius: 100%; }
.corner-bl { bottom: 0; left: 0;  border-right: var(--line); border-top: var(--line); border-top-right-radius: 100%; }
.corner-br { bottom: 0; right: 0; border-left: var(--line);  border-top: var(--line); border-top-left-radius: 100%; }

/* 5.2 Halfway-line divider with center circle (section divider) */
.divider {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-head);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-top: var(--line);
}
.divider-badge {
  position: relative;
  width: 76px; height: 76px;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 500;
}
.divider-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.divider-badge circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 900ms var(--ease-athletic);
}
.drawn .divider-badge circle, .divider-badge.drawn circle { stroke-dashoffset: 0; }

/* On teal sections */
.on-teal .divider::before, .on-teal .divider::after { border-top: var(--line-paper); }
.on-teal .divider-badge { color: var(--paper); }
.on-teal .divider-badge circle { stroke: var(--paper); }

/* 5.3 Penalty arc — quiet background geometry */
.penalty-arc {
  position: absolute;
  z-index: var(--z-arc);
  pointer-events: none;
}
.penalty-arc circle, .penalty-arc path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  opacity: 0.1;
}
.on-teal .penalty-arc circle, .on-teal .penalty-arc path { stroke: var(--paper); opacity: 0.14; }

/* 5.4 Ruled league table */
.table-row {
  display: grid;
  align-items: baseline;
  gap: 1rem var(--gutter);
  border-top: var(--line-soft);
  padding-block: 1.5rem;
}
.table-rows > .table-row:last-child { border-bottom: var(--line-soft); }
.table-row--simple { grid-template-columns: minmax(11rem, 16rem) 1fr; }
.table-row--simple h3 { margin: 0; }
@media (max-width: 480px) { .table-row--simple { grid-template-columns: 1fr; gap: 0.4rem; } }

.tiers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gutter); }
@media (max-width: 480px) { .tiers-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   6. BUTTONS — square, decisive, invert on hover
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  border: var(--line);
  padding: 1em 1.75em;
  position: relative;
  z-index: var(--z-base);
  overflow: hidden;
  transition: color var(--t-fast) ease-out, border-color var(--t-fast) ease-out;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease-athletic);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink::before { background: var(--teal-deep); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--paper); }

/* Hero pair: primary fills teal on hover, secondary fills pink — the brand's one pink hover */
.hero-ctas .btn-ghost::before { background: var(--pink); }
.hero-ctas .btn-ghost:hover, .hero-ctas .btn-ghost:focus-visible { color: var(--ink); border-color: var(--pink); }

.btn-pink { background: var(--pink); border-color: var(--pink); color: var(--ink); }
.btn-pink::before { background: var(--ink); }
.btn-pink:hover, .btn-pink:focus-visible { color: var(--paper); border-color: var(--ink); }

/* On teal-deep ground */
.btn-paper { background: transparent; border: var(--line-paper); color: var(--paper); }
.btn-paper::before { background: var(--paper); }
.btn-paper:hover, .btn-paper:focus-visible { color: var(--teal-deep); }

/* ------------------------------------------------------------
   7. NAVIGATION — flat broadsheet masthead
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: var(--line);
  transition: background 280ms ease, border-color 280ms ease;
}

/* Transparent state — added by JS only on pages with a .hero-video */
.site-header.nav-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
@media (min-width: 901px) {
  .nav-transparent .nav-links a { color: var(--paper); }
}
.nav-transparent .nav-logo img { filter: brightness(0) invert(1); }
.nav-transparent .nav-burger span { background: var(--paper); }
.nav-transparent .nav-cta.btn-ink {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 247, 241, 0.65);
}
.nav-transparent .nav-cta.btn-ink:hover,
.nav-transparent .nav-cta.btn-ink:focus-visible {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.nav-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}
.nav-logo { flex: none; display: flex; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a[aria-current="page"] { background-size: 100% 1.5px; }

.nav-donate { flex: none; padding: 0.75em 1.5em; }

/* Mobile toggle — CSS-only (works without JS), enhanced by JS */
.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease-athletic);
}
.nav-toggle-input:focus-visible ~ .nav-bar .nav-burger { outline: 2px solid var(--ink); outline-offset: 3px; }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    z-index: var(--z-menu);
    background: var(--paper);
    border-bottom: var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 0.85rem 0;
    border-bottom: var(--line-soft);
    background: none;
  }
  .nav-links a:last-of-type { border-bottom: 0; }
  .nav-toggle-input:checked ~ .nav-bar .nav-links { display: flex; }
  .nav-toggle-input:checked ~ .nav-bar .nav-burger span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .nav-toggle-input:checked ~ .nav-bar .nav-burger span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
  .nav-donate { margin-left: auto; }
}

/* ------------------------------------------------------------
   8. HERO — touchline frame
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0 0;
}
.touchline {
  position: absolute;
  inset: clamp(0.75rem, 2vw, 1.5rem);
  pointer-events: none;
}
.touchline-rect {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.touchline-rect rect {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5px;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 4;
  stroke-dashoffset: 4;
}
.touchline .corner { opacity: 0; }

.hero-inner {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.25rem) clamp(2.5rem, 5vw, 4rem);
}
.hero-kicker { display: block; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.hero-headline { font-size: var(--fs-hero); }
.hero-headline .h-line { display: block; overflow: hidden; }
.hero-headline .h-line > span { display: block; }
.hero-sub-line {
  font-size: var(--fs-hero-sub);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 0.45em;
  max-width: 24em;
}

.hero-deck {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem var(--gutter);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
.hero-lede { grid-column: 1 / 7; }
.hero-ctas {
  grid-column: 8 / 13;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

/* Stat trio — ruled row pinned to the frame bottom */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.hero-stats .stat {
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem) 1.5rem;
}
.hero-stats .stat + .stat { position: relative; }
.hero-stats .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  bottom: 0.625rem;  /* divider stops short of the row edges */
  border-left: var(--line-soft);
}
.stat-n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-stat);
  line-height: 1;
}
.stat-l {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}
.stat-plus { color: var(--pink); }

/* Hero entrance choreography (CSS-only, runs on load) */
.hero-kicker, .hero-lede, .hero-ctas, .hero-stats { opacity: 0; animation: rise 600ms var(--ease-athletic) forwards; }
.hero-kicker { animation-delay: 80ms; }
.hero-headline .h-line > span { transform: translateY(110%); animation: lift 650ms var(--ease-athletic) forwards; }
.hero-headline .h-line:nth-child(1) > span { animation-delay: 120ms; }
.hero-headline .h-line:nth-child(2) > span { animation-delay: 200ms; }
.hero-headline .h-line:nth-child(3) > span { animation-delay: 280ms; }
.hero-lede { animation-delay: 420ms; }
.hero-ctas { animation-delay: 500ms; }
.hero-stats { animation-delay: 620ms; }
.touchline-rect rect { animation: draw-frame 1100ms var(--ease-athletic) 560ms forwards; }
.touchline .corner { animation: appear 400ms ease-out 1500ms forwards; }

@keyframes lift { to { transform: translateY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes appear { to { opacity: 1; } }
@keyframes draw-frame { to { stroke-dashoffset: 0; } }

/* ------------------------------------------------------------
   9. MARQUEE TRUST BAR
   ------------------------------------------------------------ */
.marquee {
  border-bottom: var(--line);
  overflow: hidden;
  padding-block: 0.9rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee-set span {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-inline: 1.75rem;
}
.marquee-set span::after {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  margin-left: 3.5rem;
  vertical-align: middle;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   10. SECTION HEAD PATTERN  (kicker → display head → copy)
   ------------------------------------------------------------ */
.section-head { margin-bottom: var(--space-head); }
.section-head .kicker { display: block; margin-bottom: 1.25rem; }
.section-head h2 { font-size: var(--fs-head); max-width: 18em; }

/* ------------------------------------------------------------
   11. PILLARS — ruled 2×2
   ------------------------------------------------------------ */
.pillars {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pillar {
  border-top: var(--line);
  padding: 1.75rem clamp(1.25rem, 3vw, 2.5rem) 2.5rem 0;
}
.pillar:nth-child(even) { border-left: var(--line-soft); padding-left: clamp(1.25rem, 3vw, 2.5rem); }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.pillar p { color: var(--ink-soft); margin-top: 0.6rem; font-size: 1.1875rem; max-width: 34ch; }
.pillar .kicker { color: var(--teal-deep); display: block; margin-bottom: 0.85rem; }

/* ------------------------------------------------------------
   12. THE JOURNEY — bridge line
   ------------------------------------------------------------ */
.journey { position: relative; }
.bridge {
  width: 100%;
  height: auto;
  overflow: visible;
}
.bridge path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2000ms var(--ease-athletic);
}
.journey.drawn .bridge path { stroke-dashoffset: 0; }

.journey-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  counter-reset: step;
}
.journey-step { text-align: center; padding-top: 1.25rem; position: relative; }
.j-num {
  width: 54px; height: 54px;
  margin: calc(-27px - 1.25rem) auto 1.1rem;  /* circle center sits ON the bridge deck line (offsets step padding-top) */
  display: grid;
  place-items: center;
  background: var(--paper);
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 350ms var(--ease-athletic), transform 450ms var(--ease-athletic);
}
.journey.drawn .j-num { opacity: 1; transform: scale(1); }
.journey.drawn .journey-step:nth-child(1) .j-num { transition-delay: 250ms; }
.journey.drawn .journey-step:nth-child(2) .j-num { transition-delay: 700ms; }
.journey.drawn .journey-step:nth-child(3) .j-num { transition-delay: 1150ms; }
.journey.drawn .journey-step:nth-child(4) .j-num { transition-delay: 1600ms; }

.journey-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.75rem;
}
.journey-step p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  margin-top: 0.6rem;
  max-width: 30ch;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   13. LEAGUE-TABLE PROGRAMME ROWS
   ------------------------------------------------------------ */
.fixture-list { display: block; }
.fixture {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto 2.5rem;
  align-items: baseline;
  gap: 1rem var(--gutter);
  border-top: var(--line-soft);
  padding-block: 1.4rem;
  text-decoration: none;
  position: relative;
  transition: background-color var(--t-fast) ease-out;
}
.fixture:last-of-type { border-bottom: var(--line-soft); }
.fixture:hover, .fixture:focus-visible { background: var(--paper-dim); }
.fixture-idx { font-family: var(--font-mono); font-size: var(--fs-mono); color: var(--ink-soft); }
.fixture-name {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1.375rem, 2.6vw, 2.125rem);
  line-height: 1.05;
  transition: color var(--t-fast) ease-out;
}
.fixture:hover .fixture-name { color: var(--teal-deep); }
.fixture-stat {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: right;
}
.fixture-arrow {
  font-family: var(--font-mono);
  text-align: right;
  transition: transform var(--t-fast) var(--ease-athletic);
}
.fixture:hover .fixture-arrow { transform: translateX(6px); }

/* ------------------------------------------------------------
   14. IMPACT SNAPSHOT — big numerals
   ------------------------------------------------------------ */
.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.figures.figures--4up { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .figures.figures--4up { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .figures.figures--4up { grid-template-columns: 1fr; gap: 0; } }
.figure { border-top: var(--line); padding-top: 1.5rem; }
.figure .stat-n { font-size: clamp(3.5rem, 8vw, 7rem); }

/* ------------------------------------------------------------
   15. GET INVOLVED — three ruled columns
   ------------------------------------------------------------ */
.involve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line);
}
.involve-col {
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem) 2.5rem;
  display: flex;
  flex-direction: column;
}
.involve-col:first-child { padding-left: 0; }
.involve-col + .involve-col { border-left: var(--line-soft); }
.involve-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.75rem;
}
.involve-col ul { list-style: none; margin: 1.25rem 0 2rem; flex: 1; }
.involve-col li {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  padding-block: 0.7rem;
  border-top: var(--line-soft);
}
.involve-col li:last-child { border-bottom: var(--line-soft); }
.involve-col .kicker { align-self: flex-start; }

/* ------------------------------------------------------------
   16. DONATE BAND — full-bleed teal-deep
   ------------------------------------------------------------ */
.teal-band {
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.teal-band .penalty-arc { z-index: 0; }
.teal-band .wrap { position: relative; z-index: var(--z-base); }
.teal-band h2 { font-size: var(--fs-head); max-width: 14em; }
.teal-band p { color: rgba(250, 247, 241, 0.88); max-width: 56ch; margin-top: 1.5rem; }
.teal-band .band-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem var(--gutter);
  align-items: end;
}
.teal-band .band-copy { grid-column: 1 / 9; }
.teal-band .band-cta { grid-column: 10 / 13; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; }
.teal-band .kicker { color: var(--paper); display: block; margin-bottom: 1.25rem; }

/* ------------------------------------------------------------
   17. FOOTER — broadsheet colophon
   ------------------------------------------------------------ */
.site-footer {
  border-top: var(--line);
  background: var(--paper-dim);
  margin-top: var(--space-section);
}
.foot-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 3fr;
  gap: 3rem var(--gutter);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.foot-brand img { height: 48px; width: auto; margin-bottom: 1.25rem; }
.foot-brand p { color: var(--ink-soft); font-size: 1.0625rem; max-width: 36ch; }
.foot-col h2 {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.foot-col a {
  display: block;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.3rem;
}
.foot-col a:hover, .foot-col a:focus-visible { color: var(--teal-deep); }

.foot-news p { font-size: 1rem; color: var(--ink-soft); margin-top: 1rem; }
.foot-news .news-row { display: flex; gap: 0; border-bottom: var(--line); }
.foot-news input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0.7rem 0;
}
.foot-news input::placeholder { color: var(--ink-soft); opacity: 1; }
.foot-news button {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 0 0.7rem 1rem;
  white-space: nowrap;
}
.foot-news button:hover, .foot-news button:focus-visible { color: var(--teal-deep); }

.foot-meta {
  border-top: var(--line-soft);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.foot-meta a { color: inherit; text-decoration: none; }
.foot-meta a:hover, .foot-meta a:focus-visible { color: var(--teal-deep); }
.foot-social { display: inline-flex; align-items: center; }
.foot-social svg { width: 19px; height: 19px; display: block; }

.foot-bottom {
  border-top: var(--line-soft);
  padding-block: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover, .foot-bottom a:focus-visible { color: var(--teal-deep); }

/* ------------------------------------------------------------
   18. SUBPAGE HERO (about / programmes / impact / news / etc.)
   ------------------------------------------------------------ */
.page-hero { padding-block-start: calc(72px + clamp(3.5rem, 7vw, 6rem)); }
.page-hero .kicker { display: block; margin-bottom: 1.5rem; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); max-width: 14em; }
.page-hero .lede {
  font-size: 1.5rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-top: 2rem;
}
.page-hero-rule { border: 0; border-top: var(--line); margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ------------------------------------------------------------
   19. FORMS — underline style
   ------------------------------------------------------------ */
.field { margin-bottom: 1.9rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 1.1875rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: var(--line);
  border-radius: 0;
  padding: 0.55rem 0;
  transition: border-color var(--t-fast) ease-out;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: 1; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--teal-deep);
  box-shadow: 0 1.5px 0 var(--teal-deep);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field-select { position: relative; }
.field-select::after {
  content: "";
  position: absolute;
  right: 4px; bottom: 1.4rem;
  width: 8px; height: 8px;
  border-right: var(--line);
  border-bottom: var(--line);
  transform: rotate(45deg);
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }

/* ------------------------------------------------------------
   20. IMAGERY — teal duotone treatment
   ------------------------------------------------------------ */
.duotone { position: relative; overflow: hidden; }
.duotone img { filter: grayscale(1) contrast(1.05); width: 100%; height: 100%; object-fit: cover; }
.duotone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}
.duotone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  background: var(--paper);
  mix-blend-mode: soft-light;
  opacity: 0.25;
  pointer-events: none;
}

/* ------------------------------------------------------------
   21. SCROLL REVEALS (sparing; JS-gated so no-JS = visible)
   ------------------------------------------------------------ */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-athletic), transform 550ms var(--ease-athletic);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   22. RESPONSIVE — 900 / 480
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .split > .lead-col, .split > .side-col { grid-column: 1 / -1; }

  .hero-deck { grid-template-columns: 1fr; }
  .hero-lede, .hero-ctas { grid-column: 1 / -1; }
  .hero-ctas { justify-content: flex-start; }

  .journey-steps { grid-template-columns: 1fr; gap: 0; }
  .bridge { display: none; }
  .journey-steps {
    position: relative;
    padding-left: 4.5rem;
  }
  .journey-steps::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 0; bottom: 0;
    border-left: var(--line);
  }
  .journey-step { text-align: left; padding: 0 0 2.75rem; }
  .journey-step p { margin-inline: 0; }
  .j-num {
    position: absolute;
    left: -4.5rem;
    top: -2px;
    margin: 0;
    opacity: 1;
    transform: none;
  }

  .fixture { grid-template-columns: 3rem 1fr 2rem; }
  .fixture-stat { grid-column: 2; grid-row: 2; text-align: left; }
  .fixture-arrow { grid-row: 1; grid-column: 3; }

  .involve { grid-template-columns: 1fr; }
  .involve-col { padding-left: 0; padding-right: 0; }
  .involve-col + .involve-col { border-left: 0; border-top: var(--line-soft); }

  .teal-band .band-copy, .teal-band .band-cta { grid-column: 1 / -1; }
  .teal-band .band-cta { align-items: flex-start; }

  .foot-grid { grid-template-columns: 1fr 1fr; }

  .figures { grid-template-columns: 1fr; gap: 0; }
  .figure { padding-bottom: 1.75rem; }
}

@media (max-width: 480px) {
  body { font-size: 1.1875rem; }

  .hero-inner { padding-inline: clamp(1.5rem, 6vw, 2.5rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat + .stat { border-top: var(--line-soft); }
  .hero-stats .stat + .stat::before { display: none; }
  .hero-stats .stat { padding-block: 1.25rem; }

  .divider-badge { width: 60px; height: 60px; font-size: 0.9375rem; }

  .pillars { grid-template-columns: 1fr; }
  .pillar:nth-child(even) { border-left: 0; padding-left: 0; }
  .pillar { padding-right: 0; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .foot-grid { grid-template-columns: 1fr; gap: 2.25rem; }

  .journey-steps { padding-left: 3.75rem; }
  .journey-steps::before { left: 22px; }
  .j-num { width: 44px; height: 44px; left: -3.75rem; }
}

/* ------------------------------------------------------------
   23. REDUCED MOTION — non-negotiable
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero-kicker, .hero-lede, .hero-ctas, .hero-stats,
  .touchline .corner, .j-num { opacity: 1; transform: none; animation: none; }
  .hero-headline .h-line > span { transform: none; animation: none; }
  .touchline-rect rect, .bridge path, .divider-badge circle {
    stroke-dashoffset: 0; animation: none;
  }
  .marquee-track { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   24. PLAIN HALFWAY DIVIDER (no index — small empty circle)
   ------------------------------------------------------------ */
.divider-plain {
  display: flex;
  align-items: center;
}
.divider-plain::before, .divider-plain::after {
  content: "";
  flex: 1;
  border-top: var(--line-soft);
}
.divider-plain > span {
  width: 18px; height: 18px;
  flex: none;
  border: 1.5px solid rgba(16, 23, 20, 0.35);
  border-radius: 50%;
}

/* ------------------------------------------------------------
   25. ABOUT — mission/vision, pull quote, values, timeline, team
   ------------------------------------------------------------ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--gutter);
}
.mv-col { border-top: var(--line); padding-top: 1.5rem; }
.mv-col .kicker { display: block; margin-bottom: 1rem; }
.mv-col p { font-size: 1.5rem; line-height: 1.55; }

.pull-quote {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  font-size: clamp(1.875rem, 4.2vw, 3.75rem);
  max-width: 20em;
  margin-block: var(--space-head);
}
.pull-quote em { font-style: normal; color: var(--teal-deep); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.value {
  border-top: var(--line);
  padding: 1.5rem clamp(1.25rem, 2.5vw, 2rem) 2.25rem 0;
}
.value:not(:nth-child(3n+1)) { border-left: var(--line-soft); padding-left: clamp(1.25rem, 2.5vw, 2rem); }
.value .kicker { color: var(--teal-deep); display: block; margin-bottom: 0.85rem; }
.value h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.375rem;
}
.value p { color: var(--ink-soft); font-size: 1.0625rem; margin-top: 0.5rem; max-width: 34ch; }

/* Timeline — vertical halfway-line with year circles */
.timeline {
  position: relative;
  padding-left: clamp(5.5rem, 10vw, 7.5rem);
  max-width: 56rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 8px; bottom: 8px;
  border-left: var(--line);
}
.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  position: absolute;
  left: calc(-1 * clamp(5.5rem, 10vw, 7.5rem)); /* circle centers on the rail at 36px */
  top: -4px;
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
}
.tl-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.tl-item p { color: var(--ink-soft); margin-top: 0.5rem; max-width: 58ch; }

/* Team — duotone square crops */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}
.member .duotone { aspect-ratio: 1; border: var(--line-soft); }
.member h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-top: 1.1rem;
}
.member .role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  margin-top: 0.3rem;
}
.member .bio { color: var(--ink-soft); font-size: 1rem; margin-top: 0.6rem; }

.member-featured {
  display: grid;
  grid-template-columns: clamp(260px, 28%, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 72rem;
}
.member-featured__photo { aspect-ratio: 1; border: var(--line-soft); }
.bio-more { display: none; }
.bio-more.is-open { display: block; }
.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin-top: 1rem;
  background: none;
  border: none;
  padding: 0;
  font: 500 0.875rem/1 var(--ff-body);
  color: var(--teal);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.bio-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.bio p + p { margin-top: 0.9rem; }
@media (max-width: 600px) {
  .member-featured { grid-template-columns: 1fr; }
  .member-featured__photo { max-width: 220px; }
}

/* Story figure (about) */
.story-figure { border: var(--line-soft); position: relative; }
.story-figure .duotone { aspect-ratio: 16 / 9; }
.story-figure .duotone img { object-position: center 72%; }
.story-figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 0.8rem 1rem;
  border-top: var(--line-soft);
}

/* ------------------------------------------------------------
   26. PROGRAMMES — alternating editorial rows
   ------------------------------------------------------------ */
.prog-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem var(--gutter);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.prog-idx {
  grid-column: 1 / 2;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--ink-soft);
  padding-top: 0.6rem;
}
.prog-main { grid-column: 2 / 9; }
.prog-row:nth-of-type(even) .prog-main { grid-column: 5 / 12; }
.prog-row:nth-of-type(even) .prog-idx { grid-column: 4 / 5; }
.prog-main h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-head-sm);
  letter-spacing: -0.01em;
}
.prog-main > p { color: var(--ink-soft); margin-top: 1rem; max-width: 58ch; }
.prog-stat {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: var(--line-soft);
  max-width: 36em;
}

/* ------------------------------------------------------------
   27. IMPACT — outcomes table, story band, SDG grid
   ------------------------------------------------------------ */
.outcome-row { grid-template-columns: minmax(7.5rem, auto) 1fr; }
.outcome-row .stat-n { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
.outcome-row .stat-l { margin-top: 0; align-self: center; }

.story-band {
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.story-band blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-size: clamp(1.75rem, 3.8vw, 3.25rem);
  max-width: 22em;
}
.story-band figcaption {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2.25rem;
  color: rgba(250, 247, 241, 0.92);
}
.story-band .wrap { position: relative; z-index: var(--z-base); }

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sdg {
  border-top: var(--line);
  padding: 1.5rem clamp(1.25rem, 2.5vw, 2rem) 2.25rem 0;
}
.sdg:not(:nth-child(3n+1)) { border-left: var(--line-soft); padding-left: clamp(1.25rem, 2.5vw, 2rem); }
.sdg .kicker { color: var(--teal-deep); display: block; margin-bottom: 0.85rem; }
.sdg h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.375rem;
}
.sdg p { color: var(--ink-soft); font-size: 1.0625rem; margin-top: 0.5rem; max-width: 36ch; }

.measure-cols { columns: 2; column-gap: calc(var(--gutter) * 1.5); max-width: 70rem; }
.measure-cols p { break-inside: avoid; margin-bottom: 1.4rem; color: var(--ink-soft); }
.measure-cols strong { color: var(--ink); }

/* ------------------------------------------------------------
   28. NEWS — broadsheet listing
   ------------------------------------------------------------ */
.news-feature {
  border: var(--line);
  position: relative;
  padding: clamp(1.75rem, 4vw, 3.5rem);
}
.news-feature .corner { width: 20px; height: 20px; }
.news-feature .kicker { color: var(--teal-deep); }
.news-feature h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-head-sm);
  margin-top: 1rem;
  max-width: 18em;
}
.news-feature p { color: var(--ink-soft); margin-top: 1.25rem; max-width: 60ch; }
.news-feature .btn { margin-top: 2rem; }
.news-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.news-item {
  display: grid;
  grid-template-columns: 11rem 1fr 2.5rem;
  gap: 0.75rem var(--gutter);
  align-items: baseline;
  border-top: var(--line-soft);
  padding-block: 1.6rem;
  text-decoration: none;
  transition: background-color var(--t-fast) ease-out;
}
.news-list > .news-item:last-of-type { border-bottom: var(--line-soft); }
.news-item:hover, .news-item:focus-visible { background: var(--paper-dim); }
.news-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.1;
  transition: color var(--t-fast) ease-out;
}
.news-item:hover h3 { color: var(--teal-deep); }
.news-item p { color: var(--ink-soft); font-size: 1.0625rem; margin-top: 0.4rem; max-width: 64ch; }
.news-item .news-meta span { display: block; }
.news-item .fixture-arrow { align-self: center; }

/* ------------------------------------------------------------
   29. ARTICLE — narrow measure, clean
   ------------------------------------------------------------ */
.article-wrap { max-width: 44rem; margin-inline: auto; }
.article-body p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.625rem;
  margin: 2.5rem 0 1rem;
}
.article-body em { color: var(--ink); }
.lead-quote {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  border-top: var(--line);
  border-bottom: var(--line);
  padding-block: 2rem;
  margin-block: 2.5rem;
}
.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: var(--line);
  margin-top: 3rem;
  padding-top: 1.75rem;
}
.share-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.share-btns { display: flex; gap: 0.75rem; }
.share-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: var(--line);
  color: var(--ink);
  transition: background-color var(--t-fast) ease-out, color var(--t-fast) ease-out;
}
.share-btn svg { width: 18px; height: 18px; display: block; }
.share-btn:hover, .share-btn:focus-visible { background: var(--ink); color: var(--paper); }

/* ------------------------------------------------------------
   30. CONTACT — ruled detail list + form
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem calc(var(--gutter) * 1.75);
  align-items: start;
}
.detail-row {
  border-top: var(--line-soft);
  padding-block: 1.3rem;
}
.detail-list .detail-row:last-of-type { border-bottom: var(--line-soft); }
.detail-row .kicker { color: var(--teal-deep); display: block; margin-bottom: 0.5rem; }
.detail-row p { color: var(--ink-soft); font-size: 1.0625rem; }
.detail-row a { color: var(--ink); }
.cmap { border: var(--line-soft); margin-top: 2rem; background: var(--paper-dim); }
.cmap iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(1); }
.cmap-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 0.8rem 1rem;
  border-top: var(--line-soft);
}
.cmap-caption a { color: var(--ink); }

.form-success {
  display: none;
  border: var(--line);
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.75rem;
}
.form-success p { color: var(--ink-soft); margin-top: 0.75rem; }

/* ------------------------------------------------------------
   31. DONATE — segmented ruled controls + Paystack flow
   ------------------------------------------------------------ */
.donate-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem calc(var(--gutter) * 1.75);
  align-items: start;
}
.dlabel {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2.5rem 0 1rem;
}
.dlabel:first-child { margin-top: 0; }

.freq-toggle { display: grid; grid-template-columns: 1fr 1fr; border: var(--line); width: min(22rem, 100%); }
.freq-toggle button {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9em 1em;
  transition: background-color var(--t-fast) ease-out, color var(--t-fast) ease-out;
}
.freq-toggle button + button { border-left: var(--line); }
.freq-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

.amt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}
.amt {
  border-right: var(--line);
  border-bottom: var(--line);
  padding: 1.1rem 1rem 1.2rem;
  text-align: left;
  transition: background-color var(--t-fast) ease-out, color var(--t-fast) ease-out;
}
.amt .amt-n { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; display: block; }
.amt .amt-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.2rem;
}
.amt:hover { background: var(--paper-dim); }
.amt[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.amt[aria-pressed="true"] .amt-sub { color: rgba(250, 247, 241, 0.75); }

.custom-amt { display: flex; align-items: baseline; gap: 0.6rem; border-bottom: var(--line); margin-top: 1.5rem; }
.custom-amt .cur { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.custom-amt input {
  flex: 1;
  font: inherit;
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0.55rem 0;
}
.custom-amt input::placeholder { color: var(--ink-soft); opacity: 1; }
.custom-amt input:focus-visible { outline: none; }
.custom-amt:focus-within { border-bottom-color: var(--teal-deep); box-shadow: 0 1.5px 0 var(--teal-deep); }

.impact-line {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: var(--line-soft);
  padding: 0.9rem 1.1rem;
  margin-top: 1.5rem;
}
.impact-line strong { color: var(--teal-deep); font-weight: 500; }

.dpay { width: 100%; margin-top: 2.25rem; padding-block: 1.2em; font-size: 0.875rem; }
.dsecure {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1rem;
}

/* ------------------------------------------------------------
   32. THANK-YOU & 404 — center circle pages
   ------------------------------------------------------------ */
.center-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--space-section);
  position: relative;
}
.center-circle {
  position: relative;
  width: min(200px, 52vw);
  aspect-ratio: 1;
  margin: 0 auto 2.5rem;
  display: grid;
  place-items: center;
}
.center-circle svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.center-circle circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: draw-frame 1100ms var(--ease-athletic) 200ms forwards;
}
.center-circle .kicker { color: var(--ink); }
.center-page h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.center-page .lede { color: var(--ink-soft); max-width: 44ch; margin: 1.5rem auto 0; }
.center-page .actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.ref-line {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}

/* ------------------------------------------------------------
   33. LEGAL PAGES — narrow measure, mono section labels
   ------------------------------------------------------------ */
.legal { max-width: 44rem; }
.legal section { margin-bottom: 2.75rem; }
.legal .kicker { color: var(--teal-deep); display: block; margin-bottom: 0.75rem; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 1.25rem; margin-top: 0.75rem; }
.legal li { margin-bottom: 0.4rem; }

/* ------------------------------------------------------------
   34. SUBPAGE RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; gap: 2.5rem 0; }
  .values-grid, .sdg-grid { grid-template-columns: 1fr 1fr; }
  .value:not(:nth-child(3n+1)), .sdg:not(:nth-child(3n+1)) { border-left: 0; padding-left: 0; }
  .value:nth-child(even), .sdg:nth-child(even) { border-left: var(--line-soft); padding-left: clamp(1.25rem, 2.5vw, 2rem); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .prog-idx { grid-column: 1 / 2 !important; }
  .prog-main { grid-column: 2 / 13 !important; }
  .measure-cols { columns: 1; }
  .contact-grid, .donate-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr 2.5rem; }
  .news-item .news-meta { grid-column: 1 / 2; }
  .news-item .news-meta span { display: inline; }
  .news-item .news-meta span + span::before { content: " · "; }
  .news-item .fixture-arrow { grid-column: 2; grid-row: 1; }
}

@media (max-width: 480px) {
  .values-grid, .sdg-grid, .team-grid { grid-template-columns: 1fr; }
  .value:nth-child(even), .sdg:nth-child(even) { border-left: 0; padding-left: 0; }
  .value, .sdg { padding-right: 0; }
  .timeline { padding-left: 4.25rem; }
  .timeline::before { left: 26px; }
  .tl-year { width: 52px; height: 52px; font-size: 0.72rem; left: -4.25rem; }
  .amt-grid { grid-template-columns: 1fr 1fr; }
  .prog-idx { display: none; }
  .prog-main { grid-column: 1 / 13 !important; }
}

/* ============================================================
   35. MIGRATION ADDITIONS — video hero, stat strip, section
       imagery, journey thumbs, Beyond Borders, paper duotone
   ============================================================ */

/* 35.1 Paper-tone duotone — for photos sitting ON teal sections.
   Shadows resolve to paper, not teal, so the image reads LIGHTER than
   the teal band (teal-on-teal would disappear). */
.duotone-paper { position: relative; overflow: hidden; background: var(--paper); }
.duotone-paper img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(1.06);
  mix-blend-mode: luminosity;
}
.duotone-paper::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--teal);
  mix-blend-mode: multiply;
  opacity: 0.16;
  pointer-events: none;
}

/* 35.2 VIDEO HERO — full-viewport ambient background, paper text on top */
.hero-video {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}
.hero-tint { position: absolute; inset: 0; }
.hero-tint::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--teal-deep);
  mix-blend-mode: multiply;
  opacity: 0.74;            /* heavy — ambient texture, not "watch this" */
}
.hero-tint::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,23,20,0.42), rgba(16,23,20,0.58));
}
.hero-video .hero-inner { position: relative; z-index: var(--z-base); width: 100%; }
.hero-video .touchline { z-index: var(--z-base); top: calc(72px + clamp(0.75rem, 2vw, 1.5rem)); }
.hero-video .touchline-rect rect { stroke: var(--paper); }
.hero-video .corner { border-color: var(--paper) !important; }
.hero-video .hero-kicker,
.hero-video .hero-headline { color: var(--paper); }
.hero-video .hero-lede { color: rgba(250, 247, 241, 0.92); }
/* CTAs on the dark video */
.hero-video .btn-ink { border-color: var(--paper); }
.hero-video .btn-ghost { color: var(--paper); border-color: var(--paper); }
.hero-video .btn-ghost::before { background: var(--pink); }   /* the one sanctioned pink hover */
.hero-video .btn-ghost:hover, .hero-video .btn-ghost:focus-visible { color: var(--ink); border-color: var(--pink); }

/* 35.3 STAT STRIP — relocated trio, ruled row directly below hero */
.stat-strip { border-bottom: var(--line); }
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .stat-strip-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-strip .stat { padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2.5rem); }
.stat-strip .stat + .stat { position: relative; }
.stat-strip .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem; bottom: 0.7rem;
  border-left: var(--line-soft);
}

/* 35.4 SECTION FIGURES — framed photography */
.fig-frame { position: relative; border: var(--line-soft); }
.fig-frame .corner { width: 20px; height: 20px; }
.mission-figure .duotone { aspect-ratio: 4 / 5; }
.about-figure .duotone { aspect-ratio: 16 / 9; }

/* 35.5 JOURNEY STEP THUMBNAILS (1:1) */
.j-thumb { margin-top: 1.25rem; border: var(--line-soft); }
.j-thumb .duotone { aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .j-thumb { max-width: 16rem; }
}

/* 35.6 PROGRAMME ROW IMAGERY — alternating left/right */
.prog-row { align-items: center; }
.prog-figure { grid-column: 9 / 13; }
.prog-row:nth-of-type(even) .prog-figure { grid-column: 1 / 5; grid-row: 1; }
.prog-figure .duotone { aspect-ratio: 3 / 2; }
.prog-figure.fig-frame .corner { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .prog-figure, .prog-row:nth-of-type(even) .prog-figure { grid-column: 1 / 13; grid-row: auto; }
}

/* 35.7 IMPACT featured-story image (on teal band) */
.story-band .story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-figure-impact .duotone-paper { aspect-ratio: 4 / 5; border: var(--line-paper); }
@media (max-width: 900px) {
  .story-band .story-grid { grid-template-columns: 1fr; }
  .story-figure-impact { order: -1; max-width: 22rem; }
}

/* 35.8 BEYOND BORDERS (index 06) — teal storytelling band */
.bb-head { max-width: 22ch; }
.bb-lead { color: rgba(250, 247, 241, 0.92); max-width: 60ch; margin-top: 1.5rem; font-size: inherit; }
.bb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.bb-quote {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.06;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.bb-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-style: normal;
  letter-spacing: 0.06em;
  color: rgba(250, 247, 241, 0.8);
}
.bb-context { color: rgba(250, 247, 241, 0.82); margin-top: 1.5rem; }
.bb-next { margin-top: 2rem; }
.bb-next .kicker { color: var(--paper); display: block; margin-bottom: 1rem; }
.bb-next ul { list-style: none; }
.bb-next li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(250, 247, 241, 0.22);
  color: rgba(250, 247, 241, 0.92);
  font-size: 1.0625rem;
}
.bb-next li:last-child { border-bottom: 1px solid rgba(250, 247, 241, 0.22); }
.bb-media { display: grid; gap: var(--gutter); }
.bb-media .bb-a .duotone-paper { aspect-ratio: 3 / 2; }
.bb-media .bb-b .duotone-paper { aspect-ratio: 4 / 5; max-width: 20rem; }
.bb-cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (max-width: 900px) {
  .bb-grid { grid-template-columns: 1fr; }
  .bb-media { grid-template-columns: 1fr 1fr; }
  .bb-media .bb-b .duotone-paper { max-width: none; }
}
@media (max-width: 480px) {
  .bb-media { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: 1fr; }
  .stat-strip .stat + .stat::before { display: none; }
  .stat-strip .stat + .stat { border-top: var(--line-soft); }
}

/* 35.9 News feature image */
.news-feature-figure { aspect-ratio: 16 / 9; border: var(--line-soft); margin-bottom: 1.75rem; overflow: hidden; }
.news-feature-figure img { width: 100%; height: 100%; object-fit: cover; }

/* 35.10 Article inline figures (Beyond Borders) */
.article-figure { margin: 2.5rem 0; border: var(--line-soft); }
.article-figure .duotone { aspect-ratio: 16 / 9; }
.article-figure figcaption {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-soft);
  padding: 0.75rem 1rem; border-top: var(--line-soft);
}
.article-figure-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); margin: 2.5rem 0; }
.article-figure-pair .duotone { aspect-ratio: 4 / 3; border: var(--line-soft); }
@media (max-width: 600px) { .article-figure-pair { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   36. NAV CTA — keep on one line; tighter on mobile
   ------------------------------------------------------------ */
.btn { white-space: nowrap; }
@media (max-width: 900px) {
  .nav-cta { padding: 0.55em 1em; font-size: 0.72rem; }
  .site-header .nav-bar { min-height: 64px; }
  .page-hero { padding-block-start: calc(64px + clamp(3.5rem, 7vw, 6rem)); }
  .hero-video .touchline { top: calc(64px + clamp(0.75rem, 2vw, 1.5rem)); }
}

/* ------------------------------------------------------------
   37. SWAP REVIEW NOTES — owner-facing placeholder annotations.
   Deliberately visible + distinct so they're easy to spot and
   remove once real photography lands. (Temporary, pre-launch.)
   ------------------------------------------------------------ */
.swap-note {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--teal-deep);
  background: rgba(212, 83, 126, 0.07);
  border: 1px dashed rgba(212, 83, 126, 0.55);
  padding: 0.5rem 0.7rem;
  margin-top: 0.6rem;
}
.swap-note::before {
  content: "✎ Note — ";
  color: var(--pink);
  font-weight: 500;
}
.on-teal .swap-note,
.teal-band .swap-note {
  color: var(--paper);
  background: rgba(250, 247, 241, 0.1);
  border-color: rgba(250, 247, 241, 0.5);
}
.on-teal .swap-note::before,
.teal-band .swap-note::before { color: var(--paper); }

/* ------------------------------------------------------------
   38. HERO TOUCHLINE — clean sharp-cornered frame
   The inset corner-arc spans read as disconnected (each line
   stopped short of the corner, bridged by an inward arc). A pitch
   boundary is a crisp rectangle, so drop the arcs on the hero and
   keep the drawn rectangle. (Card corner-ticks elsewhere unaffected.)
   ------------------------------------------------------------ */
.hero .touchline .corner { display: none !important; }

/* ------------------------------------------------------------
   40. CHANGE BRIEF — mission band, programme inline-image reveal,
       impact featured-story portrait strip
   ------------------------------------------------------------ */

/* 40.1 Mission — full-width cinematic band (HOME-02).
   Desktop: band on top, title below on paper. Mobile: tall image with
   the eyebrow + heading overlaid (mirrors the Beyond Borders hero). */
.mission-hero { margin-bottom: var(--space-head); }
.mission-band { aspect-ratio: 16 / 6; border: var(--line-soft); }
.mission-band img { width: 100%; height: 100%; object-fit: cover; }
.mission-copy { max-width: 68ch; }
.mission-hero__overlay { display: none; }
.mission-hero__title { margin-top: var(--space-head); }
@media (max-width: 480px) {
  .mission-hero { position: relative; }
  .mission-band { aspect-ratio: 4 / 5; }
  .mission-hero__overlay {
    display: block; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(16, 23, 20, 0) 34%, rgba(16, 23, 20, 0.8));
  }
  .mission-hero__title {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    margin: 0; padding: clamp(1.25rem, 5vw, 1.75rem);
  }
  .mission-hero__title .kicker { color: var(--paper); }
  .mission-hero__title h2 { color: var(--paper); font-size: clamp(1.9rem, 7.5vw, 2.6rem); max-width: none; }
}

/* 40.0 Who We Are — six-item ruled checklist (mirrors .involve-col li) */
.mission-list { list-style: none; margin: 0.75rem 0 0; padding: 0; }
.mission-list li {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  padding-block: 0.65rem;
  border-top: var(--line-soft);
}
.mission-list li:last-child { border-bottom: var(--line-soft); }

/* 40.2 Programme rows — inline image reveal inside the title */
.prog-img-slot {
  display: inline-block;
  width: 0;
  height: 1em;            /* matches row cap height */
  overflow: hidden;
  vertical-align: middle;
  transition: width 280ms var(--ease-athletic), margin 280ms var(--ease-athletic);
}
.fixture:hover .prog-img-slot,
.fixture:focus-visible .prog-img-slot { width: 56px; margin: 0 8px; }
.prog-img-slot img { width: 56px; height: 100%; object-fit: cover; display: block; }
@media (max-width: 480px) { .prog-img-slot { display: none !important; } }

/* 40.3 Impact featured story — narrow portrait strip (photo pinned left, quote fills the rest) */
.featured-story__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 360px;
}
.featured-story__photo {
  width: 22%;
  flex-shrink: 0;
  overflow: hidden;
}
.featured-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-story__content {
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 480px) {
  .featured-story__inner { flex-direction: column; min-height: 0; }
  .featured-story__photo { width: 100%; height: 110px; }
  .featured-story__photo img { height: 110px; }
  .featured-story__content { padding: 28px 20px; }
}

/* legacy "photo as faint background texture" rules — unused by .featured-story, harmless */
.story-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  min-height: 360px;
  display: flex;
  align-items: center;
}
.story-bg { position: absolute; inset: 0; overflow: hidden; }
.story-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.story-content { position: relative; z-index: var(--z-base); }
.story-content figure { margin: 0; max-width: none; }
.story-content blockquote { max-width: none; }

/* 40.4 Beyond Borders — full-bleed hero (04A) with overlaid eyebrow/heading,
   then wrapped body with content left + small inset (04B) right */

/* When a teal-band is the first element inside <main> (e.g. sport-without-borders.html),
   push it below the fixed nav bar so the top of the image isn't clipped */
main > .teal-band:first-child { margin-top: 72px; }
@media (max-width: 900px) { main > .teal-band:first-child { margin-top: 64px; } }

.bb-hero { position: relative; width: 100%; aspect-ratio: 16 / 6; overflow: hidden; }
.bb-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(1) contrast(1.02); display: block;
}
.bb-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 80, 65, 0.28), rgba(8, 80, 65, 0.66));
}
.bb-hero__text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(1.5rem, 4vw, 2.75rem); }
.bb-hero__text .kicker { color: #9FE1CB; display: block; margin-bottom: 0.85rem; }
.bb-hero__text h2 { color: var(--paper); font-size: clamp(1.8rem, 4.5vw, 3.75rem); max-width: 22ch; margin: 0; }

.bb-body { display: flex; gap: clamp(2rem, 4vw, 3rem); align-items: flex-start; padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.bb-body__left { flex: 1; min-width: 0; }
.bb-body__left .bb-lead { margin-top: 0; }
.bb-body__right { flex-shrink: 0; width: 280px; }
.bb-inset { width: 100%; aspect-ratio: 3 / 4; }

@media (max-width: 900px) {
  .bb-body { flex-direction: column; }
  .bb-body__right { width: 100%; max-width: 320px; }
}
@media (max-width: 480px) {
  .bb-hero { aspect-ratio: 4 / 5; }
  .bb-inset { aspect-ratio: 16 / 9; }
}

/* ------------------------------------------------------------
   41. ACCESSIBILITY — minimum tap-target sizes (WCAG 2.5.8)
   ------------------------------------------------------------ */
.foot-social { min-width: 44px; min-height: 44px; justify-content: center; }
.foot-meta a, .foot-bottom a { display: inline-block; padding-block: 0.4rem; }
.foot-col a { padding-block: 0.5rem; }

/* 42. Parent-company name links (Sports Bridge International → sportsbridgeintl.com) */
.sbi-link { color: var(--teal-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.sbi-link:hover, .sbi-link:focus-visible { color: var(--ink); }

/* ------------------------------------------------------------
   43. BEYOND BORDERS CAROUSEL — 6-image CSS crossfade.
   No JS, no scroll-snap. Slides inherit the .bb-hero img treatment
   (absolute, cover, grayscale) so the band stays full-bleed and
   identical in dimensions to the single-image hero it replaces.
   2s full-opacity dwell per slide + 0.5s crossfade into the next
   (2.5s slot x 6 slides = 15s full cycle) — same slot timing as
   section 45's .photo-carousel, kept in sync deliberately.
   ------------------------------------------------------------ */
.bb-slide { opacity: 0; animation: bb-cross 15s linear infinite; }
.bb-slide-2 { animation-delay: 2.5s; }
.bb-slide-3 { animation-delay: 5s; }
.bb-slide-4 { animation-delay: 7.5s; }
.bb-slide-5 { animation-delay: 10s; }
.bb-slide-6 { animation-delay: 12.5s; }
@keyframes bb-cross {
  0%      { opacity: 0; }
  3.333%  { opacity: 1; }
  16.667% { opacity: 1; }
  20%     { opacity: 0; }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bb-slide { animation: none; opacity: 0; }
  .bb-slide-1 { opacity: 1; }
}

/* ------------------------------------------------------------
   44. GALLERY PAGE
   ------------------------------------------------------------ */

/* Year jump-nav — sticky strip directly below the main header */
.gallery-year-nav {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: var(--paper);
  border-bottom: var(--line);
}
.gallery-year-nav > .wrap {
  display: flex;
  gap: 0;
  padding-block: 0;
}
.gallery-year-tab {
  /* button reset */
  appearance: none;
  background: none;
  border-top: none;
  border-left: none;
  border-radius: 0;
  cursor: pointer;
  /* design */
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.9rem 1.75rem;
  border-right: var(--line-soft);
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
}
.gallery-year-tab:hover, .gallery-year-tab:focus-visible {
  color: var(--ink);
  background: var(--paper-dim);
}
.gallery-year-tab[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Tab panels: JS hides inactive panels via .is-active class.
   No-JS fallback: .js class is never added, all panels remain visible. */
.js .gallery-year-section          { display: none; }
.js .gallery-year-section.is-active { display: block; }
@media (max-width: 900px) {
  .gallery-year-nav { top: 64px; }
}

/* Event sub-section */
.gallery-event { margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.gallery-event:last-child { margin-bottom: 0; }

.gallery-event-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem var(--gutter);
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-top: var(--line);
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}
.gallery-event-name {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1;
  margin: 0;
}
.gallery-event-meta {
  color: var(--ink-soft);
  font-size: var(--fs-mono);
  white-space: nowrap;
}

/* Photo grid */
.gallery-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 900px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 360px)  { .gallery-grid { grid-template-columns: 1fr; } }

/* Gallery item — applies duotone to the <a> */
.gallery-item { aspect-ratio: 4 / 3; }
.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform var(--t-base) var(--ease-athletic),
              filter var(--t-base) ease;
  display: block;
}
.gallery-link::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--teal);
  mix-blend-mode: multiply;
  opacity: 0.82;
  pointer-events: none;
  transition: opacity var(--t-base) ease;
}
.gallery-link:hover img,
.gallery-link:focus-visible img { transform: scale(1.04); filter: grayscale(0.6) contrast(1.05); }
.gallery-link:hover::after,
.gallery-link:focus-visible::after { opacity: 0.55; }

:focus-visible.gallery-link { outline: 2px solid var(--ink); outline-offset: -2px; }

/* Stub placeholder (events awaiting photos) */
.gallery-event-stub .gallery-event-name { color: var(--ink-soft); }
.gallery-event-stub .gallery-event-meta { opacity: 0.7; }
.gallery-stub-placeholder {
  border: 1.5px dashed rgba(16, 23, 20, 0.2);
  padding: 2.5rem 2rem;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.gallery-stub-text {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ── Lightbox dialog ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(16, 23, 20, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.gallery-lightbox::backdrop { background: transparent; }
.gallery-lightbox:not([open]) { display: none; }

.lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 0;
  padding: 5rem 0 4rem;
}
.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.75rem;
  color: rgba(250, 247, 241, 0.7);
  transition: color var(--t-fast) ease;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover, .lb-close:focus-visible { color: var(--paper); }
.lb-prev, .lb-next {
  flex: none;
  width: 72px;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250, 247, 241, 0.6);
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
}
.lb-prev:hover, .lb-next:hover,
.lb-prev:focus-visible, .lb-next:focus-visible {
  color: var(--paper);
  background: rgba(250, 247, 241, 0.06);
}
.lb-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 241, 0.45);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lb-prev, .lb-next { width: 48px; }
  .lb-stage { padding: 4rem 0 3.5rem; }
}

/* Year section heading — large ghosted Oswald numeral */
.gallery-year-header {
  border-bottom: var(--line);
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gallery-year-heading {
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--ink);
  opacity: 0.18;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Drive / full-album CTA row — sits directly below each event's photo grid */
.gallery-album-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem var(--gutter);
  border-top: var(--line-soft);
  padding-block: 1.1rem;
  margin-top: 2px;
}
.gallery-album-count {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.gallery-album-link {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  /* underline-draw on hover — matches .link-draw pattern */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1.5px;
  padding-bottom: 2px;
  transition: background-size 200ms var(--ease-athletic), color var(--t-fast) ease;
}
.gallery-album-link:hover,
.gallery-album-link:focus-visible { background-size: 100% 1.5px; }
.gallery-album-link svg { flex: none; transition: transform var(--t-fast) var(--ease-athletic); }
.gallery-album-link:hover svg,
.gallery-album-link:focus-visible svg { transform: translateX(3px); }

/* Stubs: lighter treatment, CTA still present for future Drive URL */
.gallery-event-stub .gallery-album-cta { border-top-style: dashed; }
.gallery-event-stub .gallery-album-link { color: var(--ink-soft); }
.gallery-event-stub .gallery-album-link:hover { color: var(--ink); }

/* Shared screen-reader utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================================
   Section 45: BLOG INDEX
   ========================================================================= */

/* Featured first post — wide horizontal card */
.blog-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border: var(--line);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .blog-featured { grid-template-columns: 1fr; } }

.blog-featured-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-featured-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: transform var(--t-slow) var(--ease-athletic), filter var(--t-slow) ease;
}
.blog-featured-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: var(--teal); mix-blend-mode: multiply; opacity: 0.82;
  pointer-events: none; transition: opacity var(--t-slow) ease;
}
.blog-featured:hover .blog-featured-thumb img  { transform: scale(1.04); filter: grayscale(0.5) contrast(1.05); }
.blog-featured:hover .blog-featured-thumb::after { opacity: 0.55; }

.blog-featured-body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
  border-left: var(--line);
}
@media (max-width: 900px) { .blog-featured-body { border-left: none; border-top: var(--line); } }

.blog-featured-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}
.blog-featured-title a { text-decoration: none; color: inherit; }
.blog-featured-title a:hover { color: var(--teal-deep); }

.blog-featured-excerpt { color: var(--ink-soft); margin-bottom: 1.5rem; }

/* Blog card grid */
.blog-section-heading {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: var(--line);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { display: flex; flex-direction: column; }

.blog-card-thumb {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16/10; margin-bottom: 1.25rem;
}
.blog-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.05);
  transition: transform var(--t-slow) var(--ease-athletic), filter var(--t-slow) ease;
}
.blog-card-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: var(--teal); mix-blend-mode: multiply; opacity: 0.82;
  pointer-events: none; transition: opacity var(--t-slow) ease;
}
.blog-card:hover .blog-card-thumb img    { transform: scale(1.04); filter: grayscale(0.5) contrast(1.05); }
.blog-card:hover .blog-card-thumb::after { opacity: 0.55; }

.blog-card-body { flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
  display: flex; align-items: center; gap: 0.75em;
  font-family: var(--font-mono); font-size: var(--fs-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft); margin-bottom: 0.6rem;
}
.blog-card-meta-sep { width: 1.25em; height: 1px; background: currentColor; flex: none; }

.blog-card-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.15;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
}
.blog-card-title a { text-decoration: none; color: inherit; }
.blog-card-title a:hover { color: var(--teal-deep); }

.blog-card-excerpt {
  font-size: 0.9rem; color: var(--ink-soft);
  flex: 1; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.blog-card-read-more {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4em;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat; background-position: left bottom;
  background-size: 0% 1.5px; padding-bottom: 2px;
  transition: background-size 200ms var(--ease-athletic), color var(--t-fast) ease;
}
.blog-card-read-more:hover, .blog-card-read-more:focus-visible { background-size: 100% 1.5px; }

/* Placeholder card (stub) subtle distinction */
.blog-card-stub .blog-card-thumb { opacity: 0.7; }

/* =========================================================================
   Section 46: PARTNERS & ENDORSEMENTS
   ========================================================================= */

.partners-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: var(--line);
}

.partners-sub-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

/* — Governmental endorsements — */
.partners-gov {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: var(--line-soft);
}

.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 680px;
}
@media (max-width: 480px) { .endorsement-grid { grid-template-columns: 1fr; } }

.endorsement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: var(--line);
  transition: border-color var(--t-fast) ease;
}
.endorsement-item:hover { border-color: var(--teal); }

.endorsement-logo {
  display: block;
  max-height: 72px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  transition: filter var(--t-slow) ease;
}
.endorsement-item:hover .endorsement-logo { filter: grayscale(0); }
.endorsement-logo--lg { max-height: 144px; max-width: 320px; }
.endorsement-logo--md { max-height: 104px; max-width: 280px; }

.endorsement-name {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-align: center;
  margin-top: auto;
  transition: color var(--t-fast) ease;
}
.endorsement-item:hover .endorsement-name { color: var(--teal-deep); }

/* — Private-sector logo wall — */
.partners-logowall {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: var(--line-soft);
}

.logo-wall {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

.logo-wall-item { display: flex; align-items: center; }

.logo-wall-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05) opacity(0.6);
  transition: filter var(--t-slow) ease;
}
.logo-wall-item:hover .logo-wall-img { filter: grayscale(0) contrast(1) opacity(1); }

/* MacTay logo is very light-coloured — pre-darken before grayscaling */
.logo-wall-item--light .logo-wall-img        { filter: brightness(0.3) grayscale(1) opacity(0.65); }
.logo-wall-item--light:hover .logo-wall-img  { filter: brightness(1) grayscale(0) opacity(1); }

/* Per-logo size overrides — square/badge marks need more height to read at the same visual weight as wide wordmarks */
.logo-wall-item--tall .logo-wall-img     { height: 68px; max-width: 200px; }
.logo-wall-item--xl   .logo-wall-img     { height: 88px; max-width: 200px; }
@media (max-width: 480px) {
  .logo-wall-item--tall .logo-wall-img { height: 52px; }
  .logo-wall-item--xl   .logo-wall-img { height: 64px; }
}

@media (max-width: 480px) {
  .logo-wall { gap: 1.5rem 2rem; }
  .logo-wall-img { height: 36px; }
}

/* — Communities reached — */
.partners-communities {}

/* ------------------------------------------------------------
   45. PHOTO CAROUSEL — generic multi-image CSS crossfade.
   Same mechanism as section 43's Beyond Borders carousel, but
   sized for any slide count (3–8) via [data-count]. No JS, no
   scroll-snap. Drop into any existing .duotone/.duotone-paper
   figure — those rules already size/cover/tint each <img>; this
   just adds position:absolute + the crossfade timing on top.
   Slot is fixed at 2.5s regardless of slide count (2s full-opacity
   dwell + 0.5s crossfade into the next slide), so total cycle
   length scales with count (2.5s x N) but per-slide pacing never
   changes — 8 slides never feels faster than 3.
   ------------------------------------------------------------ */
.photo-carousel .photo-slide {
  position: absolute; inset: 0;
  opacity: 0;
}
.photo-carousel[data-count="3"] .photo-slide { animation: photo-cross-3 7.5s linear infinite; }
.photo-carousel[data-count="3"] .photo-slide:nth-child(2) { animation-delay: 2.5s; }
.photo-carousel[data-count="3"] .photo-slide:nth-child(3) { animation-delay: 5s; }

.photo-carousel[data-count="4"] .photo-slide { animation: photo-cross-4 10s linear infinite; }
.photo-carousel[data-count="4"] .photo-slide:nth-child(2) { animation-delay: 2.5s; }
.photo-carousel[data-count="4"] .photo-slide:nth-child(3) { animation-delay: 5s; }
.photo-carousel[data-count="4"] .photo-slide:nth-child(4) { animation-delay: 7.5s; }

.photo-carousel[data-count="5"] .photo-slide { animation: photo-cross-5 12.5s linear infinite; }
.photo-carousel[data-count="5"] .photo-slide:nth-child(2) { animation-delay: 2.5s; }
.photo-carousel[data-count="5"] .photo-slide:nth-child(3) { animation-delay: 5s; }
.photo-carousel[data-count="5"] .photo-slide:nth-child(4) { animation-delay: 7.5s; }
.photo-carousel[data-count="5"] .photo-slide:nth-child(5) { animation-delay: 10s; }

.photo-carousel[data-count="6"] .photo-slide { animation: photo-cross-6 15s linear infinite; }
.photo-carousel[data-count="6"] .photo-slide:nth-child(2) { animation-delay: 2.5s; }
.photo-carousel[data-count="6"] .photo-slide:nth-child(3) { animation-delay: 5s; }
.photo-carousel[data-count="6"] .photo-slide:nth-child(4) { animation-delay: 7.5s; }
.photo-carousel[data-count="6"] .photo-slide:nth-child(5) { animation-delay: 10s; }
.photo-carousel[data-count="6"] .photo-slide:nth-child(6) { animation-delay: 12.5s; }

.photo-carousel[data-count="7"] .photo-slide { animation: photo-cross-7 17.5s linear infinite; }
.photo-carousel[data-count="7"] .photo-slide:nth-child(2) { animation-delay: 2.5s; }
.photo-carousel[data-count="7"] .photo-slide:nth-child(3) { animation-delay: 5s; }
.photo-carousel[data-count="7"] .photo-slide:nth-child(4) { animation-delay: 7.5s; }
.photo-carousel[data-count="7"] .photo-slide:nth-child(5) { animation-delay: 10s; }
.photo-carousel[data-count="7"] .photo-slide:nth-child(6) { animation-delay: 12.5s; }
.photo-carousel[data-count="7"] .photo-slide:nth-child(7) { animation-delay: 15s; }

.photo-carousel[data-count="8"] .photo-slide { animation: photo-cross-8 20s linear infinite; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(2) { animation-delay: 2.5s; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(3) { animation-delay: 5s; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(4) { animation-delay: 7.5s; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(5) { animation-delay: 10s; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(6) { animation-delay: 12.5s; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(7) { animation-delay: 15s; }
.photo-carousel[data-count="8"] .photo-slide:nth-child(8) { animation-delay: 17.5s; }

@keyframes photo-cross-3 { 0% {opacity:0;} 6.667%  {opacity:1;} 33.333%{opacity:1;} 40%     {opacity:0;} 100%{opacity:0;} }
@keyframes photo-cross-4 { 0% {opacity:0;} 5%      {opacity:1;} 25%    {opacity:1;} 30%     {opacity:0;} 100%{opacity:0;} }
@keyframes photo-cross-5 { 0% {opacity:0;} 4%      {opacity:1;} 20%    {opacity:1;} 24%     {opacity:0;} 100%{opacity:0;} }
@keyframes photo-cross-6 { 0% {opacity:0;} 3.333%  {opacity:1;} 16.667%{opacity:1;} 20%     {opacity:0;} 100%{opacity:0;} }
@keyframes photo-cross-7 { 0% {opacity:0;} 2.857%  {opacity:1;} 14.286%{opacity:1;} 17.143% {opacity:0;} 100%{opacity:0;} }
@keyframes photo-cross-8 { 0% {opacity:0;} 2.5%    {opacity:1;} 12.5%  {opacity:1;} 15%     {opacity:0;} 100%{opacity:0;} }

@media (prefers-reduced-motion: reduce) {
  .photo-carousel .photo-slide { animation: none !important; opacity: 0; }
  .photo-carousel .photo-slide:first-child { opacity: 1; }
}
