/* ============================================================
   ORLANDO PIRATES FC — Shared styles
   Built to the locked "Ghost" direction. Tokens own all values.
   ============================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--color-gold); color: var(--color-black); }

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

.skip-link {
  position: absolute;
  left: 0; top: -100%;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sub);
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  z-index: var(--z-overlay);
  transition: top var(--duration-base) var(--ease-ghost);
}
.skip-link:focus { top: 0; }

/* ---- LAYOUT PRIMITIVES ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}
.container--wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-gap); }

/* ---- TYPE ---- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: var(--text-hero); letter-spacing: var(--tracking-hero); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

.eyebrow {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--color-gold);
  flex: none;
}
.eyebrow--red::before { background: var(--color-red); }

.lead {
  font-size: var(--text-lead);
  color: var(--color-white-dim);
  max-width: 56ch;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.gold { color: var(--color-gold); }
.red { color: var(--color-red); }

/* ---- BUTTONS ---- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--color-white);
  --btn-bd: var(--color-border-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-ghost),
              border-color var(--duration-base) var(--ease-ghost),
              color var(--duration-base) var(--ease-ghost),
              box-shadow var(--duration-base) var(--ease-ghost),
              transform var(--duration-base) var(--ease-ghost);
}
.btn__arrow { transition: transform var(--duration-base) var(--ease-ghost); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* RED reserved for the single primary "live" action */
.btn--live {
  --btn-bg: var(--color-red);
  --btn-fg: var(--color-white);
  --btn-bd: var(--color-red);
}
.btn--live:hover {
  --btn-bg: var(--color-red-deep);
  box-shadow: var(--shadow-red-glow);
  transform: translateY(-2px);
}
.btn--ghost:hover {
  --btn-bd: var(--color-white);
  background: var(--color-white-ghost);
}

/* ---- LIVE TAG (red, scarce) ---- */
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-red);
}
.live-tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: var(--shadow-red-glow);
  animation: livePulse 2s var(--ease-ghost) infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .live-tag__dot { animation: none; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.6rem) var(--container-gutter);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  transition: background var(--duration-slow) var(--ease-ghost);
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__brand-mark { width: 34px; height: 34px; display: block; object-fit: contain; }
.nav__brand b { font-weight: 400; }
.nav__brand span { color: var(--color-ink-dim); font-size: 0.7em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  position: relative;
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-white-dim);
  padding-block: 0.3rem;
  transition: color var(--duration-base) var(--ease-ghost);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-ghost);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--color-white); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--color-white); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 3px;
}
.nav__toggle span {
  width: 18px; height: 2px;
  background: var(--color-white);
  transition: transform var(--duration-base) var(--ease-ghost),
              opacity var(--duration-base) var(--ease-ghost);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    background: var(--color-pitch);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration-slow) var(--ease-ghost),
                opacity var(--duration-slow) var(--ease-ghost);
  }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { font-size: 1.4rem; min-height: 44px; display: flex; align-items: center; }
}

/* ============================================================
   HERO + SKULL MASK MOVE (the structural risk)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: 7rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-black);
}

/* Full-bleed photographic ground: real OP supporters. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 28%;   /* keep the celebrating fans in frame on every crop */
  filter: grayscale(0.18) contrast(1.04) brightness(0.92);
}

/* Dark gradient scrim for headline legibility: heaviest at the
   bottom-left where the type sits, lifting to reveal the photo top-right. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top,
      var(--color-black) 0%,
      rgba(0,0,0,0.82) 22%,
      rgba(0,0,0,0.34) 58%,
      rgba(0,0,0,0.55) 100%),
    linear-gradient(105deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.45) 45%,
      rgba(0,0,0,0.1) 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 720px) {
  .hero__content { max-width: 42rem; }   /* px-based: ch resolves to body font and was far too narrow */
}
.hero h1 {
  font-size: clamp(2.6rem, 6.8vw, 5rem);  /* override --text-hero: 144px was clipping/overflowing */
  line-height: 0.96;
  margin-block: 0.7rem 1.2rem;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Champions tag — gold = prestige, scarce by rule */
.hero__champtag {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-gold-bright);
  padding: 0.5em 0.95em;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-pill);
  background: rgba(212, 184, 74, 0.08);
  backdrop-filter: blur(4px);
}
.hero__champtag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-gold-bright);
  box-shadow: var(--shadow-gold-glow);
}

