:root {
  --white: #ffffff;
  --off-white: #f5f8fc;
  --navy: #0a2540;
  --navy-dark: #06192e;
  --navy-mid: #12365c;
  --blue: #1d6fe0;
  --blue-soft: #e8f1fd;
  --sky: #b8d6ff;
  --red: #e03026;
  --red-dark: #c42920;
  --ink: #14202e;
  --muted: #5b6b7b;
  --line: #dce4ee;
  --danger: #b42318;
  --shadow-sm: 0 12px 30px rgba(6, 25, 46, 0.08);
  --shadow-md: 0 24px 60px rgba(6, 25, 46, 0.14);
  --shadow-lg: 0 32px 90px rgba(4, 17, 32, 0.24);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --header-height: 78px;
  --section-space: clamp(4rem, 7vw, 6.5rem);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 60vh;
  overflow: clip;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(184, 214, 255, 0.95);
  outline-offset: 3px;
}

.container {
  --bs-gutter-x: 2rem;
  max-width: 1280px;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--off {
  background: var(--off-white);
}

.section--pitch {
  background-color: var(--off-white);
  background-image:
    linear-gradient(90deg, transparent 0 49.9%, rgba(29, 111, 224, 0.07) 49.9% 50.1%, transparent 50.1%),
    linear-gradient(rgba(29, 111, 224, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 72px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 5.8rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.prose {
  max-width: 700px;
}

.prose--wide {
  max-width: 860px;
}

.prose p,
.story-content p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: left;
  animation: line-draw 0.55s ease both;
}

.eyebrow--light {
  color: var(--sky);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2.25rem, 4vw, 4rem);
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

/* Header and navigation */
.site-header {
  z-index: 1030;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(4, 17, 32, 0.88), rgba(4, 17, 32, 0.04));
  transition: height 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 25, 46, 0.97);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.site-header .navbar,
.site-header .navbar > .container {
  height: 100%;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.brand,
.offcanvas-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.brand img {
  width: clamp(164px, 16vw, 220px);
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.22));
}

.desktop-nav .navbar-nav {
  gap: 0.12rem;
}

.desktop-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.68rem !important;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.79rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav .nav-link::after {
  position: absolute;
  right: 0.68rem;
  bottom: 0.35rem;
  left: 0.68rem;
  height: 2px;
  background: var(--sky);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link[aria-current="page"] {
  color: var(--white);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link--pending {
  opacity: 0.62;
}

.menu-toggle.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.menu-toggle .navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.site-offcanvas {
  --bs-offcanvas-width: min(88vw, 420px);
  background: linear-gradient(145deg, var(--navy-dark), #0b2b4a);
}

.site-offcanvas .offcanvas-header {
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offcanvas-brand img {
  width: 190px;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.mobile-nav .nav-link[aria-current="page"] {
  color: var(--sky);
}

.mobile-nav small {
  color: var(--sky);
  font-size: 0.68rem;
}

.shop-status {
  position: fixed;
  z-index: 1080;
  right: 1rem;
  bottom: 1rem;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: 0.2s ease;
}

.shop-status.is-visible {
  opacity: 1;
  transform: none;
}

/* Buttons */
.btn {
  --bs-btn-font-weight: 800;
  --bs-btn-border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0.75rem 1.35rem;
  overflow: hidden;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  --bs-btn-bg: var(--red);
  --bs-btn-border-color: var(--red);
  --bs-btn-hover-bg: var(--red-dark);
  --bs-btn-hover-border-color: var(--red-dark);
  --bs-btn-active-bg: var(--red-dark);
  --bs-btn-active-border-color: var(--red-dark);
  --bs-btn-color: var(--white);
  box-shadow: 0 12px 28px rgba(224, 48, 38, 0.24);
}

.btn-secondary {
  --bs-btn-bg: var(--white);
  --bs-btn-color: var(--navy);
  --bs-btn-border-color: var(--navy);
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-border-color: var(--navy);
}

.btn-ghost {
  --bs-btn-color: var(--white);
  --bs-btn-border-color: rgba(255, 255, 255, 0.7);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-color: var(--navy);
  --bs-btn-hover-border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.btn-sweep::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -42%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: sweep 1s 0.65s ease both;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--sky);
}

/* Homepage hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: max(700px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.home-hero__media,
.home-hero__shade,
.pitch-lines {
  position: absolute;
  inset: 0;
}

.home-hero__media picture,
.home-hero__media img {
  width: 100%;
  height: 100%;
}

.home-hero__media img {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.02);
  animation: hero-settle 1.2s ease forwards;
}

.home-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 17, 32, 0.94) 0%, rgba(4, 17, 32, 0.78) 37%, rgba(4, 17, 32, 0.22) 69%, rgba(4, 17, 32, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 17, 32, 0.7), transparent 48%);
}

.pitch-lines {
  z-index: 2;
  opacity: 0.23;
  background:
    linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.25) 20.12%, transparent 20.24%, transparent 78%, rgba(255, 255, 255, 0.22) 78.12%, transparent 78.24%),
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.24) 24.14%, transparent 24.28%);
  transform: perspective(650px) rotateX(64deg) translateY(44%);
  transform-origin: bottom;
}

.home-hero__grid {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 7.5rem;
}

.home-hero__copy {
  max-width: 820px;
}

.home-hero__copy h1,
.home-hero__copy .lead {
  color: var(--white);
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.3);
}

.home-hero__copy h1 {
  max-width: 790px;
}

.home-hero__copy h1 span {
  display: block;
}

.home-hero__copy .lead {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.hero-trust span {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(5, 22, 39, 0.32);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

.hero-scorecard {
  position: absolute;
  right: var(--bs-gutter-x);
  bottom: 7rem;
  display: grid;
  min-width: 260px;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(6, 25, 46, 0.62);
  backdrop-filter: blur(8px);
}

.hero-scorecard small {
  color: var(--sky);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scorecard strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.hero-scorecard span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.ball-flight {
  position: absolute;
  z-index: 3;
  top: 28%;
  right: 11%;
  width: 300px;
  height: 120px;
  pointer-events: none;
}

.flight-line {
  position: absolute;
  inset: 30% 0 auto;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.motion-ball {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 48, 38, 0.18);
  animation: ball-flight 2.4s 0.8s ease-in-out both;
}

.impact-ring {
  position: absolute;
  right: 0;
  bottom: 18%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  opacity: 0;
  animation: ring-pop 0.5s 3s ease both;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 1.2rem;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--red);
  animation: cue-bounce 1.5s ease-in-out infinite;
}

/* Home content */
.score-strip {
  position: relative;
  z-index: 6;
  background: var(--navy-dark);
  color: var(--white);
}

.score-strip__grid {
  margin: 0;
}

.score-item {
  min-height: 118px;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.score-item:nth-child(4) {
  border-right: 0;
}

.score-item strong,
.score-item span {
  display: block;
}

.score-item strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.score-item span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
}

.founder-section__grid,
.programme-feature,
.sponsor-home__grid {
  margin-inline: calc(-0.5 * var(--bs-gutter-x));
}

.founder-visual,
.programme-visual {
  display: grid;
  gap: 1rem;
}

.founder-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--white), var(--off-white));
  box-shadow: var(--shadow-sm);
}

.founder-profile-card::after {
  position: absolute;
  top: -56px;
  right: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(29, 111, 224, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(29, 111, 224, 0.04), 0 0 0 48px rgba(29, 111, 224, 0.02);
  content: "";
}

.founder-profile-card__index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  box-shadow: 0 0 0 7px var(--blue-soft);
}

.founder-profile-card small,
.founder-profile-card strong,
.founder-profile-card > div > span {
  position: relative;
  z-index: 1;
  display: block;
}

.founder-profile-card small {
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-profile-card strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.founder-profile-card > div > span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.founder-profile-card__route {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--navy) !important;
  font-size: 0.66rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-profile-card__route i {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(29, 111, 224, 0.14));
}

.founder-profile-card__route i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.media-frame,
.impact-media,
.programme-media,
.analysis-media,
.square-media,
.contact-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

.media-frame--landscape,
.media-frame--wide {
  aspect-ratio: 16 / 10;
}

.media-frame picture,
.media-frame img,
.impact-media picture,
.impact-media img,
.programme-media picture,
.programme-media img,
.analysis-media picture,
.analysis-media img,
.square-media picture,
.square-media img,
.contact-photo picture,
.contact-photo img {
  width: 100%;
  height: 100%;
}

.media-frame__img,
.impact-media__img,
.programme-media img,
.analysis-media img,
.square-media img,
.contact-photo img {
  object-fit: cover;
}

.media-frame__img {
  object-position: center 42%;
}

.media-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--red);
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.media-label span,
.media-label strong {
  display: block;
}

.media-label span {
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.media-label strong {
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.media-label--dark {
  background: rgba(6, 25, 46, 0.92);
  color: var(--white);
}

.credential-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.credential-stack span {
  position: relative;
  padding: 0.72rem 0.9rem 0.72rem 2rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
  box-shadow: var(--shadow-sm);
}

.credential-stack span::before {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.programmes-teaser {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
}

.programmes-teaser h2 {
  color: var(--white);
}

.programme-feature__copy > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
}

.programme-rail {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.programme-rail a {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.7rem;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  text-decoration: none;
  transition: padding-left 0.18s ease, color 0.18s ease;
}

.programme-rail a:hover {
  padding-left: 0.4rem;
  color: var(--sky);
}

.programme-rail a span {
  color: var(--sky);
  font-size: 0.66rem;
}

.programme-method-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(29, 111, 224, 0.18), rgba(255, 255, 255, 0.035));
}

.programme-method-card small,
.programme-method-card strong {
  display: block;
}

.programme-method-card small {
  color: var(--sky);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.programme-method-card strong {
  margin-top: 0.2rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.programme-method-card ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.programme-method-card li {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  background: rgba(4, 17, 32, 0.34);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.programme-method-card li span {
  color: var(--sky);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.impact-media {
  aspect-ratio: 4 / 5;
  max-height: 600px;
}

.impact-media__img {
  object-position: center 52%;
}

.impact-orbit {
  position: absolute;
  right: 16%;
  bottom: 22%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  animation: orbit-pulse 1.3s ease-out both;
}

.impact-particles {
  position: absolute;
  right: 25%;
  bottom: 27%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 18px -14px 0 -2px rgba(255, 255, 255, 0.7), -14px 8px 0 -2px rgba(255, 255, 255, 0.6), 30px 12px 0 -3px rgba(255, 255, 255, 0.5);
}

.sponsor-home {
  background: var(--white);
}

.sponsor-card {
  position: relative;
  display: grid;
  min-height: 290px;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.sponsor-card img {
  width: min(190px, 65%);
  border-radius: 0.4rem;
}

.sponsor-card__eyebrow {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  color: var(--sky);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-card__shine,
.sponsor-shine {
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-15deg);
  transition: left 0.45s ease;
}

.sponsor-card:hover .sponsor-card__shine,
.sponsor-tile:hover .sponsor-shine {
  left: 120%;
}

/* Common CTA and footer */
.cta-band {
  padding-block: clamp(3.25rem, 5vw, 4.75rem);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: rgba(255, 255, 255, 0.78);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 740px;
  margin-bottom: 0;
}

.cta-band .btn {
  width: auto;
}

.site-footer {
  position: relative;
  padding-top: 4rem;
  background: #03111f;
  color: rgba(255, 255, 255, 0.74);
}

.footer-boundary {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--sky));
  transform-origin: left;
  animation: line-draw 0.9s ease both;
}

.footer-main {
  padding-bottom: 3rem;
}

.footer-brand img {
  width: min(220px, 100%);
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 310px;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.site-footer a:hover {
  color: var(--sky);
}

.policy-link {
  color: var(--sky);
  font-size: 0.75rem;
}

.footer-bottom {
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.back-top {
  position: fixed;
  z-index: 1020;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Shared media heroes */
.media-hero,
.about-hero,
.contact-hero,
.partners-hero {
  position: relative;
  display: grid;
  min-height: 590px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.media-hero__image,
.about-hero__media,
.contact-hero__media,
.partners-hero__media,
.media-hero__overlay,
.about-hero__shade,
.contact-hero__shade,
.partners-hero__shade {
  position: absolute;
  inset: 0;
}

.media-hero__image picture,
.media-hero__image img,
.about-hero__media picture,
.about-hero__media img,
.contact-hero__media picture,
.contact-hero__media img,
.partners-hero__media picture,
.partners-hero__media img {
  width: 100%;
  height: 100%;
}

.media-hero__image img,
.about-hero__media img,
.contact-hero__media img,
.partners-hero__media img {
  object-fit: cover;
  transform: scale(1.015);
  animation: hero-settle 1.1s ease forwards;
}

.media-hero--coaches .media-hero__image img {
  object-position: 42% center;
}

.media-hero--programmes .media-hero__image img {
  object-position: 36% center;
}

.about-hero__media img {
  object-position: center 42%;
}

.contact-hero__media img {
  object-position: center 42%;
}

.partners-hero__media img {
  object-position: center 58%;
}

.media-hero__overlay,
.about-hero__shade,
.contact-hero__shade,
.partners-hero__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 17, 32, 0.91), rgba(4, 17, 32, 0.58) 50%, rgba(4, 17, 32, 0.18));
}

.media-hero__overlay--left {
  background: linear-gradient(90deg, rgba(4, 17, 32, 0.94), rgba(4, 17, 32, 0.66) 48%, rgba(4, 17, 32, 0.12));
}

.media-hero__content,
.about-hero__content,
.contact-hero__content,
.partners-hero__content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4.5rem;
}

.media-hero__content h1,
.about-hero__content h1,
.contact-hero__content h1,
.partners-hero__content h1 {
  max-width: 860px;
  color: var(--white);
}

.media-hero__content .lead,
.about-hero__content .lead,
.contact-hero__content .lead,
.partners-hero__content .lead {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.82);
}

.media-hero__content .btn,
.about-hero__content .btn {
  margin-top: 0.5rem;
}

.spotlight-sweep {
  position: absolute;
  z-index: 2;
  inset: -30% 30% -30% auto;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-18deg);
  animation: spotlight 1.4s 0.4s ease both;
}

.stump-outline {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 8%;
  display: flex;
  gap: 0.8rem;
  opacity: 0.42;
}

.stump-outline i {
  display: block;
  width: 4px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform-origin: bottom;
  animation: stump-draw 0.7s ease both;
}

/* Coaches */
.intentional-empty {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.intentional-empty h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.intentional-empty p {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
}

.empty-ball {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(224, 48, 38, 0.1);
  animation: float-ball 4s ease-in-out infinite;
}

.cta-band__alt {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--sky);
  font-size: 0.78rem;
}

/* Programme page */
.programme-intro {
  padding-bottom: 2rem;
}

.pathway {
  position: relative;
}

.pathway::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: max(22px, calc((100vw - 1280px) / 2 + 22px));
  width: 2px;
  background: linear-gradient(var(--blue), var(--sky), var(--blue));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.9s ease;
}

.pathway.is-visible::before {
  transform: scaleY(1);
}

.programme-stage {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.programme-stage--navy {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
}

.programme-stage--navy h2 {
  color: var(--white);
}

.programme-stage--soft {
  background: var(--off-white);
}

.programme-node {
  position: absolute;
  z-index: 4;
  top: 3rem;
  left: max(22px, calc((100vw - 1280px) / 2 + 22px));
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
  transform: translateX(-50%) scale(0.85);
  transition: transform 0.3s ease;
  box-shadow: 0 0 0 1px rgba(29, 111, 224, 0.25);
}

.programme-stage--navy .programme-node {
  border-color: var(--navy-dark);
}

.programme-stage--soft .programme-node {
  border-color: var(--off-white);
}

.programme-stage.is-active .programme-node {
  transform: translateX(-50%) scale(1);
}

.programme-layout {
  padding-left: 3.25rem;
}

.programme-copy p {
  max-width: 650px;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
}

.score-label,
.pending-badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.score-label--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky);
}

.pending-badge {
  background: #fff0ef;
  color: var(--red-dark);
}

.programme-meta {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.programme-meta > div {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
}

.programme-meta dt {
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.programme-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
}

.programme-meta--dark > div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.programme-meta--dark dd {
  color: rgba(255, 255, 255, 0.76);
}

.dual-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.dual-media__tall {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

.dual-media__tall--offset {
  margin-top: 2rem;
}

.dual-media__tall picture,
.dual-media__tall img {
  width: 100%;
  height: 100%;
}

.dual-media__tall img {
  object-fit: cover;
  object-position: center 18%;
}

.dual-media__tall:nth-child(2) img {
  object-position: center 12%;
}

.dual-media figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
  background: rgba(6, 25, 46, 0.86);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
}

.swing-arc,
.bowling-arc {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.swing-arc {
  top: 12%;
  right: 8%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-20deg);
}

.bowling-arc {
  top: 8%;
  left: 8%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(20deg);
}

.programme-media {
  aspect-ratio: 16 / 10;
}

.programme-media img {
  object-position: center 45%;
}

.analysis-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.24;
}

.coach-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(224, 48, 38, 0.18);
}

