/* FEA Sports Group — premium athletic site */

:root {
  --bg: #0B0C0F;
  --bg-soft: #15171C;
  --bg-elev: #1B1E24;
  --line: #2A2D34;
  --line-soft: #1F2229;
  --ink: #F4F4F2;
  --ink-soft: #B9B9B0;
  --ink-mute: #74756F;
  --silver: #C8CAD0;

  /* section accent — overridden inline per section via --accent */
  --accent: #F5B400;
  --accent-ink: #15130A;

  --display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r: 4px;
  --r-md: 6px;
  --maxw: 1480px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 26px; } }

/* ---------- Type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.88;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow .num {
  color: var(--accent);
  margin-right: 8px;
}

h1, h2, h3, h4 { margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 15, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-badge {
  height: 36px;
  width: 36px;
  object-fit: cover;
  border-radius: 4px;
  background: #000;
  display: block;
  flex: 0 0 auto;
}
.brand-crest {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 0.98;
  white-space: nowrap;
}
.brand-stack .bw-1 {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-stack .bw-2 {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1px;
}
@media (max-width: 480px) {
  .brand-stack .bw-1, .brand-stack .bw-2 { font-size: 16px; }
  .brand-crest { height: 38px; width: 38px; }
}
.brand-wordmark-img {
  height: 28px;
  width: auto;
  display: block;
  /* Logo file is on solid black — multiply blend strips the background on dark UI */
  mix-blend-mode: screen;
  filter: contrast(1.05);
}
.variant-restrained .brand-wordmark-img {
  mix-blend-mode: normal;
  filter: invert(1);
}
.id-strip-logo {
  height: 22px;
  width: 22px;
  object-fit: cover;
  border-radius: 3px;
  background: #000;
  display: inline-block;
}
.brand-mark {
  width: 28px; height: 28px;
  border: 1.5px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.brand-wordmark {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-wordmark .sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex: 1 1 auto;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 0 11px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--accent); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px; bottom: 12px;
  height: 2px;
  background: var(--accent);
}
.header-cta {
  display: flex; align-items: center; gap: 8px;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 40px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-light { background: #0B0C0F; color: #fff; }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(2px); }

.menu-toggle { display: none; }

/* --- Nav dropdown (College) --- */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item .nav-link .caret { width: 10px; height: 10px; margin-left: 6px; opacity: 0.55; transition: transform 0.15s ease; }
.nav-drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 236px; padding: 8px;
  background: var(--bg, #fff); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 70;
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item:hover .nav-link .caret { transform: rotate(180deg); }
.nav-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 7px;
  font-family: var(--body); font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink);
}
.nav-drop a:hover { background: rgba(0,0,0,0.05); }
.nav-drop a .nd-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--nd, var(--accent)); }
.nav-drop a.is-active { color: var(--accent); }

@media (max-width: 1240px) {
  .site-header, .theme-home .site-header { background: #0B0C0F; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav { display: none; }
  .nav-open .nav-item { display: flex; flex-direction: column; align-items: stretch; width: 100%; }
  .nav-open .nav-drop { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; border: none; box-shadow: none; background: transparent; padding: 0 0 8px 18px; }
  .nav-open .nav-drop a { height: 44px; font-size: 15px; color: #fff; }
  .nav-open .nav-drop a:hover { background: rgba(255,255,255,0.08); }
  .nav-open .nav-drop a.is-active { color: var(--accent); }
  .header-row { position: relative; }
  .header-cta { flex: 1; justify-content: flex-end; }
  .header-cta .btn-primary { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--r); }
  .nav-open { display: flex; position: fixed; inset: 64px 0 0 0; background: #0B0C0F; flex-direction: column; padding: 24px; gap: 0; z-index: 60; overflow-y: auto; }
  .nav-open .nav-link { height: 56px; font-size: 18px; border-bottom: 1px solid var(--line-soft); width: 100%; color: #fff; }
  .nav-open .nav-link:hover { color: var(--accent); }
  .nav-open .nav-link.is-active { color: var(--accent); }
  .nav-open .nav-link.is-active::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,12,15,0.30) 0%, rgba(11,12,15,0.55) 45%, rgba(11,12,15,0.92) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  max-width: 16ch;
  text-wrap: balance;
  padding-bottom: 0.1em;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
@media (max-width: 720px) {
  .hero-inner { padding: 84px 0 56px; }
  .hero-meta { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; }
  .hero-meta .stat { padding: 16px 0; border-top: 1px solid var(--line-soft); }
  .hero-meta .stat:first-child { border-top: none; padding-top: 0; }
}
.stat .k {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.stat .v {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative;
  background: #1A1C22;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 14px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--r-md);
}
.ph .ph-label {
  position: absolute;
  left: 16px; bottom: 14px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.ph .ph-label .pin {
  display: inline-block;
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.ph .ph-corner {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Sections ---------- */
section.block {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}
section.block.tight { padding: 72px 0; }
@media (max-width: 720px) { section.block { padding: 64px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.section-head .lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
}

/* Doorways grid (homepage) */
.doorways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 980px) { .doorways { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .doorways { grid-template-columns: 1fr; } }
.doorway {
  position: relative;
  background: var(--bg-soft);
  padding: 32px 28px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s ease;
  overflow: hidden;
}
.doorway:hover {
  background: var(--bg-elev);
}
.doorway::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
}
.doorway:hover::before { transform: scaleX(1); }
.doorway-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.doorway-title {
  font-family: var(--display);
  font-size: 40px;
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin-top: 24px;
}
.doorway-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
}
.doorway-tag {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 36ch;
}
.doorway-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.doorway-meta .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

/* Pillars / 3-up */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}
.pillar h3 {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.005em;
}
.pillar p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* Page header (sub pages) */
.page-header {
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.page-header-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 980px) { .page-header-row { grid-template-columns: 1fr; gap: 24px; } }
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.page-header .lede {
  font-size: 17px;
  color: var(--ink-soft);
}
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--line); }
.crumbs .here { color: var(--accent); }

/* sub-page grid */
.subpages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
@media (max-width: 1100px) { .subpages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .subpages { grid-template-columns: 1fr; } }
.subcard {
  background: var(--bg-soft);
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.18s ease;
  position: relative;
}
.subcard:hover { background: var(--bg-elev); }
.subcard .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.subcard .t {
  font-family: var(--display);
  font-size: 28px;
  margin-top: 16px;
  letter-spacing: -0.005em;
}
.subcard .d {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.subcard .go {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; gap: 8px; align-items: center;
}

/* sub-page body */
.subpage-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 72px 0 96px;
}
@media (max-width: 980px) { .subpage-body { grid-template-columns: 1fr; gap: 40px; } }
.subpage-body h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.subpage-body p {
  font-size: 17px;
  color: var(--ink-soft);
}
.checks {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.checks li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15.5px;
}
.checks li::before {
  content: "";
  width: 16px; height: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  position: relative;
  margin-top: 4px;
  background: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
}

/* Apply CTA strip */
.cta-strip {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip h3 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.cta-strip .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: end;
}
@media (max-width: 800px) { .cta-strip .row { grid-template-columns: 1fr; align-items: start; } }
.cta-strip p {
  max-width: 40ch;
  font-size: 16px;
  opacity: 0.85;
}
.cta-strip .actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 800px) { .cta-strip .actions { justify-content: flex-start; } }

/* Footer */
.site-footer {
  background: #07080A;
  border-top: 1px solid var(--line-soft);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.footer-col li a:hover { color: var(--ink); }
.footer-contact { display: flex; flex-direction: column; gap: 2px; }
.footer-contact > span { color: var(--accent); font-weight: 700; }
.footer-col li a[target="_blank"][rel="noreferrer"] { color: var(--accent); }
.footer-lockup {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.005em;
  line-height: 0.92;
}
.footer-lockup .sub {
  display: block;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
  margin-top: 8px;
}
.footer-bottom {
  margin-top: 56px;  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 12px; } }

/* Section identity strip — sits above hero */
.id-strip {
  background: #0E0F13;
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}
.id-strip-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.id-strip-row .swatch {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.id-strip-row .now { color: var(--ink); }

/* Apply form */
.apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 720px) { .apply-form { grid-template-columns: 1fr; } }
.apply-form .field { display: flex; flex-direction: column; gap: 8px; }
.apply-form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.apply-form input, .apply-form select, .apply-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.18s ease;
}
/* Native select popup follows the dark theme (no white-on-white options) */
.apply-form select { color-scheme: dark; }
.apply-form select option {
  background-color: #0E1430;
  color: var(--ink);
}
.variant-restrained .apply-form select { color-scheme: light; }
.variant-restrained .apply-form select option {
  background-color: #ffffff;
  color: #14150F;
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  border-bottom-color: var(--accent);
}
.apply-form .full { grid-column: 1 / -1; }
.apply-form textarea { resize: vertical; min-height: 90px; }
.apply-form .submit-row { grid-column: 1 / -1; display: flex; justify-content: flex-end; }

.apply-success {
  border: 1.5px solid var(--accent);
  padding: 32px;
  border-radius: var(--r-md);
  margin-top: 40px;
}
.apply-success h3 {
  font-family: var(--display);
  font-size: 40px;
  margin-bottom: 12px;
}

/* ===================== HOME HERO (split: type left, photo right) ===================== */
.home-hero {
  position: relative;
  overflow: hidden;
  background: #0A0B0E;
  border-bottom: 1px solid var(--line-soft);
}
.home-hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  overflow: hidden;
  width: 50%;
  z-index: 0;
}
.home-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 66% 38%;
  transform: scale(1.08);
  transform-origin: 66% 38%;
  filter: brightness(0.7) saturate(0.82) contrast(1.06);
}
.home-hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #0A0B0E 0%, #0A0B0E 10%, rgba(10,11,14,0.92) 34%, rgba(10,11,14,0.4) 64%, rgba(10,11,14,0) 100%),
    linear-gradient(0deg, rgba(10,11,14,0.94) 0%, rgba(10,11,14,0) 46%);
}
@media (max-width: 980px) {
  .home-hero-photo { width: 100%; }
  .home-hero-photo::after {
    background:
      linear-gradient(90deg, #0A0B0E 0%, rgba(10,11,14,0.8) 45%, rgba(10,11,14,0.55) 100%),
      linear-gradient(0deg, #0A0B0E 4%, rgba(10,11,14,0) 60%);
  }
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 96px;
}
.home-hero-text { max-width: 660px; }
@media (max-width: 980px) { .home-hero-inner { padding-top: 64px; padding-bottom: 84px; } .home-hero-text { max-width: 100%; } }
.home-hero-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-top: 18px;
}
.home-hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.004em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  text-wrap: balance;
}
.home-hero-title .line { display: block; }
.home-hero-title .accent { color: var(--accent); }
.home-hero-sub {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
}