.hero__sub {
  font-family: var(--font-sub);
  font-size: var(--text-h3);
  font-weight: 300;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-white-dim);
  display: block;
  text-shadow: 0 1px 24px rgba(0,0,0,0.7);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* ============================================================
   PHOTOGRAPHIC BAND — full-bleed real photo, editorial caption
   ============================================================ */
.photoband {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(360px, 56vw, 620px);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--color-black);
}
.photoband__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(0.25) contrast(1.05) brightness(0.78);
}
.photoband__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    var(--color-black) 4%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.25) 100%);
}
.photoband__content { max-width: 46ch; }
.photoband__title {
  font-size: var(--text-display);
  color: var(--color-white);
  margin-block: 0.5rem 1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
}

/* ---- REVEAL-ON-SCROLL (IntersectionObserver) ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-cinematic) var(--ease-ghost),
              transform var(--duration-cinematic) var(--ease-ghost);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { max-width: 18ch; }

/* ============================================================
   STAT STRIP (season highlight)
   ============================================================ */
.champ {
  position: relative;
  border-block: 1px solid var(--color-border-gold);
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(212,184,74,0.08), transparent 60%),
    var(--color-pitch);
}
.champ__inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.champ__headline h2 {
  font-size: var(--text-display);
  max-width: 16ch;
}
.champ__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.stat {
  background: var(--color-black);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-mono-num);
  line-height: 1;
  color: var(--color-gold);
}
.stat__label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
}

/* ============================================================
   FEATURE GRID (teasers)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.feature {
  position: relative;
  background: var(--color-pitch);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.9rem;
  overflow: hidden;
  transition: background var(--duration-base) var(--ease-ghost);
}
.feature::before {
  content: attr(data-index);
  position: absolute;
  top: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-white-ghost);
  transition: color var(--duration-base) var(--ease-ghost);
}
.feature:hover { background: var(--color-surface-1); }
.feature:hover::before { color: var(--color-border-gold); }
.feature h3 { max-width: 14ch; }
.feature p { margin: 0; color: var(--color-ink-dim); max-width: 38ch; }
.feature__link {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-white);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.feature__link .btn__arrow { transition: transform var(--duration-base) var(--ease-ghost); }
.feature:hover .feature__link .btn__arrow { transform: translateX(4px); }
.feature__link::after {
  content: "";
  position: absolute; inset: 0;
}
.feature:focus-within { outline: 2px solid var(--color-gold-bright); outline-offset: -2px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  position: relative;
  padding-top: clamp(8rem, 16vw, 12rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.page-head__skull {
  position: absolute;
  right: -8%;
  top: 50%;
  translate: 0 -50%;
  width: min(60vw, 540px);
  opacity: 0.05;
  pointer-events: none;
}
.page-head__skull .crossbones { fill: var(--color-white); }
.page-head h1 {
  font-size: var(--text-display);
  max-width: 16ch;
  position: relative;
}
.page-head .lead { margin-top: 1.25rem; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  background: var(--color-pitch);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__brand-mark { width: 40px; height: 40px; display: block; object-fit: contain; }
.footer__tag {
  margin-top: 1.1rem;
  color: var(--color-ink-dim);
  max-width: 34ch;
}
.footer__col h4 {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
  margin: 0 0 1.1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer__col a {
  color: var(--color-white-dim);
  transition: color var(--duration-base) var(--ease-ghost);
}
.footer__col a:hover, .footer__col a:focus-visible { color: var(--color-gold); }
.footer__bar {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: var(--text-small);
  color: var(--color-ink-faint);
}
.footer__credit {
  margin-top: 1.1rem;
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--color-ink-faint);
  max-width: 92ch;
}
.footer__credit strong { color: var(--color-ink-dim); }
.footer__credit em { font-style: italic; color: var(--color-ink-dim); }
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__brand { font-size: 1.3rem; }
  .footer__tag { overflow-wrap: break-word; }
}

/* ============================================================
   HONOURS WALL
   ============================================================ */