.coach-marker--one {
  top: 34%;
  left: 47%;
}

.coach-marker--two {
  right: 23%;
  bottom: 18%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(29, 111, 224, 0.2);
}

.analysis-media {
  aspect-ratio: 4 / 3;
}

.analysis-media img {
  object-position: center 44%;
}

.analysis-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.analysis-overlay path,
.analysis-overlay circle,
.analysis-overlay rect {
  fill: none;
  stroke: rgba(184, 214, 255, 0.88);
  stroke-width: 3;
  stroke-dasharray: 8 8;
}

.analysis-tag {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  background: rgba(6, 25, 46, 0.82);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 750;
}

.square-media {
  aspect-ratio: 1 / 1;
}

.square-media img {
  object-position: center 48%;
}

.turf-line {
  position: absolute;
  right: 8%;
  bottom: 13%;
  left: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: left;
  animation: line-draw 0.8s ease both;
}

.how-it-works {
  background: var(--white);
}

.steps.row,
.principles.row,
.partner-benefits.row,
.sponsor-grid.row {
  display: grid;
  margin-inline: 0;
}

.steps.row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps > li,
.principle,
.partner-benefits > article,
.sponsor-tile {
  width: auto;
  padding: 1.35rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps > li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
}

.steps > li > span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
}