/* hero quick-link rows (gold outline) */
.hero-links {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}
.hero-link {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1.5px solid rgba(245, 180, 0, 0.55);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(245, 180, 0, 0.02);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.hero-link:hover {
  background: rgba(245, 180, 0, 0.12);
  border-color: var(--accent);
  transform: translateX(2px);
}
.hero-link-ico { width: 24px; height: 24px; color: var(--accent); }
.hero-link-ico svg { width: 100%; height: 100%; display: block; }
.hero-link-label {
  font-family: var(--body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-link-arrow { color: var(--accent); font-size: 18px; transition: transform 0.15s ease; }
.hero-link:hover .hero-link-arrow { transform: translateX(3px); }

/* hero qualifiers row */
.hero-quals {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-quals .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-quals em { color: var(--accent); font-style: normal; }

.home-hero .hero-actions { margin-top: 30px; }
.home-hero .btn-primary { transform: none; }
.home-hero .btn-primary > * { transform: none; }
.home-hero .hero-actions .btn { height: 48px; padding: 0 26px; font-size: 13px; }

/* diagonal light cut along the bottom of the hero (blends into the light band below) */
.home-hero-cut {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 64px;
  z-index: 3;
  background: #F4F4F2;
  clip-path: polygon(0 100%, 100% 100%, 100% 38%, 0 100%);
}
.variant-restrained .home-hero-cut { background: #FFFFFF; }
@media (max-width: 720px) { .home-hero-cut { height: 38px; } }

/* ===================== WORK IN SPORT (Internships) PAGE ===================== */
.ws-hero { position: relative; background: #07080C; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ws-hero-photo { position: absolute; inset: 0; z-index: 0; }
.ws-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; display: block; opacity: 0.9; }
.ws-hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,12,0.97) 0%, rgba(7,8,12,0.88) 36%, rgba(7,8,12,0.3) 72%, rgba(7,8,12,0.5) 100%); }
.ws-hero-inner { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 64px; }
.ws-hero-text { max-width: 600px; }
.ws-hero-ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--ws); color: #fff; margin-bottom: 20px; }
.ws-hero-ico svg { width: 28px; height: 28px; }
.ws-title { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.6vw, 76px); line-height: 0.98; letter-spacing: 0.005em; text-transform: uppercase; color: #fff; display: flex; flex-direction: column; }
.ws-title .accent { color: var(--ws); }
.ws-kicker { margin-top: 14px; font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.ws-sub { margin-top: 12px; max-width: 46ch; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.ws-select-note { margin-top: 16px; max-width: 52ch; padding: 12px 16px; border-left: 3px solid var(--ws); background: rgba(255,255,255,0.05); border-radius: 0 8px 8px 0; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.ws-select-note strong { color: var(--ws); text-transform: uppercase; }
.ws-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.ws-actions .btn { height: 48px; padding: 0 22px; }
.ws-actions .btn-ghost { display: inline-flex; gap: 10px; align-items: center; }
.ws-btn-solid { background: var(--ws); color: #fff; }
.ws-btn-solid:hover { filter: brightness(1.1); }

/* BTEC band */
.ws-btec { background: var(--ws, #1F6FE0); color: #fff; padding: 26px 0 20px; }
.ws-btec-row { display: grid; grid-template-columns: 1.2fr 1fr auto 1fr; gap: 24px; align-items: center; }
.ws-btec-course { align-self: center; }
@media (max-width: 1020px) { .ws-btec-row { grid-template-columns: 1fr; gap: 16px; } .ws-btec-or { display: none; } }
.ws-btec-lead { display: flex; gap: 16px; align-items: center; }
.ws-btec-ico { flex: 0 0 auto; width: 46px; height: 46px; color: #fff; }
.ws-btec-ico svg { width: 100%; height: 100%; }
.ws-btec-lead p { font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.45; }
.ws-btec-lead .gold { color: #F5B400; }
.ws-btec-course { display: flex; gap: 12px; align-items: flex-start; }
.ws-btec-check { flex: 0 0 auto; width: 24px; height: 24px; color: #fff; margin-top: 2px; }
.ws-btec-check svg { width: 100%; height: 100%; }
.ws-btec-course h4 { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; line-height: 1.35; }
@media (min-width: 1021px) {
  .ws-btec-row { align-items: start; }
  .ws-btec-lead { align-self: start; align-items: flex-start; }
  .ws-btec-lead p { margin-top: -2px; }
  .ws-btec-or { align-self: start; margin-top: 8px; }
  .ws-btec-course { align-self: start; }
  .ws-btec-check { margin-top: 0; }
  .ws-btec-course h4 { min-height: 0; display: block; }
  .ws-btec-course p { margin-top: 6px; }
}
.ws-btec-course p { font-size: 12.5px; opacity: 0.85; margin-top: 4px; }
.ws-btec-or { width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ws); display: grid; place-items: center; font-family: var(--body); font-weight: 800; font-size: 11px; }
.ws-btec-note { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.25); text-align: center; font-size: 12.5px; opacity: 0.9; }

/* generic */
.ws-block { padding: 64px 0 72px; }
.ws-light { background: #F4F4F2; color: #15161A; }
.ws-dark { background: #0A0B0E; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ws-head { text-align: center; margin-bottom: 42px; }
.ws-head h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.03em; text-transform: uppercase; color: #15161A;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.ws-head h2::before, .ws-head h2::after { content: ""; flex: 0 0 auto; width: 46px; height: 2px; background: var(--ws); }
.ws-head-dark h2 { color: #fff; }
@media (max-width: 640px) { .ws-head h2::before, .ws-head h2::after { width: 18px; } }

/* five internships */
.ws-five { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1100px) { .ws-five { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .ws-five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ws-five { grid-template-columns: 1fr; } }
.ws-intern { background: #fff; border: 1px solid #E4E4E0; border-radius: 10px; padding: 22px 18px 18px; text-align: center; display: flex; flex-direction: column; }
.ws-intern-ico { width: 46px; height: 46px; margin: 0 auto 12px; color: var(--ws); }
.ws-intern-ico svg { width: 100%; height: 100%; }
.ws-intern h3 { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: #15161A; }
.ws-intern p { margin-top: 10px; font-size: 12px; line-height: 1.5; color: #55564E; flex: 1; }
.ws-intern-media { margin-top: 14px; border-radius: 6px; overflow: hidden; aspect-ratio: 16/10; background: #000; }
.ws-intern-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-intern-media img[src*="photo-ws-pt"] { object-position: center 18%; }
.ws-intern-media img[src*="photo-ws-coaching"] { object-position: center 20%; }

/* experience dark row */
.ws-xp-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 1000px) { .ws-xp-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ws-xp-row { grid-template-columns: 1fr; } }
.ws-xp { text-align: center; padding: 0 8px; position: relative; }
.ws-xp + .ws-xp::before { content: ""; position: absolute; left: -10px; top: 12px; bottom: 12px; width: 1px; background: rgba(255,255,255,0.1); }
@media (max-width: 1000px) { .ws-xp + .ws-xp::before { display: none; } }
.ws-xp-ico { width: 46px; height: 46px; margin: 0 auto 12px; color: var(--ws); display: block; }
.ws-xp-ico svg { width: 100%; height: 100%; }
.ws-xp h4 { font-family: var(--body); font-weight: 800; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; line-height: 1.3; }
.ws-xp p { margin-top: 8px; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.6); }

/* units studied — tinted band to break up back-to-back light sections */
.ws-units.ws-light { background: #E9EFF9; border-bottom: 1px solid #D5DEED; }
.ws-units .ws-head h2 { color: #15161A; }
.ws-units-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 900px) { .ws-units-grid { grid-template-columns: 1fr; } }
.ws-units-card { background: #fff; border: 1px solid #D5DEED; border-radius: 10px; padding: 26px 26px 28px; box-shadow: 0 1px 3px rgba(21,35,66,0.06); }
.ws-units-head { display: flex; flex-direction: column; gap: 8px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid #E2E9F4; }
.ws-units-head h3 { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.15; color: #15161A; }
.ws-units-eq { font-family: var(--body); font-weight: 800; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ws); }
.ws-units-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 520px) { .ws-units-cols { grid-template-columns: 1fr; } }
.ws-units-sub { font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: #55564E; margin-bottom: 10px; }
.ws-units-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ws-units-list li { position: relative; padding-left: 16px; font-size: 12.5px; line-height: 1.45; color: #33342E; }
.ws-units-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 2px; background: var(--ws); }
.ws-biz-list { display: flex; flex-direction: column; gap: 14px; }
.ws-biz-unit { display: flex; gap: 14px; align-items: flex-start; }
.ws-biz-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ws); color: var(--ws); display: grid; place-items: center; font-family: var(--body); font-weight: 800; font-size: 11px; }
.ws-biz-unit h4 { font-family: var(--body); font-weight: 800; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: #15161A; }
.ws-biz-unit p { margin-top: 4px; font-size: 12px; line-height: 1.5; color: #55564E; }

/* progression + support */
.ws-prog { display: grid; grid-template-columns: 1fr 1.1fr 0.9fr; gap: 32px; align-items: start; }
@media (min-width: 1021px) {
  .ws-prog { row-gap: 18px; }
  .ws-prog-col { display: grid; grid-template-rows: subgrid; grid-row: span 5; row-gap: 18px; }
  .ws-prog-col .ws-panel-head { grid-row: 1; align-self: end; margin-bottom: 0; }
  .ws-prog-col .ws-prog-list { display: contents; }
  .ws-prog-media { grid-row: 1 / 6; grid-column: 3; align-self: stretch; aspect-ratio: auto; }
}
@media (max-width: 1020px) { .ws-prog { grid-template-columns: 1fr 1fr; } .ws-prog-media { grid-column: 1 / -1; } }
@media (max-width: 640px) { .ws-prog { grid-template-columns: 1fr; } }
.ws-panel-head { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: 0.03em; text-transform: uppercase; color: #15161A; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.ws-panel-head::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; background: var(--ws); }
.ws-prog-list { display: flex; flex-direction: column; gap: 18px; }
.ws-prog-item { display: flex; gap: 14px; align-items: flex-start; }
.ws-prog-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--ws); color: var(--ws); display: grid; place-items: center; }
.ws-prog-ico svg { width: 20px; height: 20px; }
.ws-prog-item h4 { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: #15161A; }
.ws-prog-item p { margin-top: 4px; font-size: 12.5px; line-height: 1.5; color: #55564E; }
.ws-prog-media { border-radius: 12px; overflow: hidden; background: #000; aspect-ratio: 4/3; }
.ws-prog-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* footer strip */
.ws-foot { background: #0A0B0E; padding: 40px 0; }
.ws-foot-row { display: grid; grid-template-columns: 1fr 1.3fr 1.3fr auto; gap: 32px; align-items: center; }
@media (max-width: 1100px) { .ws-foot-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ws-foot-row { grid-template-columns: 1fr; } }
.ws-foot-learn h3 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; }
.ws-foot-learn .ws-blue { color: var(--ws); }
.ws-foot-learn p { margin-top: 10px; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.6); }
.ws-foot-facilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 640px) { .ws-foot-facilities { grid-template-columns: repeat(2, 1fr); } }
.ws-facility { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; font-family: var(--body); font-weight: 800; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.8); line-height: 1.3; }
.ws-facility-ico { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ws); color: var(--ws); display: grid; place-items: center; }
.ws-facility-ico svg { width: 21px; height: 21px; }
.ws-foot-cta { background: var(--ws); border-radius: 12px; padding: 24px 26px; color: #fff; }
.ws-foot-cta h4 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.05; }
.ws-foot-cta p { margin-top: 8px; font-size: 12.5px; line-height: 1.5; opacity: 0.9; }
.ws-foot-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.ws-foot-actions .btn { height: 42px; padding: 0 16px; font-size: 11.5px; }
.ws-btn-invert { background: #fff; color: var(--ws); }
.ws-btn-invert:hover { filter: brightness(0.96); }
.ws-btn-line { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; background: transparent; }
.ws-btn-line:hover { background: rgba(255,255,255,0.12); }
.ws-foot-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ws-foot-brand img { width: auto; height: 104px; object-fit: contain; }

/* ===================== RUN SPORT (Sport Business) PAGE ===================== */
.rs-split { display: grid; grid-template-columns: minmax(280px, 0.9fr) 1.6fr; gap: 48px; align-items: start; }
@media (max-width: 980px) { .rs-split { grid-template-columns: 1fr; } }
.rs-course { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ws); }
.rs-main-copy { margin-top: 14px; font-size: 14px; line-height: 1.6; color: #55564E; max-width: 40ch; }
.rs-feats { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
@media (max-width: 480px) { .rs-feats { grid-template-columns: 1fr; } }
.rs-feat { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; font-family: var(--body); font-weight: 700; font-size: 12px; line-height: 1.35; color: #33342E; }
.rs-feat-ico { width: 40px; height: 40px; color: var(--ws); }
.rs-feat-ico svg { width: 100%; height: 100%; }
.rs-addons-copy { font-size: 13px; line-height: 1.55; color: #55564E; margin-bottom: 20px; }
.rs-addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .rs-addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rs-addon-grid { grid-template-columns: 1fr; } }
.rs-addon { background: #fff; border: 1px solid #E4E4E0; border-radius: 10px; padding: 0 16px 16px; text-align: center; display: flex; flex-direction: column; overflow: hidden; }
.rs-addon-media { margin: 0 -16px 14px; aspect-ratio: 16/10; background: #000; position: relative; overflow: hidden; }
.rs-addon-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.rs-addon-media img[src*="photo-sbz-massage"], .rs-addon-media img[src*="photo-sbz-barbell"] { object-position: center 8%; }
.rs-addon-ico { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--ws); }
.rs-addon-ico svg { width: 100%; height: 100%; }
.rs-addon h4 { font-family: var(--body); font-weight: 800; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #15161A; }
.rs-addon p { margin-top: 8px; font-size: 11.5px; line-height: 1.5; color: #55564E; flex: 1; }
.rs-banner { margin-top: 18px; background: var(--ws); color: #fff; border-radius: 8px; padding: 13px 18px; text-align: center; font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.5; }
.rs-study-block { padding-top: 0; }
.rs-study { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px 18px; }
@media (max-width: 1100px) { .rs-study { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .rs-study { grid-template-columns: repeat(2, 1fr); } }
.rs-topic { text-align: center; padding: 0 4px; }
.rs-topic-ico { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--ws); display: block; }
.rs-topic-ico svg { width: 100%; height: 100%; }
.rs-topic h4 { font-family: var(--body); font-weight: 800; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #15161A; line-height: 1.3; }
.rs-topic p { margin-top: 8px; font-size: 11.5px; line-height: 1.5; color: #55564E; }
.rs-photos { margin-top: 36px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 900px) { .rs-photos { grid-template-columns: repeat(3, 1fr); } .rs-photos .rs-photo:nth-child(n+4) { display: none; } }
.rs-photo { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: #000; }
.rs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rs-photo img[src*="photo-sbz-medals"] { object-position: center 28%; }

/* ===================== UNIVERSITY PAGE (black & gold) ===================== */
.uni { background: #0A0B0E; color: #fff; }
.uni .gold { color: var(--uni); }

/* hero */
.uni-hero { background: #07080C; border-bottom: 1px solid rgba(255,255,255,0.06); }
.uni-hero .nh-title .accent { color: var(--uni); }
.uni-hero .nh-eyebrow .gold { color: var(--uni); }
@media (max-width: 560px) { .uni-hero .nh-eyebrow .gold { display: block; } }
.uni-actions .btn { height: 48px; padding: 0 20px; }
.uni-btn-solid { background: var(--uni); color: #15130A; display: inline-flex; gap: 10px; align-items: center; }
.uni-btn-solid:hover { filter: brightness(1.06); }
.uni-btn-line { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; background: transparent; }
.uni-btn-line:hover { border-color: var(--uni); color: var(--uni); }
.uni-btn-sm { height: 40px; padding: 0 16px; font-size: 11.5px; }
.uni-partner { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 18px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.uni-partner-mark { display: inline-flex; align-items: center; gap: 10px; }
.uni-partner { flex-wrap: wrap; row-gap: 12px; }
@media (max-width: 560px) {
  .uni-partner { gap: 10px; }
  .uni-partner > span:first-child { flex: 0 0 100%; }
  .uni-partner .uni-partner-mark { flex: 1 1 0; min-width: 0; }
  .uni-partner .uon-logo { height: auto; width: 100%; max-height: 44px; object-fit: contain; padding: 5px 7px; }
}
.uon-logo { height: 52px; width: auto; display: block; background: #fff; border-radius: 8px; padding: 6px 10px; }
.uni-partner-mark .uon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4); font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.04em; color: #fff; }
.uni-partner-mark .uon-name { font-family: var(--body); font-weight: 700; font-size: 11px; line-height: 1.3; letter-spacing: 0.04em; color: #fff; }

/* generic blocks */
.uni-block { padding: 64px 0 72px; }
.uni-block-line { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: #0C0D11; }
.uni-head { text-align: center; margin-bottom: 42px; }
.uni-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); letter-spacing: 0.03em; text-transform: uppercase; color: #fff; display: flex; align-items: center; justify-content: center; gap: 20px; }
.uni-head-rule h2::before, .uni-head-rule h2::after { content: ""; flex: 0 0 auto; width: 46px; height: 2px; background: var(--uni); }
@media (max-width: 640px) { .uni-head-rule h2::before, .uni-head-rule h2::after { width: 18px; } }
.uni-head p { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }

/* differently */
.uni-diff-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .uni-diff-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.uni-diff { display: flex; gap: 18px; align-items: flex-start; position: relative; }
.uni-diff + .uni-diff::before { content: ""; position: absolute; left: -16px; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,0.08); }
@media (max-width: 900px) { .uni-diff + .uni-diff::before { display: none; } }
.uni-diff-ico { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--uni); color: var(--uni); display: grid; place-items: center; }
.uni-diff-ico svg { width: 24px; height: 24px; }
.uni-diff h4 { font-family: var(--body); font-weight: 800; font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.uni-diff p { margin-top: 8px; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.62); }

/* pathway */
.uni-path-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 980px) { .uni-path-row { grid-template-columns: 1fr; } .uni-path-arrow { transform: rotate(90deg); justify-self: center; } }
.uni-path { position: relative; border: 1.5px solid rgba(245,180,0,0.55); border-radius: 12px; background: #0F1014; overflow: visible; display: flex; flex-direction: column; }
.uni-path-num { position: absolute; top: -14px; right: 18px; width: 28px; height: 28px; border-radius: 50%; background: var(--uni); color: #15130A; display: grid; place-items: center; font-family: var(--body); font-weight: 800; font-size: 13px; z-index: 2; }
.uni-path-media { border-radius: 10px 10px 0 0; overflow: hidden; aspect-ratio: 16/8; background: #000; }
.uni-path-media img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; }
.uni-path-media img[src*="uni-hurdles"] { object-position: center 25%; }
.uni-path-media img[src*="uni-sc-squats"] { object-position: center 55%; }
@media (max-width: 520px) { .uni-path-media img[src*="uni-sc-squats"] { object-position: center 55%; } }
.uni-path-body { padding: 16px 18px 18px; }
.uni-path-body .yr { font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--uni); }
.uni-path-body h3 { margin-top: 4px; font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; line-height: 1; }
.uni-path-body .sub { margin-top: 4px; font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.uni-lvl { font-size: 16px; font-weight: 700; color: var(--uni); letter-spacing: 0.03em; }
.uni-path-arrow { align-self: center; color: var(--uni); font-size: 22px; }
.uni-path-note { margin-top: 30px; text-align: center; font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.72); }

/* what you'll study */
.uni-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 980px) { .uni-study-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.uni-course { background: #101116; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 26px 24px; }
.uni-course-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--tint); color: #fff; margin-bottom: 16px; }
.uni-course-ico svg { width: 26px; height: 26px; }
.uni-course h3 { font-family: var(--body); font-weight: 800; font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--tint); line-height: 1.35; }
.uni-course .lead { margin-top: 10px; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.65); }
.uni-course ul { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); list-style: none; display: flex; flex-direction: column; gap: 10px; }
.uni-course li { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,0.85); }
.uni-course .tick { flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%; background: var(--tint); color: #0A0B0E; display: grid; place-items: center; margin-top: 1px; }
.uni-course .tick svg { width: 10px; height: 10px; }
@media (min-width: 981px) {
  .uni-study-grid { row-gap: 0; }
  .uni-course { display: grid; grid-template-rows: subgrid; grid-row: span 4; row-gap: 0; align-content: start; }
  .uni-course-ico { grid-row: 1; }
  .uni-course h3 { grid-row: 2; }
  .uni-course .lead { grid-row: 3; }
  .uni-course ul { grid-row: 4; }
}

/* journey */
.uni-journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .uni-journey-grid { grid-template-columns: 1fr; } }
.uni-journey { position: relative; border: 1.5px solid rgba(245,180,0,0.5); border-radius: 12px; overflow: hidden; min-height: 320px; display: flex; align-items: stretch; background: #000; }
.uni-journey-media { position: absolute; inset: 0; }
.uni-journey-media img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.5; }
.uni-journey-media img[src*="uni-pe-teaching"] { object-position: center 28%; }
.uni-journey-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,9,0.94) 0%, rgba(5,6,9,0.72) 55%, rgba(5,6,9,0.25) 100%); }
.uni-journey-body { position: relative; z-index: 2; padding: 28px 26px; max-width: 42ch; display: flex; flex-direction: column; align-items: flex-start; }
.uni-journey .kicker { font-family: var(--body); font-weight: 800; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.uni-journey h3 { margin-top: 8px; font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; line-height: 1; }
.uni-journey .sub { margin-top: 4px; font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--uni); }
.uni-journey ul { margin-top: 16px; list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.uni-journey li { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: rgba(255,255,255,0.85); }
.uni-journey .tick { flex: 0 0 auto; width: 15px; height: 15px; border-radius: 50%; background: var(--uni); color: #15130A; display: grid; place-items: center; margin-top: 2px; }
.uni-journey .tick svg { width: 9px; height: 9px; }
.uni-journey .btn { margin-top: 18px; }

/* VS */
.uni-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 900px) { .uni-vs { grid-template-columns: 1fr; } .uni-vs-badge { justify-self: center; } }
.uni-vs-col { border-radius: 12px; overflow: hidden; padding-bottom: 22px; background: #101116; border: 1px solid rgba(255,255,255,0.08); }
.uni-vs-fea { border-color: rgba(245,180,0,0.55); }
.uni-vs-media { aspect-ratio: 16/7; background: #000; }
.uni-vs-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uni-vs-trad .uni-vs-media img { filter: grayscale(1); opacity: 0.55; }
.uni-vs-col h3 { margin: 18px 22px 0; font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.uni-vs-fea h3 { color: var(--uni); }
.uni-vs-col ul { margin: 14px 22px 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.uni-vs-col li { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.85); }
.uni-vs-col .mark { flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; }
.uni-vs-col .mark svg { width: 10px; height: 10px; }
.uni-vs-col .mark.no { background: #C24040; color: #fff; }
.uni-vs-col .mark.yes { background: var(--uni); color: #15130A; }
.uni-vs-badge { align-self: center; width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--uni); color: var(--uni); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; background: #0A0B0E; }

/* careers */
.uni-careers { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
@media (max-width: 1100px) { .uni-careers { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .uni-careers { grid-template-columns: repeat(2, 1fr); } }
.uni-career { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 3/4; background: #000; display: flex; flex-direction: column; justify-content: flex-end; padding: 14px 12px; border: 1px solid rgba(255,255,255,0.08); }
.uni-career img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.uni-career .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,9,0.05) 30%, rgba(5,6,9,0.9) 85%); }
.uni-career-ico { position: relative; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--uni); color: var(--uni); display: grid; place-items: center; margin-bottom: 8px; background: rgba(5,6,9,0.55); }
.uni-career-ico svg { width: 17px; height: 17px; }
.uni-career-lbl { position: relative; z-index: 2; font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; line-height: 1.3; }

/* learners */
.uni-learners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .uni-learners { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.uni-learner { background: #101116; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 22px 18px; display: flex; flex-direction: column; }
.uni-avatar { width: 52px; height: 52px; border-radius: 50%; background: rgba(245,180,0,0.14); border: 1.5px solid var(--uni); color: var(--uni); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 22px; }
.uni-avatar { overflow: hidden; position: relative; }
.uni-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.uni-learner-top { display: flex; align-items: center; gap: 14px; }
.uni-learner-top .uni-avatar { flex: 0 0 64px; width: 64px; height: 64px; }
.uni-learner blockquote { margin: 0; padding-left: 18px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.88); text-wrap: pretty; flex: 1; position: relative; }
.uni-learner .qm { position: absolute; left: 0; top: 14px; color: var(--uni); font-family: var(--display); font-size: 34px; line-height: 0; }
.uni-learner figcaption { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 2px; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.uni-learner .qm-close { position: static; margin-left: 5px; top: auto; vertical-align: -8px; }
.uni-learner .nm { font-family: var(--body); font-weight: 800; font-size: 13px; color: var(--uni); }

/* footer CTA */
.uni-cta { position: relative; background: #07080C; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); }
.uni-cta-photo { position: absolute; inset: 0; }
.uni-cta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.28; }
.uni-cta-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,9,0.92) 0%, rgba(5,6,9,0.78) 60%, rgba(5,6,9,0.55) 100%); }
.uni-cta-row { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 48px; padding-bottom: 48px; flex-wrap: wrap; }
.uni-cta-text h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 32px); letter-spacing: 0.02em; text-transform: uppercase; color: #fff; }
.uni-cta-text p { margin-top: 10px; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.uni-cta-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.uni-cta-actions .btn { height: 44px; padding: 0 18px; font-size: 12px; }
.uni-cta-brand { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; align-self: stretch; min-height: 0; }
.uni-cta-brand img { flex: 1 1 0; min-height: 0; width: auto; max-width: 180px; object-fit: contain; }
@media (max-width: 900px) { .uni-cta-brand img { flex: 0 0 auto; height: 110px; } }
@media (max-width: 560px) {
  .uni-cta-row { flex-direction: column; align-items: stretch; gap: 24px; }
  .uni-cta-text h3 span { display: block; }
  .uni-cta-actions { flex-wrap: nowrap; gap: 10px; }
  .uni-cta-actions .btn { flex: 1 1 0; min-width: 0; padding: 0 10px; font-size: 11.5px; justify-content: center; text-align: center; }
  .uni-cta-brand { align-self: center; }
}

/* ===================== FOOTBALL SCHOLARSHIP PAGE ===================== */
.fs-hero { position: relative; background: #0A0B0E; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
.fs-hero-photo { position: absolute; inset: 0; z-index: 0; }
.fs-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 22%; display: block; opacity: 0.85; }
.fs-hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,14,0.97) 0%, rgba(10,11,14,0.86) 38%, rgba(10,11,14,0.25) 75%, rgba(10,11,14,0.45) 100%); }
.fs-hero-inner { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 76px; }
.fs-hero-text { max-width: 620px; }
.fs-title { font-family: var(--display); font-weight: 700; font-size: clamp(46px, 6.4vw, 88px); line-height: 0.95; letter-spacing: 0.005em; text-transform: uppercase; color: #fff; display: flex; flex-direction: column; }
.fs-title .accent { color: var(--accent); }
.fs-kicker { margin-top: 16px; font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.fs-sub { margin-top: 14px; max-width: 44ch; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.fs-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.fs-actions .btn { height: 48px; padding: 0 22px; }
.fs-actions .btn-primary { transform: none; }
.fs-actions .btn-primary > * { transform: none; }
.fs-actions .btn-ghost { display: inline-flex; gap: 10px; align-items: center; }

/* generic section + heading */
.fs-block { background: #0A0B0E; padding: 64px 0 72px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fs-head { text-align: center; margin-bottom: 40px; }
.fs-head h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.03em; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.fs-head h2::before, .fs-head h2::after { content: ""; flex: 0 0 auto; width: 52px; height: 2px; background: var(--accent); }
@media (max-width: 640px) { .fs-head h2::before, .fs-head h2::after { width: 22px; } }

/* checklist */
.fs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fs-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.82); line-height: 1.35; }
.fs-tick { flex: 0 0 auto; width: 15px; height: 15px; color: var(--accent); margin-top: 1px; }
.fs-tick svg { width: 100%; height: 100%; display: block; }

/* pillars */
.fs-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .fs-pillars { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.fs-pillar { border: 1px solid rgba(245,180,0,0.35); border-radius: 12px; padding: 22px; background: #0E0F14; }
.fs-pillar-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fs-pillar-ico { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; flex: 0 0 auto; }
.fs-pillar-ico svg { width: 22px; height: 22px; }
.fs-pillar-head h3 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.fs-pillar-media { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 16px; background: #000; }
.fs-pillar-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-pillar-media img[src*="photo-fs-football"] { object-position: center 16%; }
.fs-pillar-media img[src*="photo-fs-education"] { object-position: center 32%; }
.fs-pillar-media img[src*="photo-fs-future"] { object-position: center 24%; }
.fs-xp-media img[src*="photo-fs-match"] { object-position: center 10%; }
.fs-xp-media img[src*="photo-fs-jpl-trophy"] { object-position: center top; }
.fs-xp-media img[src*="photo-fs-coach"] { object-position: center 12%; }
.fs-xp-media img[src*="photo-fs-analysis"] { object-position: center 15%; }
.fs-xp-media img[src*="cp-u23"] { object-position: center 8%; }
.fs-xp-media img[src*="cp-jpl"] { object-position: center 60%; }

/* education */
.fs-edu { display: grid; grid-template-columns: 1fr 1.15fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .fs-edu { grid-template-columns: 1fr; } }
.fs-edu-media { border-radius: 12px; overflow: hidden; background: #000; min-height: 280px; position: relative; }
.fs-edu-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .fs-edu-media { aspect-ratio: 16/9; min-height: 0; } .fs-edu-media img { position: static; } }
.fs-edu-body h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: 0.02em; text-transform: uppercase; color: #fff; }
.fs-edu-equiv { display: inline-block; margin-top: 10px; background: rgba(245,180,0,0.14); border: 1px solid rgba(245,180,0,0.5); color: var(--accent); font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 5px; }
.fs-edu-body p { margin-top: 14px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 56ch; }
.fs-edu-label { margin-top: 22px; margin-bottom: 14px; font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.fs-study { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 520px) { .fs-study { grid-template-columns: 1fr; } }
.fs-study li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.82); }

.fs-edu-foot { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; margin-top: 28px; }
@media (max-width: 900px) { .fs-edu-foot { grid-template-columns: 1fr; } }
.fs-edu-panel { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 22px; background: #0E0F14; }
.fs-edu-panel-head { text-align: center; font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.fs-minirow { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.fs-edu-foot .fs-edu-panel:first-child .fs-mini { flex: 0 0 calc(25% - 10px); }
.fs-edu-foot .fs-edu-panel:last-child .fs-mini { flex: 0 0 calc(33.33% - 10px); }
@media (max-width: 520px) { .fs-edu-foot .fs-edu-panel .fs-mini { flex: 1 1 100px; } }
.fs-mini { flex: 1 1 100px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.75); line-height: 1.3; }
.fs-mini-ico { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; }
.fs-mini-ico svg { width: 19px; height: 19px; }

/* parents */
.fs-parents { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 1000px) { .fs-parents { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fs-parents { grid-template-columns: 1fr; } }
.fs-parent { text-align: center; padding: 8px 6px; }
.fs-parent-ico { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; }
.fs-parent-ico svg { width: 24px; height: 24px; }
.fs-parent h4 { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; line-height: 1.3; }
.fs-parent p { margin-top: 10px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.6); }

/* steps */
.fs-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
@media (max-width: 1100px) { .fs-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .fs-steps { grid-template-columns: repeat(2, 1fr); } }
.fs-step { text-align: center; padding: 8px 4px; }
.fs-step-ico { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 50%; background: var(--accent); color: #15130A; display: grid; place-items: center; }
.fs-step-ico svg { width: 26px; height: 26px; }
.fs-step h4 { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.fs-step p { margin-top: 8px; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.6); }

/* experience cards */
.fs-xp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 1100px) { .fs-xp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .fs-xp-grid { grid-template-columns: repeat(2, 1fr); } }
/* 7-card layout: 4 on top, 3 below */
@media (min-width: 1101px) {
  .fs-xp-5 { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1101px) {
  .fs-xp-7 { grid-template-columns: repeat(12, 1fr); }
  .fs-xp-7 .fs-xp { grid-column: span 3; }
  .fs-xp-7 .fs-xp:nth-child(n+5) { grid-column: span 4; }
}
.fs-xp-media { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: #000; margin-bottom: 12px; }
.fs-xp-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-xp h4 { font-family: var(--body); font-weight: 800; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); line-height: 1.3; }
.fs-xp p { margin-top: 8px; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.62); }

/* first team + stories */
.fs-ft { display: grid; grid-template-columns: minmax(0, 720px); justify-content: center; gap: 36px; align-items: start; }
@media (max-width: 980px) { .fs-ft { grid-template-columns: 1fr; } }
.fs-ft-title { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2vw, 24px); letter-spacing: 0.03em; text-transform: uppercase; color: #fff; }
.fs-ft-sub { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.fs-ft-table { margin-top: 18px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.fs-ft-row { display: grid; grid-template-columns: 44px 1.2fr 1.2fr; padding: 9px 16px; font-size: 12.5px; color: rgba(255,255,255,0.78); border-top: 1px solid rgba(255,255,255,0.06); }
.fs-ft-row:first-child { border-top: none; }
.fs-ft-row span:first-child { color: var(--accent); font-weight: 700; }
.fs-ft-row-head { background: rgba(245,180,0,0.1); font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.fs-ft-row-head span:first-child { color: var(--accent); }
.fs-stories-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 520px) { .fs-stories-grid { grid-template-columns: 1fr; } }
.fs-story { margin: 0; background: #0E0F14; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.fs-story-media { aspect-ratio: 16/10; background: #000; }
.fs-story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-story figcaption { padding: 14px 16px 16px; }
.fs-story h4 { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--accent); }
.fs-story p { margin-top: 6px; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.65); }

/* competitions strip */
.fs-comps { background: #F1F1EF; padding: 34px 0; }
.fs-comps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 820px) { .fs-comps-row { grid-template-columns: repeat(2, 1fr); } }
.fs-comp { display: flex; align-items: center; justify-content: center; gap: 14px; }
.fs-comp-ico { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #15161A; color: #15161A; display: grid; place-items: center; flex: 0 0 auto; }
.fs-comp-img { width: 56px; height: 56px; border: none; border-radius: 0; }
.fs-comp-img img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.fs-comp-ico svg { width: 22px; height: 22px; }
.fs-comp-lbl { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: #15161A; max-width: 20ch; line-height: 1.3; }

/* complete person */
.fs-complete { display: grid; grid-template-columns: 1fr 0.9fr 1fr; gap: 28px; align-items: center; }
@media (max-width: 980px) { .fs-complete { grid-template-columns: 1fr; } }
.fs-complete-col { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 22px; background: #0E0F14; }
.fs-complete-col h4 { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.fs-complete-media { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; background: #000; margin-bottom: 16px; }
.fs-complete-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-complete-media img[src*="photo-fs-pitch"] { object-position: center 34%; }
.fs-complete-mid { text-align: center; padding: 12px; }
.fs-complete-kicker { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.fs-complete-mid h3 { margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: clamp(26px, 2.8vw, 38px); line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; }
.fs-complete-mid h3 .gold { color: var(--accent); }
@media (max-width: 560px) { .fs-complete-mid h3 .gold { display: block; } }


/* ===================== NEW HOME PAGE ("A future without limits") ===================== */
.nh-hero { background: #0A0B0E; padding-bottom: 56px; }

/* collage strip */
.nh-headerimg { position: relative; height: 640px; overflow: hidden; }
@media (max-width: 900px) { .nh-headerimg { height: 440px; } }
@media (max-width: 520px) { .nh-headerimg { height: 320px; } }
.nh-headerimg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(0.92) contrast(1.05); }
.nh-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 340px;
  overflow: hidden;
}
@media (max-width: 900px) { .nh-collage { grid-template-columns: repeat(3, 1fr); height: 280px; } }
@media (max-width: 520px) { .nh-collage { grid-template-columns: repeat(2, 1fr); height: 230px; } }
.nh-collage-cell { position: relative; overflow: hidden; }
.nh-collage-cell::after { content: ""; position: absolute; inset: 0; box-shadow: inset -1px 0 0 rgba(0,0,0,0.35); }
.nh-collage-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-collage-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,14,0.35) 0%, rgba(10,11,14,0.08) 26%, rgba(10,11,14,0.45) 58%, rgba(10,11,14,0.98) 100%);
}
.nh-play {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; background: none; cursor: pointer;
}
.nh-play-btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: 2px solid rgba(255,255,255,0.85);
  display: grid; place-items: center; color: #fff;
  backdrop-filter: blur(4px); transition: background 0.18s ease, transform 0.18s ease;
}
.nh-play:hover .nh-play-btn { background: var(--accent); border-color: var(--accent); color: #15130A; transform: scale(1.06); }
.nh-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.nh-play-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; font-weight: 500; }

/* hero body */
.nh-hero-body {
  position: relative; z-index: 4; margin-top: -220px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: end;
}
@media (max-width: 900px) { .nh-hero-body { grid-template-columns: 1fr; gap: 28px; margin-top: -140px; align-items: start; } }
.nh-eyebrow { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.nh-eyebrow .gold { color: var(--accent); }
.nh-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(50px, 8vw, 108px); line-height: 0.9; letter-spacing: 0.005em;
  text-transform: uppercase; color: #fff; display: flex; flex-direction: column;
}
.nh-title .line { white-space: nowrap; }
.nh-title .accent { color: var(--accent); }
.nh-sub { margin-top: 24px; max-width: 52ch; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.72); }
.nh-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.nh-actions .btn { height: 50px; padding: 0 24px; }
.nh-actions .btn-primary { transform: none; }
.nh-actions .btn-primary > * { transform: none; }
.nh-watch { display: inline-flex; align-items: center; gap: 10px; }
.nh-watch svg { width: 16px; height: 16px; color: var(--accent); }

/* hero feature list — row on the right, aligned with description */
.nh-features { position: relative; z-index: 4; display: flex; gap: 28px; flex-wrap: wrap; padding-bottom: 8px; }
@media (max-width: 900px) { .nh-features { gap: 22px; } }
@media (max-width: 620px) { .nh-features { flex-direction: column; gap: 4px; padding-bottom: 0; } .nh-feature { flex: 0 0 auto; gap: 10px; } }
.nh-feature { display: flex; gap: 14px; align-items: flex-start; flex: 1 1 140px; }
@media (max-width: 620px) { .nh-features .nh-feature { flex: 0 0 auto; gap: 12px; align-items: center; } }
.nh-feature-ico {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent);
  display: grid; place-items: center;
}
.nh-feature-ico svg { width: 28px; height: 28px; }
.nh-feature h4 { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.nh-feature p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* stats bar */
.nh-statsbar { margin-top: 52px; border: 1px solid rgba(245,180,0,0.4); border-radius: 12px; padding: 26px 20px 28px; }
.nh-statsbar-head { text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.nh-statsbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .nh-statsbar-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 0; } }
@media (max-width: 400px) { .nh-statsbar-grid { grid-template-columns: 1fr; gap: 18px; } }
.nh-stat { display: flex; align-items: center; gap: 16px; justify-content: center; padding: 0 16px; }
.nh-stat + .nh-stat { border-left: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 760px) { .nh-stat + .nh-stat { border-left: none; } .nh-stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.1); } }
@media (max-width: 400px) { .nh-stat:nth-child(even) { border-left: none; } }
.nh-stat-ico { flex: 0 0 auto; width: 38px; height: 38px; color: var(--accent); }
.nh-stat-ico svg { width: 100%; height: 100%; }
.nh-stat-num { font-family: var(--display); font-weight: 700; font-size: 34px; line-height: 1; color: #fff; }
.nh-stat-lbl { font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-top: 5px; }
.nh-stat-desc { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* choose your future */
.nh-future { background: #F1F1EF; padding: 78px 0 88px; }
.variant-restrained .nh-future { background: #FFFFFF; }
.nh-future-head { text-align: center; }
.nh-future-head h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: 0.02em; text-transform: uppercase; color: #15161A;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.nh-future-head h2::before, .nh-future-head h2::after { content: ""; flex: 0 0 auto; width: 50px; height: 3px; background: var(--accent); }
.nh-future-sub { text-align: center; max-width: 66ch; margin: 14px auto 44px; font-size: 15px; color: #55564E; }
.nh-future-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 22px; }
@media (max-width: 820px) { .nh-future-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.nh-fcard {
  position: relative; display: grid; grid-template-columns: 44% 1fr; align-items: stretch;
  background: #121319; border-radius: 12px; overflow: hidden; min-height: 260px; isolation: isolate;
}
@media (max-width: 520px) { .nh-fcard { grid-template-columns: 1fr; min-height: 0; } }
.nh-fcard-media { position: relative; background: #000; overflow: hidden; }
@media (max-width: 520px) { .nh-fcard-media { height: 160px; } }
.nh-fcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.7,0,0.2,1); }
.nh-fcard:hover .nh-fcard-media img { transform: scale(1.05); }
.nh-fcard-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,19,25,0) 55%, rgba(18,19,25,0.9) 100%); }
@media (max-width: 520px) { .nh-fcard-scrim { background: linear-gradient(180deg, rgba(18,19,25,0) 40%, rgba(18,19,25,0.9) 100%); } }
.nh-fcard-ico {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #15130A; display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.nh-fcard-ico svg { width: 24px; height: 24px; }
.nh-fcard-body { padding: 26px 26px 26px 6px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
@media (max-width: 520px) { .nh-fcard-body { padding: 22px; } }
.nh-fcard-body h3 { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: 0.01em; text-transform: uppercase; }
.nh-fcard-sub { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.nh-fcard-body p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.68); margin-top: 12px; }
.nh-fcard-cta { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; border: 1.5px solid var(--accent); color: var(--accent); padding: 8px 16px; border-radius: 5px; font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.16s ease, color 0.16s ease; }
.nh-fcard:hover .nh-fcard-cta { background: var(--accent); color: #15130A; }
.nh-fcard-wide { grid-column: 1 / -1; grid-template-columns: 36% 1fr; }
@media (max-width: 520px) { .nh-fcard-wide { grid-template-columns: 1fr; } }
.nh-fcard-wide .nh-fcard-body { max-width: 68ch; }
.nh-fcard-chip {
  display: inline-block; margin-left: 10px; padding: 2px 9px; border-radius: 999px;
  border: 1.5px solid var(--accent); color: var(--accent);
  font-size: 10.5px; letter-spacing: 0.08em; vertical-align: 1px;
}

/* more than sport banner */
.nh-banner-wrap { background: #0A0B0E; padding: 0 0 0; }
.nh-banner {
  display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 40px; align-items: center;
  padding: 44px 0;
}
@media (max-width: 900px) { .nh-banner { grid-template-columns: 1fr; gap: 28px; text-align: center; } }
.nh-banner-tag { display: flex; flex-direction: column; font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.04; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; }
.nh-banner-tag .gold { color: var(--accent); }
.nh-banner-mid { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 40px; }
@media (max-width: 900px) { .nh-banner-mid { border-left: none; padding-left: 0; } }
.nh-banner-kicker { font-family: var(--body); font-weight: 800; font-size: 16px; color: var(--accent); }
.nh-banner-mid p { font-size: 14px; color: rgba(255,255,255,0.66); margin-top: 10px; max-width: 46ch; }
@media (max-width: 900px) { .nh-banner-mid p { margin-left: auto; margin-right: auto; } }
.nh-banner-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .nh-banner-actions { justify-content: center; } }
.nh-banner-actions .btn { height: 46px; padding: 0 20px; }
.nh-banner-actions .btn-primary { transform: none; }
.nh-banner-actions .btn-primary > * { transform: none; }
.nh-btn-outline { border: 1.5px solid var(--accent); color: #fff; background: transparent; }
.nh-btn-outline:hover { background: var(--accent); color: #15130A; }
.nh-btn-outline .arrow { color: var(--accent); }
.nh-btn-outline:hover .arrow { color: #15130A; }
.nh-banner-brand { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; align-self: stretch; min-height: 0; margin: -34px 0; }
.nh-banner-brand img { flex: 1 1 0; min-height: 0; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 900px) { .nh-banner-brand { margin: 0; } .nh-banner-brand img { flex: 0 0 auto; height: 120px; } }
.nh-pack { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--accent); }

/* ===================== CHOOSE YOUR PATHWAY ===================== */
.choose { background: #0A0B0E; padding: 84px 0 92px; }
.choose-head { text-align: center; margin-bottom: 44px; }
.choose-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: 0.03em; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.choose-head h2::before, .choose-head h2::after { content: ""; flex: 0 0 auto; width: 60px; height: 2px; background: var(--accent); }
@media (max-width: 640px) { .choose-head h2::before, .choose-head h2::after { width: 26px; } }

.choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 1040px) { .choose-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.cp-card {
  --cp: #E8B73C;
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}
.cp-gold  { --cp: #E8B73C; }
.cp-blue  { --cp: #1F6FE0; }
.cp-green { --cp: #34A853; }

.cp-media { position: relative; height: 168px; background: #000; }
.cp-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cp-media img[src*="photo-cp-play"] { object-position: center 18%; }
.cp-media img[src*="photo-cp-work"] { object-position: center 30%; }
.cp-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,14,0.15) 0%, rgba(10,11,14,0) 40%, rgba(255,255,255,0.0) 100%);
}
.cp-ico {
  position: absolute; top: 140px; left: 26px; z-index: 3;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--cp); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}
.cp-ico svg { width: 28px; height: 28px; }
.cp-gold .cp-ico { color: #15130A; }

.cp-body { padding: 30px 26px 20px; color: #15161A; flex: 1 1 auto; display: flex; flex-direction: column; }
.cp-kicker {
  font-family: var(--display); font-weight: 700;
  font-size: 26px; line-height: 0.98; letter-spacing: 0.01em;
  text-transform: uppercase; color: #15161A;
}
.cp-prog { font-family: var(--body); font-weight: 800; font-size: 15px; color: var(--cp); margin-top: 6px; }
.cp-desc { font-size: 13.5px; line-height: 1.5; color: #55564E; margin-top: 14px; }

.cp-label {
  font-family: var(--body); font-weight: 800;
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cp); margin-top: 22px; margin-bottom: 12px;
}
.cp-label-prog { margin-top: 24px; }

.cp-choose { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.cp-choose li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #2E2F29; font-weight: 600; }
.cp-mini { width: 16px; height: 16px; color: var(--cp); flex: 0 0 auto; }
.cp-mini svg { width: 100%; height: 100%; display: block; }

.cp-checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.cp-checks li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: #2E2F29; font-weight: 600; line-height: 1.3; }
.cp-tick { color: var(--cp); font-weight: 900; flex: 0 0 auto; }

.cp-prog-row { display: flex; gap: 8px; }
.cp-prog-item { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cp-prog-ico { width: 34px; height: 34px; color: #55564E; }
.cp-prog-ico svg { width: 100%; height: 100%; display: block; }
.cp-prog-lbl { font-size: 10.5px; line-height: 1.25; color: #55564E; font-weight: 700; }

.cp-cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--cp); color: #fff;
  height: 56px; padding: 0 20px;
  font-family: var(--body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: filter 0.15s ease;
}
.cp-gold .cp-cta { color: #15130A; }
.cp-cta:hover { filter: brightness(1.06); }
.cp-cta .arrow { transition: transform 0.15s ease; }
.cp-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 380px) {
  .cp-choose, .cp-checks { grid-template-columns: 1fr; }
}

/* Align card sub-sections across the row (subgrid) */
@media (min-width: 1041px) {
  .choose-grid { row-gap: 0; }
  .cp-card { display: grid; grid-template-rows: subgrid; grid-row: span 11; row-gap: 0; }
  .cp-body { display: contents; }
  .cp-body > * { margin-left: 26px; margin-right: 26px; }
  .cp-media { grid-row: 1; }
  .cp-kicker { grid-row: 2; margin-top: 30px; }
  .cp-prog { grid-row: 3; }
  .cp-desc { grid-row: 4; }
  .cp-card:not(:has(.cp-choose)) .cp-desc { grid-row: 4 / 7; align-self: center; }
  .cp-label-choose { grid-row: 5; }
  .cp-choose { grid-row: 6; }
  .cp-label-exp { grid-row: 7; }
  .cp-checks { grid-row: 8; }
  .cp-label-prog { grid-row: 9; }
  .cp-prog-row { grid-row: 10; margin-bottom: 20px; }
  .cp-cta { grid-row: 11; align-self: end; }
}

/* ===================== HERO STATS BAR (light strip below hero) ===================== */
.stats-bar {
  background: #F4F4F2;
  color: #15161A;
  border-bottom: 1px solid #E6E6E2;
}
.variant-restrained .stats-bar { background: #FFFFFF; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  position: relative;
  padding: 34px 26px 32px;
  text-align: center;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0; top: 30px; bottom: 30px;
  width: 1px;
  background: #DEDDD6;
}
.stat-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.stat-ico { width: 30px; height: 30px; color: var(--accent); flex: 0 0 auto; }
.stat-ico svg { width: 100%; height: 100%; display: block; }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #15161A;
}
.stat-label {
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #15161A;
  margin-top: 12px;
}
.stat-desc {
  font-size: 13px;
  line-height: 1.45;
  color: #6B6C64;
  margin-top: 8px;
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(odd)::after {
    content: ""; position: absolute; right: 0; top: 30px; bottom: 30px; width: 1px; background: #DEDDD6;
  }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd)::after { display: none; }
  .stat-item { padding: 18px 14px; border-bottom: 1px solid #ECEBE5; }
  .stat-item:nth-child(odd) { border-right: 1px solid #ECEBE5; }
  .stat-item:nth-child(5) { grid-column: 1 / -1; border-right: none; border-bottom: none; padding: 22px 20px; }
  .stat-top { gap: 8px; }
  .stat-ico { width: 24px; height: 24px; }
  .stat-label { margin-top: 8px; }
  .stat-desc { margin-top: 6px; }
}

/* ===================== OUTCOMES ("Your future starts here") ===================== */
.outcomes { background: #F4F4F2; color: #15161A; padding: 84px 0 88px; }
.variant-restrained .outcomes { background: #FFFFFF; }
.oc-head { text-align: center; margin-bottom: 46px; }
.oc-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 0.01em; text-transform: uppercase; color: #15161A;
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.oc-head h2::before, .oc-head h2::after { content: ""; flex: 0 0 auto; width: 54px; height: 3px; background: var(--accent); }
@media (max-width: 640px) { .oc-head h2::before, .oc-head h2::after { width: 28px; } }
.oc-sub { margin-top: 16px; font-size: 16px; color: #55564E; line-height: 1.55; }
.oc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 1180px) { .oc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .oc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .oc-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }
.oc-card {
  position: relative;
  background: #121319;
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.oc-media { height: 160px; background: #000; }
.oc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oc-ico {
  position: absolute; top: 128px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: #121319; border: 2px solid var(--accent);
  display: grid; place-items: center; color: var(--accent); z-index: 2;
}
.oc-ico svg { width: 30px; height: 30px; }
.oc-text { padding: 44px 18px 26px; text-align: center; display: flex; flex-direction: column; align-items: center; flex: 1; }
.oc-text h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 17px; line-height: 1.15; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff;
}
.oc-rule { width: 34px; height: 3px; background: var(--accent); margin: 12px 0 14px; }
.oc-text p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.66); }

/* progression panel */
.oc-progress {
  background: #fff;
  border: 1px solid #E6E6E2;
  border-radius: 14px;
  padding: 32px 24px 36px;
}
.variant-restrained .oc-progress { background: #FBFAF6; }
.oc-progress-head { text-align: center; margin-bottom: 28px; }
.oc-progress-head h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.02em; text-transform: uppercase; color: #15161A;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.oc-progress-head h3::before, .oc-progress-head h3::after { content: ""; flex: 0 0 auto; width: 40px; height: 2px; background: var(--accent); }
.oc-progress-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.oc-pg { padding: 0 30px; }
.oc-pg + .oc-pg { border-left: 1px solid #E6E6E2; }
.oc-pg-head {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; color: #15161A;
}
.oc-pg-ico {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent);
  display: grid; place-items: center; color: var(--accent); flex: 0 0 auto;
}
.oc-pg-ico svg { width: 20px; height: 20px; }
.oc-pg-logos { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.oc-logo { width: 118px; height: 54px; display: flex; align-items: center; justify-content: center; }
.oc-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.oc-logo-slot {
  width: 96px; height: 46px;
  border: 1px dashed #CFCEC6; border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: #A9A89F;
}
.oc-more {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: #15161A;
}
.oc-more .arrow { color: var(--accent); }
@media (max-width: 820px) {
  .oc-progress-grid { grid-template-columns: 1fr; }
  .oc-pg { padding: 0; }
  .oc-pg + .oc-pg { border-left: none; border-top: 1px solid #E6E6E2; padding-top: 28px; margin-top: 28px; }
}

/* ===================== FUTURE BANNER (home closing CTA) ===================== */
.future-banner-wrap { background: var(--bg); padding: 72px 0; }
.future-banner {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: stretch;
  background: #0F0F10;
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  overflow: hidden;
}
.fb-photo { position: relative; min-height: 230px; background: #000; }
.fb-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fb-photo-crest { position: absolute; left: 18px; top: 18px; width: 52px; height: auto; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5)); }
.fb-mid { padding: 38px 44px; display: flex; flex-direction: column; justify-content: center; }
.fb-mid h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; color: #fff;
}
.fb-open { margin-top: 12px; font-family: var(--body); font-weight: 800; font-size: clamp(16px, 1.6vw, 21px); color: #fff; }
.fb-open .gold { color: var(--accent); }
.fb-open { text-wrap: balance; }
.fb-note { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,0.6); max-width: 52ch; }
.fb-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.future-banner .btn-primary { transform: none; }
.future-banner .btn-primary > * { transform: none; }
.future-banner .btn { height: 48px; padding: 0 24px; }
.fb-btn-outline {
  border: 1.5px solid var(--accent);
  color: #fff;
  background: transparent;
}
.fb-btn-outline:hover { background: var(--accent); color: var(--accent-ink); }
.fb-btn-outline .arrow { color: var(--accent); transition: transform 0.15s ease; }
.fb-btn-outline:hover .arrow { color: var(--accent-ink); }
.fb-brand {
  padding: 30px 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.fb-crest { width: 92px; height: auto; }
.fb-tag {
  font-family: var(--display); font-weight: 700;
  font-size: 19px; line-height: 1.12; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff; text-align: center;
}
@media (max-width: 920px) {
  .future-banner { grid-template-columns: 1fr; }
  .fb-photo { min-height: 180px; }
  .fb-brand { flex-direction: row; gap: 18px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); justify-content: flex-start; }
  .fb-tag { text-align: left; }
}
@media (max-width: 560px) {
  .fb-mid { padding: 28px 22px; }
  .fb-open { font-size: 16px; }
  .fb-open .gold { white-space: nowrap; }
  .fb-actions { margin-top: 20px; flex-wrap: nowrap; gap: 10px; }
  .future-banner .fb-actions .btn { flex: 1 1 0; min-width: 0; padding: 0 12px; font-size: 12px; text-align: center; justify-content: center; }
}

/* ===================== TESTIMONIALS ("Meet our learners") ===================== */
.testimonials {
  background: #0A0B0E;
  padding: 84px 0 92px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tm-head { text-align: center; margin-bottom: 46px; }
.tm-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.tm-head h2::before, .tm-head h2::after {
  content: ""; flex: 0 0 auto; width: 54px; height: 2px; background: var(--accent);
}
.tm-row-wrap { display: flex; align-items: center; gap: 14px; }
.tm-grid { flex: 1 1 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tm-card {
  display: flex; align-items: stretch; gap: 18px;
  background: #121319;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  margin: 0;
}
.tm-portrait {
  flex: 0 0 36%;
  align-self: stretch;
  min-height: 158px;
  border-radius: 8px;
  background: linear-gradient(160deg, #1d212b 0%, #0e1014 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: grid; place-items: center;
  overflow: hidden;
}
.tm-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-monogram { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--accent); }
.tm-body { flex: 1 1 auto; display: flex; flex-direction: column; }
.tm-quote-mark { font-family: Georgia, "Times New Roman", serif; font-size: 42px; line-height: 0.5; margin-top: 12px; color: var(--accent); }
.tm-body blockquote { margin: 10px 0 0; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.78); }
.tm-body figcaption {
  margin-top: auto; padding-top: 16px;
  font-family: var(--body); font-weight: 800; font-size: 11.5px;
  letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
}
.tm-body figcaption .gold { color: var(--accent); }
.tm-arrow {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); color: #fff; font-size: 22px; line-height: 1;
  display: grid; place-items: center; background: transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.tm-arrow:hover { border-color: var(--accent); color: var(--accent); }
.tm-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.tm-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; padding: 0; cursor: pointer; transition: background 0.15s ease; }
.tm-dot.is-active { background: var(--accent); }
@media (max-width: 900px) {
  .tm-grid { grid-template-columns: 1fr; }
  .tm-row-wrap .tm-arrow { display: none; }
}

/* ===================== PATHWAY CARDS (picture cards, dark band) ===================== */
.pathway {
  background: #0C0D12;
  color: #F4F4F2;
  padding: 88px 0 96px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.variant-restrained .pathway { background: #14150F; color: #F4F2EC; }
.pathway-head { text-align: center; margin: 0 auto 52px; }
.pathway-eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 14px;
}
.pathway-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.05; letter-spacing: 0.01em;
  text-transform: uppercase; color: #F4F4F2;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.pathway-head h2::before, .pathway-head h2::after {
  content: ""; flex: 0 0 auto; width: 46px; height: 3px; background: var(--accent);
}
@media (max-width: 720px) {
  .pathway-head h2::before, .pathway-head h2::after { display: none; }
}
.pathway-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 920px) { .pathway-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pathway-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  isolation: isolate;
}
.pathway-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
}
.pathway-card:hover .pathway-card-img { transform: scale(1.05); }
.pathway-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,0) 26%, rgba(8,9,12,0.5) 56%, rgba(8,9,12,0.94) 100%);
}
.pathway-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--accent); z-index: 3; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.pathway-card:hover::before { transform: scaleX(1); }
.pathway-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 26px 28px; color: #fff;
}
.pathway-card-overlay h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 26px; letter-spacing: 0.012em; text-transform: uppercase;
  line-height: 1.05; color: #fff;
}
.pathway-card-overlay p { font-size: 14px; color: rgba(255,255,255,0.82); margin-top: 10px; line-height: 1.5; }
.pathway-card-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; color: #fff;
}
.pathway-card-cta .arrow { color: var(--accent); transition: transform 0.15s ease; }
.pathway-card:hover .pathway-card-cta .arrow { transform: translateX(3px); }

/* ===================== DOORWAYS as picture cards (light band) ===================== */
.doorways-band { background: #F4F4F2; color: #15161A; }
.variant-restrained .doorways-band { background: #FFFFFF; }
.doorways-band .section-head h2 { color: #15161A; }
.doorways-band .section-head .lede { color: #55564E; }

.doorway {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.doorway-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
}
.doorway:hover .doorway-img { transform: scale(1.05); }
.doorway-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,0.12) 0%, rgba(8,9,12,0) 30%, rgba(8,9,12,0.55) 62%, rgba(8,9,12,0.94) 100%);
}
.doorway::before { z-index: 3; }
.doorway-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px 22px 24px; color: #fff;
}
.doorway-overlay .doorway-num { color: rgba(255,255,255,0.85); }
.doorway-overlay .doorway-title { color: #fff; margin-top: 0; font-size: 34px; }
.doorway-overlay .doorway-sub { color: var(--accent); }
.doorway-overlay .doorway-meta { border-top-color: rgba(255,255,255,0.24); color: rgba(255,255,255,0.80); }
.doorway-overlay .doorway-meta .go { color: #fff; }

/* ground-shot block (pitch aerial in "One ground" section) */
.ground-shot {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 21 / 9;
}
.ground-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ground-shot-label {
  position: absolute;
  left: 24px; bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.ground-shot-label .pin {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-shadow: none;
}

/* ===================== HOME THEME (Holbeach United FEA: black + gold) ===================== */
.theme-home {
  --bg: #0A0B0E;
  --bg-soft: #121319;
  --bg-elev: #181A21;
  --line: #2A2C34;
  --line-soft: #1D1F26;
  --ink: #F6F6F4;
  --ink-soft: #B7B8B2;
  --ink-mute: #76776F;
  --accent: #F5B400;
  --accent-ink: #15130A;
}
.theme-home .site-header { background: rgba(10, 11, 14, 0.88); }
.theme-home .hero {
  background: linear-gradient(180deg, #0C0D11 0%, #0A0B0E 100%);
}
.theme-home .hero-shade {
  background: linear-gradient(180deg, rgba(10,11,14,0.10) 0%, rgba(10,11,14,0.55) 50%, rgba(10,11,14,0.96) 100%);
}
.theme-home .ph {
  background: #16171C;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(245,180,0,0.05) 0,
      rgba(245,180,0,0.05) 1px,
      transparent 1px,
      transparent 14px);
}
.theme-home .id-strip { background: #0C0D12; }
.theme-home .site-footer { background: #060709; }
.theme-home .doorway { background: #121319; }
.theme-home .doorway:hover { background: #181A21; }
.theme-home .subcard { background: #121319; }
.theme-home .subcard:hover { background: #181A21; }

/* Restrained variant overrides home tint back to cream (variant wins) */
.variant-restrained .theme-home {
  --bg: #F4F2EC;
  --bg-soft: #FFFFFF;
  --bg-elev: #FBFAF6;
  --line: #DFDCD3;
  --line-soft: #ECE9E0;
  --ink: #14150F;
  --ink-soft: #5E5C53;
  --ink-mute: #8C8B82;
}
.variant-restrained .theme-home .hero { background: #F4F2EC; }

/* ===================== VARIANTS ===================== */

/* Energetic — diagonal cuts, more contrast */
.variant-energetic .hero-inner {
  padding: 140px 0 100px;
}
.variant-energetic .hero-title { letter-spacing: -0.025em; }
.variant-energetic .hero-shade {
  background:
    linear-gradient(115deg, rgba(11,12,15,0.10) 0%, rgba(11,12,15,0.10) 38%, rgba(11,12,15,0.95) 38.4%, rgba(11,12,15,0.92) 100%);
}
.variant-energetic .doorway::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  background: var(--accent);
  opacity: 0.10;
  transform: rotate(45deg);
}
.variant-energetic .id-strip { background: var(--accent); color: var(--accent-ink); }
.variant-energetic .id-strip-row { color: var(--accent-ink); }
.variant-energetic .id-strip-row .now { color: var(--accent-ink); }
.variant-energetic .id-strip-row .swatch { background: var(--accent-ink); }
.variant-energetic .btn-primary { transform: skewX(-6deg); }
.variant-energetic .btn-primary > * { transform: skewX(6deg); }

/* Restrained — editorial, lighter, more whitespace */
.variant-restrained {
  --bg: #F4F2EC;
  --bg-soft: #FFFFFF;
  --bg-elev: #FBFAF6;
  --line: #DFDCD3;
  --line-soft: #ECE9E0;
  --ink: #14150F;
  --ink-soft: #5E5C53;
  --ink-mute: #8C8B82;
  --silver: #5E5C53;
}
.variant-restrained body { background: var(--bg); }
.variant-restrained .site-header {
  background: rgba(244, 242, 236, 0.86);
}
.variant-restrained .hero-shade {
  background: linear-gradient(180deg, rgba(244,242,236,0) 0%, rgba(244,242,236,0.50) 55%, rgba(244,242,236,0.96) 100%);
}
.variant-restrained .ph {
  background: #E6E3DA;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 16px);
}
.variant-restrained .ph .ph-label { color: rgba(0,0,0,0.5); }
.variant-restrained .hero-inner { padding: 140px 0 100px; }
.variant-restrained .hero-title { font-weight: 400; letter-spacing: -0.025em; }
.variant-restrained .footer { background: #ECE9E0; }
.variant-restrained .site-footer { background: #ECE9E0; }
.variant-restrained .btn-ghost { border-color: var(--ink); color: var(--ink); }
.variant-restrained .btn-primary { background: var(--ink); color: var(--bg); }
.variant-restrained .id-strip { background: #ECE9E0; }
.variant-restrained .doorway { background: #fff; }
.variant-restrained .doorway:hover { background: #FBFAF6; }
.variant-restrained .subcard { background: #fff; }
.variant-restrained .subcard:hover { background: #FBFAF6; }

/* utility */
.spacer-32 { height: 32px; }
.spacer-64 { height: 64px; }

/* Ofsted badge (home hero) */
.nh-fcard-media img[src*="photo-home-compete"] { object-position: center 22%; }
.nh-ofsted { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; text-decoration: none; color: #fff; }
.nh-ofsted img { width: 52px; height: 52px; border-radius: 8px; display: block; border: 2px solid var(--accent); }
.nh-ofsted span { font-family: var(--body); font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; opacity: 0.9; }
.nh-ofsted strong { color: var(--accent); font-weight: 800; }
.nh-ofsted:hover span { opacity: 1; }

/* mobile: bias card image crops toward the top so faces stay in frame */
@media (max-width: 520px) {
  .nh-fcard-media img { object-position: center 30%; }
  .nh-fcard-media img[src*="photo-home-play"] { object-position: center 12%; }
  .pathway-card-img, .doorway-img, .cp-media img, .oc-media img,
  .ws-intern-media img, .ws-prog-media img, .rs-addon-media img, .fs-pillar-media img,
  .fs-xp-media img, .fs-story-media img, .fs-complete-media img, .uni-path-media img,
  .uni-career img, .jp-age-media img, .ab-founder-media img, .ab-diff-media img,
  .ab-pillar-media img { object-position: center 18%; }
}

/* mobile header fixes */
@media (max-width: 520px) {
  .brand-wordmark { display: none; }
  .header-row { gap: 12px; }
  .footer-col li a { display: inline-block; padding: 4px 0; }
  .footer-lockup .sub { font-size: 8.5px; letter-spacing: 0.12em; }
}
@media (max-width: 480px) {
  .uni-hero .nh-title { font-size: 38px; }
}

/* mobile nav button icon */
.menu-icon { width: 16px; height: 12px; position: relative; display: inline-block; }
.menu-icon::before, .menu-icon::after, .menu-icon span {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 2px; background: var(--ink);
}
.menu-icon::before { top: 0; }
.menu-icon::after { bottom: 0; }
.menu-icon span { top: 5px; }

/* tweaks panel small adjustments */
.tweak-section-row { font-size: 13px; }

/* secondary nav strip under header (sub-nav for current section) */
.subnav {
  background: #0E0F13;
  border-bottom: 1px solid var(--line-soft);
}
.subnav-row {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}
.subnav-row::-webkit-scrollbar { display: none; }
.subnav-link {
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid transparent;
}
.subnav-link:hover { color: var(--ink); }
.subnav-link.is-active {
  color: var(--accent);
  border-color: var(--accent);
}
.variant-restrained .subnav { background: #ECE9E0; }

/* ===================== REAL IMAGERY (sourced from prospectuses) ===================== */

/* Sub-page hero banner (real photo) */
.subpage-hero {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 21 / 9;
}
.subpage-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) { .subpage-hero { aspect-ratio: 16 / 10; } }

/* Cutout-figure hero (transparent player PNG over a branded field) */
.subpage-hero.is-cutout {
  background:
    radial-gradient(ellipse 70% 90% at 78% 60%, color-mix(in oklab, var(--accent) 32%, #0B0C0F) 0%, #0B0C0F 60%),
    linear-gradient(180deg, #111319 0%, #0B0C0F 100%);
}
.subpage-hero.is-cutout::before {
  content: "TRAIN. STUDY. PROGRESS.";
  position: absolute;
  left: 7%; top: 50%;
  transform: translateY(-50%);
  max-width: 9ch;
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
  z-index: 1;
}
.subpage-hero.is-cutout > img {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: auto;
  height: 116%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
}
@media (max-width: 720px) {
  .subpage-hero.is-cutout > img { right: 0; height: 108%; opacity: 0.92; }
  .subpage-hero.is-cutout::before { font-size: 30px; }
}

/* "On the ground" photo row on section landings */
.photo-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.photo-row .photo-cell {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
}
.photo-row .photo-cell.lead { aspect-ratio: auto; grid-row: span 1; }
.photo-row .photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2,0,0.1,1);
}
.photo-row .photo-cell:hover img { transform: scale(1.04); }
@media (max-width: 820px) {
  .photo-row { grid-template-columns: 1fr 1fr; }
  .photo-row .photo-cell.lead { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

/* Facilities gallery (sub-page) */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .facility-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .facility-grid { grid-template-columns: 1fr; } }
.facility-cell {
  margin: 0;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
}
.facility-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2,0,0.1,1);
}
.facility-cell:hover img { transform: scale(1.04); }
.facility-cell figcaption {
  position: absolute;
  left: 14px; bottom: 12px; right: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
  z-index: 1;
}
.facility-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75) 100%);
}
.facility-cell figcaption { z-index: 2; }

/* safeguarding */
.sg-body { padding: 56px 0 96px; }
.sg-body .eyebrow, .eyebrow-gold { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.sg-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .sg-grid { grid-template-columns: 1fr; gap: 36px; } }
.sg-grid p, .sg-policies-head p { font-size: 16px; line-height: 1.7; margin-top: 14px; color: var(--ink-soft); max-width: 58ch; }
.sg-report { border: 1px solid var(--line); border-radius: 8px; padding: 24px 26px; background: var(--bg-soft); }
.sg-contact strong { color: var(--ink); }
.sg-urgent { font-weight: 700; color: var(--ink); }
.sg-policies-head { margin-top: 64px; }
.sg-policies { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .sg-policies { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .sg-policies { grid-template-columns: 1fr; } }
.sg-policy { display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); border-radius: 8px; padding: 22px; text-decoration: none; color: inherit; transition: border-color 0.15s ease, transform 0.15s ease; }
.sg-policy:hover { border-color: var(--accent); transform: translateY(-2px); }
.sg-policy-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); padding: 9px; }
.sg-policy-ico svg { width: 100%; height: 100%; display: block; }
.sg-policy-body { display: flex; flex-direction: column; gap: 6px; }
.sg-policy-org { font-family: var(--body); font-weight: 800; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.sg-policy-title { font-family: var(--body); font-weight: 800; font-size: 15px; line-height: 1.3; color: var(--ink); }
.sg-policy-desc { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.sg-policy-cta { margin-top: 4px; font-family: var(--body); font-weight: 800; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

/* success stories */
.st-body { padding: 56px 0 80px; }
.st-media { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; background: #0F1014; border: 1px solid var(--line); }
.st-media iframe, .st-media video { width: 100%; height: 100%; display: block; border: 0; }
.st-media-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.st-play { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #15130A; display: grid; place-items: center; padding: 16px; }
.st-play svg { width: 100%; height: 100%; display: block; }
.st-empty-label { font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.st-featured { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .st-featured { grid-template-columns: 1fr; gap: 24px; } }
.st-pathway { font-family: var(--body); font-weight: 800; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.st-name { margin-top: 8px; font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.st-quote { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 44ch; }
.st-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
@media (max-width: 760px) { .st-grid { grid-template-columns: 1fr; } .st-body.container { padding-left: 34px; padding-right: 34px; } }
.st-card .st-meta { margin-top: 14px; }
.st-card .st-name { font-size: 20px; }
.st-card .st-quote { font-size: 14px; }

/* Open Evenings strip */
.open-evenings {
  border-top: 1px solid var(--line-soft);
  padding: 80px 0;
  background: var(--bg-soft);
}
.oe-head { max-width: 60ch; margin-bottom: 40px; }
.oe-head .eyebrow { display: block; margin-bottom: 16px; }
.oe-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.oe-head .lede { font-size: 17px; color: var(--ink-soft); margin-top: 14px; }
.oe-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 720px) { .oe-dates { grid-template-columns: 1fr; } }
.oe-date {
  background: var(--bg);
  padding: 28px 24px;
  border-top: 3px solid var(--accent);
}
.oe-date .d {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.005em;
}
.oe-date .t {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ===================== DISPLAY WEIGHT NORMALIZATION (Oswald) =====================
   Anton was a single 400 weight; Oswald needs explicit 600/700 to read heavy. */
.display,
.stat .k, .doorway-title, .subcard .t, .footer-lockup,
.oe-date .d, .brand-wordmark, .brand-mark,
.brand-stack .bw-1, .brand-stack .bw-2,
.subpage-hero.is-cutout::before {
  font-weight: 600;
}
.hero-title, .home-hero-title, .page-header h1,
.section-head h2, .cta-strip h3, .oe-head h2,
.subpage-body h2, .apply-success h3, .pillar h3 {
  font-weight: 600;
}
.hero-title, .home-hero-title, .page-header h1 { font-weight: 700; }
/* Oswald is taller than Anton — open up the tightest line-heights a touch */
.hero-title { line-height: 0.98; }
.section-head h2 { line-height: 1.0; }
.page-header h1 { line-height: 0.98; }
.doorway-title { line-height: 1.02; }
.cta-strip h3 { line-height: 1.0; }
.oe-head h2 { line-height: 1.0; }

/* ===================== JPL ACADEMY PAGE ===================== */
.jp-hero .fs-hero-photo img { object-position: 60% 32%; }
.jp-hero .fs-hero-inner { padding-bottom: 56px; }

/* hero feature strip */
.jp-strip { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(8,9,12,0.55); backdrop-filter: blur(6px); }
.jp-strip-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 18px 0; }
@media (max-width: 1100px) { .jp-strip-row { grid-template-columns: repeat(3, 1fr); gap: 16px 0; } }
@media (max-width: 900px) { .jp-strip-row { grid-template-columns: repeat(2, 1fr); gap: 16px 0; } }
.jp-strip-item { display: flex; align-items: center; gap: 12px; padding: 2px 18px; }
.jp-strip-item + .jp-strip-item { border-left: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .jp-strip-item + .jp-strip-item { border-left: none; } .jp-strip-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.12); } }
.jp-strip-ico { flex: 0 0 auto; width: 30px; height: 30px; color: var(--accent); }
.jp-strip-ico svg { width: 100%; height: 100%; }
.jp-strip-t { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; }
.jp-strip-d { font-size: 11.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* pathway strip (light band) */
.jp-path { background: #F1F1EF; padding: 56px 0 60px; }
.jp-path-title {
  font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.03em; text-transform: uppercase; color: #15161A;
  text-align: center; margin-bottom: 38px;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.jp-path-title::before, .jp-path-title::after { content: ""; flex: 0 0 auto; width: 52px; height: 2px; background: var(--accent); }
@media (max-width: 640px) { .jp-path-title::before, .jp-path-title::after { width: 22px; } }
.jp-path-row { display: flex; align-items: stretch; gap: 8px; }
@media (max-width: 980px) { .jp-path-row { flex-direction: column; align-items: center; } }
.jp-path-step { flex: 1 1 0; text-align: center; padding: 8px 10px; border-radius: 10px; transition: background 0.15s ease; }
.jp-path-step:hover { background: rgba(0,0,0,0.045); }
@media (max-width: 980px) { .jp-path-step { max-width: 380px; } }
.jp-path-ico {
  display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 12px;
  border-radius: 50%; border: 2px solid #15161A; color: #15161A;
}
.jp-path-step.is-here .jp-path-ico { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.jp-path-ico svg { width: 28px; height: 28px; }
.jp-path-t { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: #15161A; }
.jp-path-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #6E6F66; margin-top: 3px; }
.jp-path-step p { font-size: 12px; line-height: 1.5; color: #55564E; margin-top: 8px; max-width: 24ch; margin-left: auto; margin-right: auto; }
.jp-path-arrow { align-self: center; flex: 0 0 auto; color: var(--accent); font-size: 22px; font-weight: 700; }
@media (max-width: 980px) { .jp-path-arrow { transform: rotate(90deg); } }

/* age group cards */
.jp-ages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .jp-ages { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .jp-ages { grid-template-columns: repeat(2, 1fr); } }
.jp-age { display: block; border-radius: 10px; overflow: hidden; background: #121319; border: 1px solid rgba(255,255,255,0.07); transition: border-color 0.15s ease, transform 0.15s ease; }
.jp-age:hover { border-color: var(--accent); transform: translateY(-2px); }
.jp-age-static:hover { border-color: rgba(255,255,255,0.07); transform: none; }
.jp-age-media { aspect-ratio: 4/3; overflow: hidden; background: #1A1C24; }
.jp-age-media image-slot { color: rgba(255,255,255,0.6); }
.jp-age-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.45); }
.jp-age-ph svg { width: 30px; height: 30px; }
.jp-age-ph span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.jp-age-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jp-age-body { padding: 14px 16px 18px; }
.jp-age-label { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--accent); }
.jp-age-body p { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.62); margin-top: 6px; }
.jp-age-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: #fff; }
.jp-age-cta .arrow { color: var(--accent); transition: transform 0.15s ease; }
.jp-age:hover .jp-age-cta .arrow { transform: translateX(3px); }

/* values strip */
.jp-values { border-top: 1px solid rgba(255,255,255,0.1); background: #07080A; }
.jp-values-row { display: grid; grid-template-columns: repeat(5, 1fr); padding: 18px 0; }
@media (max-width: 900px) {
  .jp-values-row { grid-template-columns: repeat(2, max-content); justify-content: center; column-gap: 34px; row-gap: 0; padding: 10px 0; }
}
.jp-value { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 2px 12px; }
.jp-value + .jp-value { border-left: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .jp-value + .jp-value { border-left: none; } }
.jp-value-ico { flex: 0 0 auto; width: 26px; height: 26px; color: var(--accent); }
.jp-value-ico svg { width: 100%; height: 100%; }
.jp-value-t { font-family: var(--body); font-weight: 800; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.jp-value-d { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; }
@media (max-width: 900px) {
  .jp-values { overflow: hidden; }
  .jp-value:nth-child(even) { border-left: none; }
  .jp-value { justify-content: flex-start; gap: 0; padding: 11px 0; position: relative; }
  .jp-value:nth-child(3)::before, .jp-value:nth-child(5)::before { content: ""; position: absolute; top: 0; left: -50vw; right: -50vw; height: 1px; background: rgba(255,255,255,0.08); }
  .jp-value:nth-child(5) { grid-column: 1 / -1; justify-content: center; }
  .jp-value-ico { width: 20px; height: 20px; margin-right: 14px; }
}

/* ===================== COMPETE PAGE ===================== */
.cp-hero .fs-hero-photo img { object-position: 72% 58%; }

/* pathway badges (roundels with initials) */
.cp-path-badge {
  display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 12px;
  border-radius: 50%; background: #15161A; color: var(--accent);
  font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: 0.02em;
  border: 2px solid #15161A;
}
.cp-path-badge.is-star svg { width: 28px; height: 28px; }
.cp-path-row .jp-path-step p { max-width: 22ch; }
.cp-path-foot {
  margin-top: 34px; text-align: center;
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase; color: #15161A;
}

/* programme card sub */
.cp-xp-sub { color: rgba(255,255,255,0.55); }

/* leagues strip */
.cp-leagues { background: #F1F1EF; padding: 52px 0 56px; }
.cp-leagues-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.cp-leagues-row .cp-league { flex: 0 1 170px; }
@media (max-width: 560px) { .cp-leagues-row .cp-league { flex-basis: 40%; } }
.cp-league { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.cp-league-logo { height: 72px; display: flex; align-items: center; justify-content: center; }
.cp-league-logo img { max-height: 100%; max-width: 120px; object-fit: contain; display: block; }
.cp-league-roundel {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  border: 2px solid #15161A; color: #15161A;
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.03em;
}
.cp-league-lbl { font-family: var(--body); font-weight: 800; font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #15161A; max-width: 18ch; line-height: 1.35; }

/* recent success strip */
.cp-success {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(245,180,0,0.35); border-radius: 12px; padding: 22px 10px;
}
@media (max-width: 1000px) { .cp-success { grid-template-columns: repeat(2, 1fr); gap: 18px 0; } }
.cp-success-item { display: flex; align-items: center; gap: 12px; padding: 2px 18px; }
.cp-success-item + .cp-success-item { border-left: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 1000px) { .cp-success-item + .cp-success-item { border-left: none; } .cp-success-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.1); } }
.cp-success-ico { flex: 0 0 auto; width: 32px; height: 32px; color: var(--accent); }
.cp-success-ico svg { width: 100%; height: 100%; }
.cp-success-t { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.cp-success-d { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* facilities */
.cp-fac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .cp-fac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cp-fac-grid { grid-template-columns: 1fr; } }
.cp-fac-head { display: flex; align-items: center; gap: 10px; }
.cp-fac-ico { flex: 0 0 auto; width: 26px; height: 26px; color: var(--accent); display: grid; place-items: center; border: 1.5px solid var(--accent); border-radius: 6px; padding: 3px; }
.cp-fac-ico svg { width: 100%; height: 100%; }

/* first team appearances */
.cp-ft { display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .cp-ft { grid-template-columns: 1fr; gap: 30px; } }
.cp-ft-intro h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.04; letter-spacing: 0.02em; text-transform: uppercase; color: #fff;
}
.cp-ft-intro p, .cp-ft-lede { margin-top: 16px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.62); max-width: 40ch; }
.cp-ft-intro p.cp-ft-lede { color: rgba(255,255,255,0.62); }
.cp-ft-lede .gold-lede { color: var(--accent); font-weight: 700; }
.cp-ft-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 28px; }
@media (max-width: 1100px) { .cp-ft-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cp-ft-list { grid-template-columns: 1fr; } }
.cp-ft-list li { display: flex; align-items: baseline; gap: 10px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.cp-ft-num { flex: 0 0 20px; font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--accent); }
.cp-ft-name { flex: 1 1 auto; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.86); }
.cp-ft-season { font-family: var(--mono); font-size: 10.5px; color: rgba(255,255,255,0.42); }

/* ===================== ABOUT PAGE (Meet the Founders) ===================== */
.ab .gold { color: var(--accent); }
.ab-block { padding: 80px 0; border-top: 1px solid var(--line-soft); }
@media (max-width: 720px) { .ab-block { padding: 56px 0; } }
.ab-h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 40px); line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink); margin-top: 14px; }
.ab-head { text-align: center; margin-bottom: 42px; }
.ab-head h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.ab-head h2::before, .ab-head h2::after { content: ""; flex: 0 0 auto; width: 46px; height: 2px; background: var(--accent); }
@media (max-width: 640px) { .ab-head h2::before, .ab-head h2::after { width: 18px; } }
.ab-head-left { text-align: left; margin-bottom: 30px; }
.ab-head-left h2 { justify-content: flex-start; }
.ab-head-left h2::after { display: none; }
.ab-ico { display: block; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); padding: 10px; }
.ab-ico svg { width: 100%; height: 100%; display: block; }
.ab-ico-sm { width: 34px; height: 34px; padding: 7px; }

/* hero */
.ab-hero { position: relative; overflow: hidden; background: #07080C; border-bottom: 1px solid var(--line-soft); }
.ab-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ab-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.ab-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,12,0.96) 0%, rgba(7,8,12,0.72) 55%, rgba(7,8,12,0.35) 100%); }
.ab-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
@media (max-width: 900px) { .ab-hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; padding-bottom: 56px; } }
.ab-hero-title { font-weight: 700; font-size: clamp(52px, 7vw, 104px); margin-top: 18px; }
.ab-hero-sub { margin-top: 22px; font-size: clamp(15px, 1.4vw, 19px); font-weight: 600; line-height: 1.55; color: var(--ink-soft); }
.ab-hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.ab-hero-actions .btn { height: 48px; padding: 0 22px; }
.ab-hero-media { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); }
.ab-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 22%; }
.ab-hero-media image-slot { width: 100%; height: 100%; display: block; color: var(--ink-mute); }

/* story */
.ab-story-inner { max-width: 760px; }
.ab-story-inner p { margin: 16px 0 0; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.ab-story-chips { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.ab-path { margin-top: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ab-path-step {
  font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: var(--bg-elev); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
}
.ab-path-arrow { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }
.ab-path-arrow svg { width: 100%; height: 100%; display: block; }
.ab-path-note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 14px; }

/* purpose */
.ab-purpose { background: var(--bg-soft); }
.ab-purpose-grid { display: grid; grid-template-columns: 0.8fr 1.6fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .ab-purpose-grid { grid-template-columns: 1fr; gap: 36px; } }
.ab-purpose-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 720px) { .ab-purpose-cols { grid-template-columns: 1fr; } }
.ab-purpose-text p { margin: 14px 0 0; font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 58ch; }
.ab-purpose-text .ab-goal { font-weight: 700; color: var(--ink); }

/* founders */
.ab-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 800px) { .ab-founders { grid-template-columns: 1fr; } }
.ab-founder { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.ab-founder-media { aspect-ratio: 4/3; background: var(--bg-elev); border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.ab-founder-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.ab-founder-media img[src*="photo-founder-callum"] { object-position: center 30%; }
.ab-founder-media image-slot { width: 100%; height: 100%; display: block; color: var(--ink-mute); }
.ab-founder-body { padding: 26px 28px 30px; }
.ab-founder-body h3 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.ab-founder-role { margin-top: 6px; font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.ab-founder-bio { margin-top: 16px; }
.ab-founder-bio p { margin: 12px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.ab-founders-note { margin: 40px auto 0; text-align: center; max-width: 64ch; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.ab-check { flex: 0 0 auto; width: 18px; height: 18px; color: var(--accent); margin-top: 2px; }
.ab-check svg { width: 100%; height: 100%; display: block; }

/* facilities slideshow */
.ab-slides { max-width: 980px; margin: 0 auto; }
.ab-slides-track { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: #101114; }
.ab-slides-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.ab-slides-track img.on { opacity: 1; }
.ab-slides-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; background: rgba(0,0,0,0.55); color: #fff; font-size: 26px; line-height: 1; display: grid; place-items: center; padding-bottom: 4px; }
.ab-slides-btn:hover { background: var(--accent); color: #15161A; }
.ab-slides-btn.prev { left: 14px; }
.ab-slides-btn.next { right: 14px; }
.ab-slides-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 40px 18px 14px; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); color: #fff; font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.ab-slides-count { color: var(--accent); }
.ab-slides-dots { margin-top: 16px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.ab-slides-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0; background: #D8D6CE; }
.ab-slides-dots button.on { background: var(--accent); }

/* different */
.ab-diff { background: var(--bg-soft); }
.ab-diff-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .ab-diff-grid { grid-template-columns: 1fr; gap: 36px; } }
.ab-diff-list > p { margin: 14px 0 0; font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 56ch; }
.ab-sign { margin-top: 30px; }
.ab-sign-name { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.ab-sign-role { margin-top: 5px; font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.ab-diff-items { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; }
@media (max-width: 560px) { .ab-diff-items { grid-template-columns: 1fr; } }
.ab-diff-item { display: flex; gap: 16px; align-items: flex-start; }
.ab-diff-item .ab-ico { flex: 0 0 auto; }
.ab-diff-item h4 { font-family: var(--body); font-weight: 800; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); }
.ab-diff-item p { margin-top: 6px; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }
.ab-diff-media { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.ab-diff-media img { width: 100%; height: 100%; object-fit: cover; }

/* pillars */
.ab-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .ab-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ab-pillars { grid-template-columns: 1fr; } }
.ab-pillar { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; padding-bottom: 22px; text-align: center; }
.ab-pillar-media { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line-soft); margin-bottom: 18px; }
.ab-pillar-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.ab-pillar h3 { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.ab-pillar p { margin: 8px 18px 0; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }

/* numbers */
.ab-numbers { background: var(--bg-soft); }
.ab-numbers-row { margin-top: 28px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }
@media (max-width: 1000px) { .ab-numbers-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ab-numbers-row { grid-template-columns: repeat(2, 1fr); } }
.ab-stat-n { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 4vw, 56px); line-height: 1; color: var(--accent); }
.ab-stat-l { margin-top: 8px; font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); max-width: 16ch; }
.ab-badge { display: flex; flex-direction: column; gap: 10px; font-family: var(--body); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); max-width: 18ch; }

/* vision */
.ab-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .ab-vision-grid { grid-template-columns: 1fr; gap: 36px; } }
.ab-vision-text p { margin-top: 16px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); max-width: 52ch; }
.ab-vision-chips { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.ab-chip { font-family: var(--body); font-weight: 800; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--bg-elev); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; }
.ab-vision-media { aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); }
.ab-vision-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-vision-media image-slot { width: 100%; height: 100%; display: block; color: var(--ink-mute); }