.honours-wall {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.honour {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-black);
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: background var(--duration-base) var(--ease-ghost);
}
@media (max-width: 400px) {
  .honour { grid-template-columns: 1fr; gap: 0.75rem; }
  .honour__count span { text-align: left; }
}
.honour:hover { background: var(--color-surface-1); }
.honour__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
  line-height: 1.05;
  overflow-wrap: break-word;
  min-width: 0;
}
.honour__meta {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-ink-dim);
  text-transform: none;
  letter-spacing: 0;
}
.honour__count {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1;
  color: var(--color-gold);
}
.honour__count span {
  display: block;
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-sub);
  color: var(--color-ink-dim);
  text-align: right;
}
.honour--star { background: linear-gradient(100deg, rgba(212,184,74,0.1), transparent 70%); }

/* season story timeline */
.story {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.story__row {
  background: var(--color-pitch);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(90px, 140px) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: baseline;
}
.story__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-white-ghost);
  line-height: 1;
}
.story__row h3 { margin-bottom: 0.5rem; }
.story__row p { margin: 0; color: var(--color-ink-dim); max-width: 60ch; }
@media (max-width: 600px) {
  .story__row { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ============================================================
   COACHES (editorial cards)
   ============================================================ */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.coach {
  position: relative;
  background: var(--color-pitch);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background var(--duration-base) var(--ease-ghost);
}
.coach:first-child { grid-column: 1 / -1; }
.coach:first-child .coach__role { color: var(--color-gold); }
.coach:hover { background: var(--color-surface-1); }
.coach__portrait {
  /* image slot — official photos drop in later, never fabricated */
  aspect-ratio: 4 / 5;
  max-width: 220px;
  margin-bottom: auto;
  background:
    repeating-linear-gradient(135deg, var(--color-surface-2) 0 2px, transparent 2px 10px),
    var(--color-surface-1);
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  position: relative;
}
.coach__portrait::after {
  content: "";
  width: 46px; height: 46px;
  background: var(--color-white-ghost);
  -webkit-mask: var(--skull-mask) center / contain no-repeat;
          mask: var(--skull-mask) center / contain no-repeat;
}
.coach__role {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
  margin-top: 1.75rem;
}
.coach__name {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
  margin-top: 0.35rem;
  line-height: 1;
}
.coach__nat {
  margin-top: 0.6rem;
  font-size: var(--text-small);
  color: var(--color-white-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.coach__nat::before {
  content: "";
  width: 18px; height: 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface-2);
  flex: none;
}
.coach--lead-text { max-width: 46ch; }
@media (min-width: 760px) {
  .coach:first-child {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }
  .coach:first-child .coach__portrait { margin-bottom: 0; max-width: none; }
  .coach:first-child .coach__role { margin-top: 0; }
}

/* ============================================================
   DATA NOTE / FOOTNOTE
   ============================================================ */
.note {
  font-size: var(--text-small);
  color: var(--color-ink-faint);
  max-width: 70ch;
  border-left: 1px solid var(--color-border-gold);
  padding-left: 1rem;
  line-height: 1.5;
}
.note strong { color: var(--color-ink-dim); font-weight: 600; }

/* ============================================================
   VISUALLY HIDDEN (screen-reader only)
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.news-card {
  position: relative;
  background: var(--color-pitch);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition: background var(--duration-base) var(--ease-ghost);
  /* ensure tap target height is at least 44px even on short cards */
  min-height: 180px;
}
.news-card:hover { background: var(--color-surface-1); }
.news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-ghost);
}
.news-card:hover::before { transform: scaleX(1); }
.news-card--champion { background: linear-gradient(120deg, rgba(212,184,74,0.08), transparent 60%); }
.news-card--champion::before { background: var(--color-gold); transform: scaleX(1); }

.news-card__label {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
}
.news-card__label--red { color: var(--color-red); }
.news-card__label--gold { color: var(--color-gold); }