.steps h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.steps p,
.pricing-note {
  color: var(--muted);
}

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.84rem;
}

/* About page */
.credentials-band {
  background: var(--navy-dark);
  color: var(--white);
}

.credentials-band ul {
  margin: 0;
  padding: 0;
}

.credentials-band li {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.credentials-band li:last-child {
  border-right: 0;
}

.story-chapter {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.story-grid {
  margin-inline: calc(-0.5 * var(--bs-gutter-x));
}

.story-index {
  color: rgba(29, 111, 224, 0.2);
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
}

.story-index small {
  display: block;
  margin-top: 0.8rem;
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-index--light {
  color: rgba(255, 255, 255, 0.18);
}

.story-index--light small {
  color: var(--sky);
}

.pull-quote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.3;
}

.pull-quote::before {
  position: absolute;
  top: 0.2rem;
  left: 0.55rem;
  color: rgba(29, 111, 224, 0.24);
  content: "“";
  font-size: 3rem;
}

.career-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.career-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.career-table th,
.career-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.career-table th {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-table td {
  font-size: 0.88rem;
}

.career-table tr:last-child td {
  border-bottom: 0;
}

.story-content .media-frame {
  margin-top: 1.5rem;
}

.cities,
.sydney {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.77);
}

.cities h2,
.sydney h2 {
  color: var(--white);
}

.city-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.city-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) 1fr;
  gap: 2rem;
  padding-block: 1.75rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.city-name {
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
}

.city-row h3 {
  color: var(--white);
}

.country-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.country-list article {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
}

.country-list h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sydney {
  background-image: linear-gradient(135deg, rgba(29, 111, 224, 0.12), transparent 58%);
}

.signature-placeholder {
  display: inline-flex;
  margin-top: 1.2rem;
  padding: 0.65rem 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 0.55rem;
  color: var(--sky);
  font-size: 0.72rem;
}

.principles.row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.principle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.principle > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
}

.principle h3 {
  margin-top: 0.8rem;
  font-size: 1.25rem;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.founder-quote {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.founder-quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.3;
}

.founder-quote figcaption {
  margin-top: 1.5rem;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 750;
}

.story-nav {
  position: fixed;
  z-index: 1010;
  top: 50%;
  left: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(6, 25, 46, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  backdrop-filter: blur(8px);
}

.page-about.is-story-nav-visible .story-nav {
  opacity: 1;
  pointer-events: auto;
}

.story-nav a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  text-decoration: none;
}

.story-nav a.is-active {
  background: var(--blue);
  color: var(--white);
}

/* Contact */
.contact-layout {
  margin-inline: calc(-0.5 * var(--bs-gutter-x));
}

.form-shell,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-shell {
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.contact-form {
  margin-top: 1.5rem;
}

.field {
  position: relative;
}

.form-label {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: #cfd9e5;
  border-radius: 0.7rem;
  color: var(--ink);
  box-shadow: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(29, 111, 224, 0.12);
}

.form-text,
.character-count,
.form-privacy,
.form-endpoint-note {
  color: var(--muted);
  font-size: 0.74rem;
}

.character-count {
  margin-top: 0.35rem;
  text-align: right;
}

.character-count.is-warning {
  color: var(--danger);
  font-weight: 750;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #f1b5af;
  border-radius: 0.65rem;
  background: #fff1ef;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 700;
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 750;
}

.form-control[aria-invalid="true"],
.form-select[aria-invalid="true"] {
  border-color: var(--danger);
}

.submit-btn {
  min-width: 170px;
}

.submit-btn.is-loading .submit-progress {
  display: inline-block;
}

.submit-progress {
  display: none;
  width: 1rem;
  height: 1rem;
  margin-left: 0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.82rem;
}

.form-status.is-error {
  color: var(--danger);
  font-weight: 700;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
}

.contact-card .eyebrow {
  color: var(--sky);
}

.contact-card p {
  margin-bottom: 1rem;
}

.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card strong {
  color: var(--sky);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.contact-photo {
  aspect-ratio: 4 / 5;
}

.contact-photo img {
  object-position: center 28%;
}

.safeguarding {
  background: var(--off-white);
}

.safeguarding__inner {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.safeguarding__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 900;
}

.safeguarding h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.safeguarding p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Partners */
.floodlight-bloom {
  position: absolute;
  z-index: 2;
  top: 7%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 214, 255, 0.34), rgba(184, 214, 255, 0) 68%);
  animation: bloom 1.4s ease both;
}

.floodlight-bloom--left {
  left: 3%;
}

.floodlight-bloom--right {
  right: 3%;
}

.boundary-line {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 9%;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: left;
  animation: line-draw 1s ease both;
}

.partner-score {
  position: absolute;
  z-index: 4;
  right: max(1rem, calc((100vw - 1280px) / 2 + 1rem));
  bottom: 2rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: rgba(6, 25, 46, 0.7);
  backdrop-filter: blur(7px);
}

.partner-score small {
  color: var(--sky);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-score strong {
  color: var(--white);
  font-size: 0.86rem;
}

.sponsor-grid.row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sponsor-tile {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sponsor-tile--primary {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
}

.sponsor-tile--primary img {
  width: min(150px, 65%);
  margin: 0 auto 1rem;
  border-radius: 0.35rem;
  filter: grayscale(1);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.sponsor-tile--primary:hover img {
  filter: none;
  transform: scale(1.02);
}

.sponsor-tile span,
.sponsor-tile strong,
.sponsor-tile small {
  display: block;
}

.sponsor-tile--primary span {
  color: var(--sky);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sponsor-tile--primary strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.sponsor-tile--future {
  color: var(--muted);
}

.future-plus {
  color: var(--blue);
  font-size: 2.5rem;
  font-weight: 300;
}

.partner-benefits.row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-benefits > article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.partner-benefits > article > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
}

.partner-benefits h3 {
  margin-top: 0.7rem;
  font-size: 1.35rem;
}

.partner-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* 404 */
.error-page {
  display: grid;
  min-height: 70svh;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: rgba(255, 255, 255, 0.8);
}

.error-page .container {
  min-height: inherit;
  padding-block: 4rem;
}

.error-page h1 {
  max-width: 800px;
  color: var(--white);
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal-ready .reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal-ready .reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

[data-mask] {
  clip-path: none;
}

.reveal-ready [data-mask="left"] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.75s ease;
}

.reveal-ready [data-mask="right"] {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.75s ease;
}

.reveal-ready [data-mask="diagonal"] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.75s ease;
}

.reveal-ready [data-mask].is-visible {
  clip-path: inset(0);
}

.reveal-ready [data-mask="diagonal"].is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

body {
  opacity: 1;
  transition: opacity 0.15s ease;
}

body.page-leaving {
  opacity: 0;
}

.page-hidden * {
  animation-play-state: paused !important;
}

[data-tilt] {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.18s ease;
}

@keyframes line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes hero-settle {
  from { transform: scale(1.04); filter: saturate(0.68) contrast(1.04); }
  to { transform: scale(1.015); filter: saturate(0.9) contrast(1.02); }
}

@keyframes sweep {
  to { left: 122%; }
}

@keyframes ball-flight {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(240px, 68px) rotate(540deg); }
}

@keyframes ring-pop {
  0% { opacity: 0; transform: scale(0.5); }
  40% { opacity: 0.8; }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes orbit-pulse {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 0.9; transform: scale(1); }
}

@keyframes spotlight {
  from { transform: translateX(-220%) skewX(-18deg); opacity: 0; }
  30% { opacity: 1; }
  to { transform: translateX(450%) skewX(-18deg); opacity: 0; }
}

@keyframes stump-draw {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes float-ball {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bloom {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (min-width: 1200px) {
  .story-nav {
    display: flex;
  }
}

@media (max-width: 1199.98px) {
  .hero-scorecard {
    display: none;
  }

  .ball-flight {
    right: 5%;
    width: 240px;
  }

  .principles.row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-space: 4.5rem;
  }

  .home-hero {
    min-height: 780px;
  }

  .home-hero__shade {
    background: linear-gradient(0deg, rgba(4, 17, 32, 0.96) 0%, rgba(4, 17, 32, 0.7) 66%, rgba(4, 17, 32, 0.14) 100%);
  }

  .home-hero__media img {
    object-position: 66% center;
  }

  .home-hero__grid {
    justify-content: flex-end;
    padding-bottom: 6rem;
  }

  .ball-flight {
    display: none;
  }

  .score-item:nth-child(2) {
    border-right: 0;
  }

  .score-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .programme-layout {
    padding-left: 2rem;
  }

  .programme-layout--media-first .programme-media,
  .programme-layout--media-first .square-media {
    order: 2;
  }

  .programme-layout--media-first .programme-copy {
    order: 1;
  }

  .principles.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-hero,
  .about-hero,
  .contact-hero,
  .partners-hero {
    min-height: 560px;
  }

  .partner-score {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }

  .partners-hero__content {
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 70px;
    --section-space: 3.75rem;
  }

  .container {
    --bs-gutter-x: 1.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.15rem);
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .brand img {
    width: 164px;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero__grid {
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 5.5rem;
  }

  .home-hero__copy h1 {
    max-width: 560px;
  }

  .hero-trust {
    gap: 0.4rem;
  }

  .hero-trust span {
    padding: 0.42rem 0.62rem;
    font-size: 0.65rem;
  }

  .scroll-cue {
    bottom: 0.9rem;
  }

  .score-item {
    min-height: 104px;
    padding: 1.1rem;
  }

  .founder-profile-card {
    padding: 1rem;
  }

  .founder-profile-card__index {
    width: 46px;
    height: 46px;
  }

  .founder-profile-card__route {
    gap: 0.35rem;
    font-size: 0.58rem !important;
  }

  .impact-media {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .programme-method-card ol {
    grid-template-columns: 1fr;
  }

  .programme-method-card li {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .cta-band .btn {
    width: 100%;
  }

  .media-hero,
  .about-hero,
  .contact-hero,
  .partners-hero {
    min-height: 520px;
  }

  .media-hero__content,
  .about-hero__content,
  .contact-hero__content,
  .partners-hero__content {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3.25rem;
  }

  .media-hero__overlay,
  .about-hero__shade,
  .contact-hero__shade,
  .partners-hero__shade {
    background: linear-gradient(0deg, rgba(4, 17, 32, 0.96) 0%, rgba(4, 17, 32, 0.7) 66%, rgba(4, 17, 32, 0.18));
  }

  .media-hero--coaches .media-hero__image img {
    object-position: 38% center;
  }

  .media-hero--programmes .media-hero__image img {
    object-position: 28% center;
  }

  .about-hero__media img {
    object-position: 48% center;
  }

  .contact-hero__media img {
    object-position: 50% 32%;
  }

  .partners-hero__media img {
    object-position: 52% center;
  }

  .stump-outline {
    right: 5%;
    bottom: 5%;
    opacity: 0.25;
  }

  .programme-intro {
    padding-bottom: 1rem;
  }

  .pathway::before,
  .programme-node {
    left: 20px;
  }

  .programme-stage {
    padding-block: 3.75rem;
  }

  .programme-node {
    top: 2.25rem;
    width: 40px;
    height: 40px;
  }

  .programme-layout {
    padding-left: 1.4rem;
  }

  .dual-media {
    gap: 0.6rem;
  }

  .dual-media__tall--offset {
    margin-top: 1rem;
  }

  .steps.row,
  .principles.row,
  .partner-benefits.row,
  .sponsor-grid.row {
    grid-template-columns: 1fr;
  }

  .credentials-band li {
    min-height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.68rem;
  }

  .credentials-band li:nth-child(2n) {
    border-right: 0;
  }

  .story-index {
    font-size: 2.6rem;
  }

  .city-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .city-name {
    font-size: 3rem;
  }

  .contact-photo {
    aspect-ratio: 4 / 5;
  }

  .partner-score {
    font-size: 0.75rem;
  }

  .floodlight-bloom {
    width: 140px;
    height: 140px;
  }

  .footer-main {
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 479.98px) {
  .button-row .btn {
    width: 100%;
  }

  .home-hero {
    min-height: 800px;
  }

  .home-hero__media img {
    object-position: 68% center;
  }

  .home-hero__copy .lead {
    font-size: 1rem;
  }

  .hero-trust span {
    flex: 1 1 auto;
    text-align: center;
  }

  .founder-profile-card {
    grid-template-columns: 1fr;
  }

  .founder-profile-card__route {
    grid-column: 1;
  }

  .programme-layout {
    padding-left: 1rem;
  }

  .dual-media {
    grid-template-columns: 1fr;
  }

  .dual-media__tall--offset {
    margin-top: 0;
  }

  .safeguarding__mark {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-ready .reveal,
  [data-mask],
  .reveal-ready [data-mask] {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .home-hero__media img,
  .media-hero__image img,
  .about-hero__media img,
  .contact-hero__media img,
  .partners-hero__media img,
  [data-tilt] {
    filter: none !important;
    transform: none !important;
  }

  .ball-flight,
  .impact-ring,
  .impact-orbit,
  .impact-particles,
  .spotlight-sweep,
  .floodlight-bloom {
    display: none !important;
  }

  .pathway::before {
    transform: scaleY(1) !important;
  }

  .programme-node {
    transform: translateX(-50%) scale(1) !important;
  }

  body.page-leaving {
    opacity: 1;
  }
}

/* Final Bootstrap QC corrections */
.container.row,
.founder-section__grid,
.programme-feature,
.sponsor-home__grid,
.story-grid,
.contact-layout {
  margin-right: auto;
  margin-left: auto;
}

.brand,
.scroll-cue,
.text-link,
.footer-links a,
.site-footer p a,
.contact-card a {
  min-height: 44px;
}

.brand,
.scroll-cue,
.text-link,
.footer-links a,
.site-footer p a,
.contact-card a {
  display: inline-flex;
  align-items: center;
}

.text-link,
.footer-links a,
.site-footer p a,
.contact-card a {
  padding-block: 0.35rem;
}

@media (max-width: 767.98px) {
  .career-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .career-table {
    display: block;
    min-width: 0;
  }

  .career-table tbody,
  .career-table tr,
  .career-table th,
  .career-table td {
    display: block;
    width: 100%;
  }

  .career-table tr {
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .career-table th,
  .career-table td {
    border-bottom: 0;
  }

  .career-table th {
    padding: 0.8rem 1rem 0.25rem;
  }

  .career-table td {
    padding: 0.25rem 1rem 0.9rem;
  }
}

/* Final small-screen and target-size polish */
.cta-band__alt {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.story-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.site-offcanvas .btn-close {
  width: 44px;
  height: 44px;
  padding: 0;
  background-size: 1rem;
}

@media (max-width: 479.98px) {
  .home-hero {
    min-height: max(680px, 100svh);
  }
}

.desktop-nav .navbar-nav {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}


/* Production accessibility, policy and form states */
.noscript-notice{position:relative;z-index:1100;background:#fff3cd;color:#3d3300;padding:.75rem 1rem;text-align:center;border-bottom:1px solid #d7c46a}
.footer-legal-links{font-size:.9rem}
.consent-field{display:grid;grid-template-columns:auto 1fr;gap:.75rem;align-items:start;padding-top:.5rem}
.consent-field .form-check-input{width:1.25rem;height:1.25rem;margin-top:.2rem}
.consent-field .field-error{grid-column:2}
.submit-btn:disabled{cursor:wait;opacity:.72}
.form-status{outline:none}
.form-status.is-success{color:#0b5d32;background:#e8f7ef;border:1px solid #8ac7a4;padding:.8rem 1rem;border-radius:.5rem}
.policy-hero{padding:clamp(8rem,15vw,11rem) 0 clamp(3rem,7vw,5rem);background:linear-gradient(120deg,#06192e,#0a3a5a);color:#fff}
.policy-hero h1{max-width:18ch}
.policy-hero p{max-width:48rem;font-size:1.15rem}
.policy-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(16rem,22rem);gap:clamp(2rem,6vw,5rem);align-items:start}
.policy-content{max-width:48rem}
.policy-content h2{margin-top:2.25rem;font-size:clamp(1.35rem,2vw,1.8rem)}
.policy-content p,.policy-content li{max-width:72ch}
.policy-aside{position:sticky;top:7rem;padding:1.5rem;border:1px solid rgba(7,27,49,.15);border-radius:1rem;background:#f7f9fb}
@media(max-width:767.98px){.policy-layout{grid-template-columns:1fr}.policy-aside{position:static}}
@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto!important}.page-leaving{opacity:1!important}.submit-progress{animation:none!important}}

/* Coach directory */
.trust-strip{display:flex;flex-wrap:wrap;gap:.6rem;list-style:none;margin:1.5rem 0 0;padding:0;}
.trust-strip li{display:flex;align-items:center;gap:.5rem;padding:.6rem .9rem;border:1px solid var(--line);border-radius:999px;background:var(--white);box-shadow:var(--shadow-sm);font-size:.85rem;font-weight:700;color:var(--navy);}
.trust-strip li::before{content:"";width:.5rem;height:.5rem;border-radius:50%;background:var(--blue);flex:none;}

.coach-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.75rem;margin-top:2rem;}
.coach-card{position:relative;display:flex;flex-direction:column;border:1px solid var(--line);border-radius:var(--radius-lg);background:var(--white);box-shadow:var(--shadow-sm);overflow:hidden;transition:transform .2s ease,box-shadow .2s ease;}
.coach-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.coach-card__portrait{position:relative;aspect-ratio:4/5;overflow:hidden;background:var(--navy-dark);}
.coach-card__portrait img{width:100%;height:100%;object-fit:cover;object-position:78% 22%;}
.coach-card__body{display:flex;flex-direction:column;gap:.85rem;padding:1.5rem;flex:1;}
.coach-card__name{margin:0;font-size:1.4rem;line-height:1.2;color:var(--navy);}
.coach-card__role{display:block;margin-top:.15rem;font-size:.9rem;font-weight:700;color:var(--blue);}
.coach-card__line{margin:0;color:var(--muted);font-size:.95rem;}
.coach-chips{display:flex;flex-wrap:wrap;gap:.4rem;list-style:none;margin:0;padding:0;}
.chip{display:inline-flex;align-items:center;padding:.35rem .7rem;border-radius:999px;background:var(--blue-soft);color:var(--navy);font-size:.78rem;font-weight:700;}
.chip--quality{background:#eafaf0;color:#0b5d32;}
.coach-meta{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.6rem 1rem;margin:.25rem 0 0;padding:0;list-style:none;font-size:.85rem;}
.coach-meta dt{font-weight:700;color:var(--navy);}
.coach-meta dd{margin:.1rem 0 0;color:var(--muted);}
.availability-badge{display:inline-flex;align-items:center;gap:.4rem;padding:.4rem .75rem;border-radius:999px;font-size:.8rem;font-weight:800;background:#eafaf0;color:#0b5d32;border:1px solid #8ac7a4;width:fit-content;}
.availability-badge::before{content:"";width:.5rem;height:.5rem;border-radius:50%;background:#1f9d55;flex:none;}
.coach-card__actions{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:auto;padding-top:.5rem;}
.coach-card__actions .btn{min-height:44px;}

.selection-guide{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem;margin-top:2rem;padding:0;list-style:none;}
.selection-guide article{padding:1.25rem;border:1px solid var(--line);border-radius:var(--radius);background:var(--off-white);}
.selection-guide span{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:50%;background:var(--navy);color:var(--white);font-weight:800;font-size:.85rem;margin-bottom:.6rem;}

.cta-band--quiet{background:var(--off-white);box-shadow:none;padding:clamp(1.5rem,3vw,2.25rem);}
.cta-band--quiet .eyebrow{color:var(--muted);}
.cta-band--quiet .eyebrow::before{background:var(--muted);}
.cta-band--quiet h2{color:var(--navy);font-size:clamp(1.4rem,2.4vw,1.9rem);}
.cta-band--quiet p{color:var(--muted);}
.cta-band--quiet .btn-secondary{--bs-btn-border-color:var(--line);}

.coach-banner{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem 1rem;margin-bottom:1.25rem;padding:.85rem 1rem;border:1px solid #bcd6ff;border-radius:var(--radius-sm);background:var(--blue-soft);color:var(--navy);font-size:.9rem;}
.coach-banner strong{font-weight:800;}
.coach-banner a{font-weight:700;text-decoration:underline;}

.breadcrumb-nav{padding:calc(var(--header-height) + 1.5rem) 0 0;font-size:.85rem;color:var(--muted);}
.breadcrumb-nav a{color:var(--muted);text-decoration:underline;}
.breadcrumb-nav a:hover{color:var(--navy);}
.breadcrumb-nav ol{display:flex;flex-wrap:wrap;gap:.35rem;list-style:none;margin:0;padding:0;}
.breadcrumb-nav li:not(:last-child)::after{content:"/";margin-left:.35rem;color:var(--line);}
.back-to-directory{display:inline-flex;align-items:center;gap:.4rem;margin-bottom:1rem;font-weight:700;}

.profile-fact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.25rem 1.5rem;margin:1.5rem 0;padding:1.5rem;border:1px solid var(--line);border-radius:var(--radius);background:var(--off-white);list-style:none;}
.profile-fact-grid dt{font-size:.8rem;text-transform:uppercase;letter-spacing:.04em;color:var(--muted);font-weight:700;}
.profile-fact-grid dd{margin:.3rem 0 0;font-size:1rem;color:var(--navy);font-weight:600;}

.safeguarding-note{display:flex;gap:.9rem;align-items:flex-start;padding:1.25rem 1.5rem;border:1px solid var(--line);border-radius:var(--radius);background:var(--off-white);}
.safeguarding-note strong{display:block;color:var(--navy);margin-bottom:.2rem;}

.profile-portrait{position:relative;overflow:hidden;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);aspect-ratio:4/5;}
.profile-portrait img{width:100%;height:100%;object-fit:cover;object-position:78% 22%;}

.media-hero.media-hero--coaches{min-height:480px;}
@media (max-width: 991.98px){.media-hero.media-hero--coaches{min-height:440px;}}
@media (max-width: 575.98px){.media-hero.media-hero--coaches{min-height:400px;}}

@media (max-width: 767.98px){
  .coach-grid{grid-template-columns:1fr;}
  .coach-card__actions .btn{width:100%;}
}

@media (prefers-reduced-motion: reduce){
  .coach-card{transition:none;}
  .coach-card:hover{transform:none;}
}

/* Homepage refinement: visible feature media + scalable partner showcase */
.page-home .founder-visual--feature {
  position: relative;
  display: block;
  min-height: 590px;
  padding-top: 5.35rem;
  isolation: isolate;
}

.page-home .founder-visual--feature::before {
  position: absolute;
  inset: 2.25rem -0.9rem 1.2rem 2.5rem;
  z-index: -1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 111, 224, 0.22), transparent 28%),
    linear-gradient(145deg, var(--blue-soft), rgba(245, 248, 252, 0.28));
  content: "";
}

.page-home .founder-visual--feature .founder-profile-card {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 1.25rem;
  left: 1.25rem;
  margin: 0;
}

.page-home .founder-visual--feature .media-frame {
  width: calc(100% - 1.4rem);
  min-height: 500px;
  margin-left: auto;
  border: 7px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.page-home .founder-visual--feature .media-frame__img {
  object-position: center 42%;
}

.page-home .programme-visual {
  position: relative;
  display: block;
  min-height: 640px;
}

.page-home .programme-visual .programme-method-card {
  position: absolute;
  z-index: 4;
  top: 1.1rem;
  right: 1.1rem;
  left: 1.1rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.94), rgba(18, 54, 92, 0.9));
  box-shadow: 0 18px 48px rgba(2, 12, 24, 0.35);
  backdrop-filter: blur(12px);
}

.page-home .programme-visual .impact-media--feature {
  width: calc(100% - 1.4rem);
  min-height: 620px;
  max-height: none;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.page-home .programme-visual .impact-media--feature::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 17, 32, 0.3) 0%, transparent 46%, rgba(4, 17, 32, 0.42) 100%);
  content: "";
  pointer-events: none;
}

.page-home .programme-visual .impact-media--feature .media-label,
.page-home .programme-visual .impact-media--feature .impact-orbit,
.page-home .programme-visual .impact-media--feature .impact-particles {
  z-index: 2;
}

.sponsor-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(29, 111, 224, 0.1), transparent 24rem),
    linear-gradient(180deg, #f7faff 0%, var(--white) 100%);
}

.sponsor-home::after {
  position: absolute;
  top: 1.5rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(29, 111, 224, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(29, 111, 224, 0.025), 0 0 0 6rem rgba(29, 111, 224, 0.018);
  content: "";
  pointer-events: none;
}

.partner-showcase {
  position: relative;
  z-index: 1;
}

.partner-showcase__header {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.partner-showcase__header h2 {
  max-width: 760px;
  margin-bottom: 0.9rem;
}

.partner-showcase__header p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.partner-showcase__action {
  display: flex;
  justify-content: flex-end;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(10, 37, 64, 0.22);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.partner-carousel {
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.partner-carousel__toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.partner-carousel__toolbar p {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  margin: 0;
}

.partner-carousel__toolbar strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.partner-carousel__toolbar span {
  color: var(--muted);
  font-size: 0.78rem;
}

.partner-carousel__controls {
  display: flex;
  gap: 0.55rem;
}

.partner-carousel__button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(10, 37, 64, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.partner-carousel__button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.partner-carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.partner-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.partner-carousel__track {
  display: grid;
  grid-auto-columns: calc((100% - 2rem) / 3);
  grid-auto-flow: column;
  gap: 1rem;
  padding: 0.25rem 0.25rem 1.25rem;
}

.partner-slide {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 18px 45px rgba(6, 25, 46, 0.09);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-slide:hover {
  border-color: rgba(29, 111, 224, 0.32);
  box-shadow: 0 26px 65px rgba(6, 25, 46, 0.15);
  transform: translateY(-5px);
}

.partner-slide--featured {
  border-color: rgba(184, 214, 255, 0.22);
  background:
    radial-gradient(circle at 90% 5%, rgba(29, 111, 224, 0.38), transparent 12rem),
    linear-gradient(145deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
}

.partner-slide--featured::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(184, 214, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(184, 214, 255, 0.04), 0 0 0 4rem rgba(184, 214, 255, 0.025);
  content: "";
}

.partner-slide__topline {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-slide--featured .partner-slide__topline {
  color: var(--sky);
}

.partner-slide__status {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(29, 111, 224, 0.18);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue) !important;
  font-size: 0.56rem !important;
  white-space: nowrap;
}

.partner-slide--featured .partner-slide__status {
  border-color: rgba(184, 214, 255, 0.2);
  background: rgba(184, 214, 255, 0.12);
  color: var(--sky) !important;
}

.partner-slide__logo {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 148px;
  margin-block: 1.25rem;
  padding: 1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.partner-slide__logo img {
  width: min(150px, 70%);
  max-height: 120px;
  border-radius: 0.5rem;
  object-fit: contain;
}

.partner-slide__monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: 104px;
  height: 104px;
  margin-block: 1.45rem;
  place-items: center;
  border: 1px solid rgba(29, 111, 224, 0.16);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-soft), var(--white));
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0 0 10px rgba(29, 111, 224, 0.045);
}

.partner-slide__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
}

.partner-slide__copy small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-slide--featured .partner-slide__copy small {
  color: var(--sky);
}

.partner-slide__copy strong {
  color: inherit;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.partner-slide__copy > span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.partner-slide--featured .partner-slide__copy > span {
  color: rgba(255, 255, 255, 0.7);
}

.partner-slide__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.partner-slide--featured .partner-slide__link {
  color: var(--sky);
}

@media (max-width: 991.98px) {
  .page-home .founder-visual--feature {
    min-height: 0;
    padding-top: 0;
  }

  .page-home .founder-visual--feature::before {
    inset: 1rem -0.4rem -0.75rem 1.5rem;
  }

  .page-home .founder-visual--feature .founder-profile-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 1rem;
  }

  .page-home .founder-visual--feature .media-frame {
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .page-home .programme-visual {
    min-height: 0;
  }

  .page-home .programme-visual .programme-method-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 1rem;
  }

  .page-home .programme-visual .impact-media--feature {
    width: 100%;
    min-height: 0;
    margin: 0;
    aspect-ratio: 16 / 11;
  }

  .partner-showcase__action {
    justify-content: flex-start;
  }

  .partner-carousel__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 575.98px) {
  .partner-carousel__toolbar p span {
    display: none;
  }

  .partner-carousel__track {
    grid-auto-columns: 88%;
  }

  .partner-slide {
    min-height: 370px;
  }

  .partner-showcase__action .btn {
    width: 100%;
  }
}

/* Explicit media stacking keeps feature images visible beneath overlays. */
.page-home .impact-media--feature > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .impact-media--feature > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-slide__logo picture {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  place-items: center;
}

.partner-slide__logo img {
  width: 150px;
  max-width: 72%;
}