.news-card__headline {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
  line-height: var(--leading-snug);
  max-width: 24ch;
  margin: 0;
}
.news-card__source {
  margin-top: auto;
  font-size: var(--text-small);
  color: var(--color-ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color var(--duration-base) var(--ease-ghost);
}
.news-card__source::after {
  content: "→";
  transition: transform var(--duration-base) var(--ease-ghost);
}
.news-card:hover .news-card__source { color: var(--color-white-dim); }
.news-card:hover .news-card__source::after { transform: translateX(4px); }
.news-card__link::after { content: ""; position: absolute; inset: 0; }
.news-card:focus-within { outline: 2px solid var(--color-gold-bright); outline-offset: -2px; }

/* ============================================================
   PARTNERS / SPONSORS RAIL
   ============================================================ */
.partners {
  border-block: 1px solid var(--color-border);
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--color-pitch);
}
/* ---- LOGO WALL: mono on black, full colour on hover. Hairline dividers. ---- */
.partner-wall {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.partner {
  position: relative;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem);
  min-height: clamp(130px, 18vw, 168px);
  transition: background var(--duration-base) var(--ease-ghost);
}
.partner::after {
  /* corner tick — quiet structural detail, brightens on hover */
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--color-ink-faint);
  border-left: 1px solid var(--color-ink-faint);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-ghost);
}
.partner__logo {
  display: block;
  width: auto;
  max-width: min(80%, 170px);
  height: clamp(34px, 7vw, 46px);
  object-fit: contain;
  /* render every logo as cohesive mono white on the black ground */
  filter: brightness(0) invert(1) opacity(0.72);
  transition: filter var(--duration-slow) var(--ease-ghost),
              transform var(--duration-slow) var(--ease-ghost);
  transform: translateZ(0) scale(1);
}
.partner:hover .partner__logo,
.partner:focus-within .partner__logo {
  /* restore the brand's own colour + a confident lift */
  filter: none;
  transform: scale(1.04);
}
.partner:hover { background: var(--color-surface-1); }
.partner:hover::after,
.partner:focus-within::after { opacity: 1; }
.partner__role {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  line-height: 1.3;
  max-width: 22ch;
  color: var(--color-ink-faint);
  text-transform: none;
  transition: color var(--duration-base) var(--ease-ghost);
}
.partner:hover .partner__role,
.partner:focus-within .partner__role { color: var(--color-ink-dim); }

/* Marriott is a tall mark — give it a touch less height so it sits in rhythm */
.partner__logo--marriott { height: clamp(44px, 9vw, 60px); }
.partner__logo--adidas,
.partner__logo--suzuki { height: clamp(40px, 8vw, 54px); }

/* Primary partner (Vodacom) — the gold edge of prestige + always slightly forward */
.partner--primary { border-bottom: 2px solid var(--color-gold); }
.partner--primary .partner__logo { filter: brightness(0) invert(1) opacity(0.9); }
.partner--primary .partner__role { color: var(--color-gold); opacity: 0.85; }

/* ============================================================
   IDENTITY PILLARS (home page)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.pillar {
  background: var(--color-pitch);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: attr(data-glyph);
  position: absolute;
  bottom: -0.15em;
  right: 0.2em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  color: var(--color-white-ghost);
  pointer-events: none;
  transition: color var(--duration-slow) var(--ease-ghost);
}
.pillar:hover::before { color: rgba(212,184,74,0.09); }
.pillar__eyebrow {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
}
.pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
  line-height: var(--leading-snug);
  max-width: 18ch;
}
.pillar__body {
  font-size: var(--text-body);
  color: var(--color-white-dim);
  max-width: 38ch;
  line-height: 1.5;
}
.pillar--gold .pillar__title { color: var(--color-gold); }

/* ============================================================
   SOCIAL LINKS
   ============================================================ */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.social-item {
  position: relative;
  flex: 1 1 160px;
  background: var(--color-black);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background var(--duration-base) var(--ease-ghost);
  min-height: 44px;
}
.social-item:hover { background: var(--color-surface-1); }
.social-item__platform {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
}
.social-item__handle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  text-transform: uppercase;
}
.social-item__count {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-ink-faint);
}
.social-item__link::after { content: ""; position: absolute; inset: 0; }
.social-item:focus-within { outline: 2px solid var(--color-gold-bright); outline-offset: -2px; }

/* ============================================================
   COUNTER ANIMATION (JS-driven)
   ============================================================ */
.stat__num[data-count] { transition: none; }

/* ============================================================
   SECTION BREAK RULE (decorative line with skull centred)
   ============================================================ */
.section-rule {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-block: clamp(1rem, 2.5vw, 1.75rem);
  color: var(--color-border);
}
.section-rule::before,
.section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.section-rule__skull {
  width: 24px; height: 24px;
  opacity: 0.18;
  flex: none;
}
.section-rule__skull .crossbones { fill: var(--color-white); }

/* ============================================================
   PAGE-HEAD SKULL INTERACTIVE (inner pages)
   ============================================================ */
.page-head__skull-wrap {
  position: absolute;
  right: -5%;
  top: 50%;
  translate: 0 -50%;
  width: min(55vw, 500px);
  pointer-events: auto;
  z-index: 0;
}
.page-head__skull-wrap .skull-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.page-head__skull-wrap svg {
  width: 100%; height: 100%;
  display: block;
}
.page-head__skull-wrap .skull-line {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transition: stroke var(--duration-slow) var(--ease-ghost);
}
.page-head__skull-wrap .skull-reveal {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 45%),
    rgba(212,184,74,0.55) 0%,
    rgba(238,54,47,0.2) 38%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-ghost);
  -webkit-mask: var(--skull-mask) center / contain no-repeat;
          mask: var(--skull-mask) center / contain no-repeat;
}
.page-head__skull-wrap:hover .skull-reveal,
.page-head__skull-wrap:focus-within .skull-reveal { opacity: 1; }
.page-head__skull-wrap:hover .skull-line { stroke: rgba(255,255,255,0.1); }

/* ============================================================
   FOUNDING STRIP
   ============================================================ */
.founding-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.founding-item {
  background: var(--color-black);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.founding-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--color-gold);
}
.founding-item__label {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-ink-dim);
}

/* ============================================================
   NICKNAMES MARQUEE STRIP
   ============================================================ */
.nick-strip {
  overflow: hidden;
  border-block: 1px solid var(--color-border);
  padding-block: 0.75rem;
  background: var(--color-surface-1);
  position: relative;
}
.nick-strip::before,
.nick-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(2rem, 6vw, 4rem);
  z-index: 2;
  pointer-events: none;
}
.nick-strip::before { left: 0; background: linear-gradient(to right, var(--color-surface-1), transparent); }
.nick-strip::after  { right: 0; background: linear-gradient(to left, var(--color-surface-1), transparent); }
.nick-strip__track {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: max-content;
  animation: marquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .nick-strip__track { animation: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.nick-strip__item {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ink-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.nick-strip__item::after {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.5;
}

/* ============================================================
   360px MOBILE GUARDS
   ============================================================ */
@media (max-width: 480px) {
  /* hide the page-head skull on very narrow screens — prevents right overflow */
  .page-head__skull-wrap { display: none; }

  /* treble banner headline wraps gracefully */
  .treble-banner__headline { font-size: clamp(1.9rem, 9vw, 3rem); }

  /* pillar ghost glyph too large on mobile */
  .pillar::before { font-size: clamp(4rem, 22vw, 7rem); }

  /* partner wall: 2-up on narrow screens */
  .partner-wall { grid-template-columns: 1fr 1fr; }

  /* founding strip: 2-up on narrow */
  .founding-strip { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FULL HONOURS WALL ADDITIONS
   ============================================================ */
.honour--treble { background: linear-gradient(100deg, rgba(238,54,47,0.07), transparent 65%); }
.honour--treble .honour__title { color: var(--color-red); }
.honour--africa { background: linear-gradient(100deg, rgba(212,184,74,0.12), transparent 60%); }
.honour--africa .honour__title { color: var(--color-gold); }
.honour__years {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-ink-faint);
  margin-top: 0.5rem;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

/* ============================================================
   TREBLE BANNER (honours page call-out)
   ============================================================ */
.treble-banner {
  border: 1px solid var(--color-border-gold);
  background: radial-gradient(130% 120% at 80% 0%, rgba(212,184,74,0.1), transparent 60%);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 1.5rem;
}
.treble-banner__eyebrow {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  color: var(--color-gold);
}
.treble-banner__headline {
  font-family: var(--font-display);
  font-size: var(--text-display);
  text-transform: uppercase;
  line-height: var(--leading-tight);
  max-width: 14ch;
}
.treble-banner__trophies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0; padding: 0;
}
.treble-banner__trophies li {
  font-family: var(--font-sub);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-sub);
  text-transform: uppercase;
  border: 1px solid var(--color-border-gold);
  padding: 0.45rem 0.85rem;
  color: var(--color-white-dim);
}
.treble-banner__note {
  font-size: var(--text-small);
  color: var(--color-ink-faint);
  max-width: 60ch;
  line-height: 1.5;
}

/* ============================================================
   POLISH LAYER — depth, rhythm, micro-interactions
   All on existing tokens. Transitions only (no keyframes).
   ============================================================ */

/* ---- Reveal: lead the eye in with a faint scale, not just a slide ---- */
.reveal {
  transform: translateY(28px) scale(0.992);
}
.reveal.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none; } }

/* ---- Eyebrow: the leading tick grows on section entry ---- */
.section-head .eyebrow::before {
  transform-origin: left;
  transform: scaleX(0.4);
  transition: transform var(--duration-slow) var(--ease-ghost) 120ms;
}
.section-head.is-visible .eyebrow::before { transform: scaleX(1); }

/* ---- Stat cells: gold base-rule that draws in; number lifts on hover ---- */
.stat { position: relative; transition: background var(--duration-base) var(--ease-ghost); }
.stat::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--color-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-cinematic) var(--ease-ghost);
}
.champ__stats.is-visible .stat::after { transform: scaleX(1); }
.stat:hover { background: var(--color-surface-1); }
.stat__num { transition: transform var(--duration-base) var(--ease-ghost), text-shadow var(--duration-base) var(--ease-ghost); }
.stat:hover .stat__num { transform: translateY(-3px); text-shadow: var(--shadow-gold-glow); }

/* ---- Founding strip: same prestige rule, plus number lift ---- */
.founding-item { position: relative; transition: background var(--duration-base) var(--ease-ghost); }
.founding-item:hover { background: var(--color-surface-1); }
.founding-item__num { transition: transform var(--duration-base) var(--ease-ghost); }
.founding-item:hover .founding-item__num { transform: translateY(-3px); }

/* ---- Cards (news + feature + partner): real depth on lift ---- */
.news-card, .feature {
  transition: background var(--duration-base) var(--ease-ghost),
              transform var(--duration-base) var(--ease-ghost),
              box-shadow var(--duration-base) var(--ease-ghost);
}
.news-card:hover, .feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  z-index: 1;
}
.partner {
  transition: background var(--duration-base) var(--ease-ghost),
              transform var(--duration-base) var(--ease-ghost),
              box-shadow var(--duration-base) var(--ease-ghost);
}
.partner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  z-index: 1;
}

/* ---- Pillars: gold corner-rule on the founding pillar, lift on all ---- */
.pillar { transition: background var(--duration-base) var(--ease-ghost), transform var(--duration-base) var(--ease-ghost); }
.pillar:hover { transform: translateY(-4px); }

/* ---- Photoband: slow ken-burns drift on the still, anchored, no overflow ---- */
.photoband { overflow: hidden; }
.photoband__img {
  transition: transform var(--duration-cinematic) var(--ease-ghost), filter var(--duration-cinematic) var(--ease-ghost);
  will-change: transform;
}
.photoband:hover .photoband__img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .photoband:hover .photoband__img { transform: none; } }

/* ---- Section rhythm: consistent vertical breathing on the home flow ---- */
.section { padding-block: var(--section-gap); }

/* ---- Buttons: arrow advances, ghost button gains a hairline fill ---- */
.btn .btn__arrow { transition: transform var(--duration-base) var(--ease-ghost); }
.btn:hover .btn__arrow { transform: translateX(5px); }
