/* 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 20px; } }

/* ---------- 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; }

@media (max-width: 1240px) {
  .nav { display: none; }
  .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: var(--bg); flex-direction: column; padding: 24px; gap: 0; z-index: 60; }
  .nav-open .nav-link { height: 56px; font-size: 18px; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .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(--ink-mute);
  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-lockup {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.005em;
  line-height: 0.92;
}
.footer-lockup .sub {
  display: block;
  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;
  width: 50%;
  z-index: 0;
}
.home-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 66% 24%;
  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: 88px;
  padding-bottom: 64px;
}
.home-hero-text { max-width: 680px; }
@media (max-width: 980px) { .home-hero-inner { padding-top: 64px; padding-bottom: 56px; } .home-hero-text { max-width: 100%; } }
.home-hero .hero-eyebrow { margin-bottom: 20px; }
.home-hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: 0.002em;
  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: 26px;
  max-width: 46ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
}
.home-hero .hero-actions { margin-top: 32px; }
.home-hero .btn-primary { transform: none; }
.home-hero .btn-primary > * { transform: none; }

/* hero feature row */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-feature {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding-right: 16px;
}
.hero-feature + .hero-feature {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.hero-feature .ico {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  color: var(--accent);
  margin-top: 1px;
}
.hero-feature .ico svg { width: 100%; height: 100%; display: block; }
.hero-feature h4 {
  font-family: var(--body);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.hero-feature p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-mute);
  margin-top: 5px;
}
@media (max-width: 720px) {
  .hero-features { grid-template-columns: 1fr; gap: 18px; padding-top: 22px; }
  .hero-feature { padding-right: 0; }
  .hero-feature + .hero-feature { border-left: none; padding-left: 0; }
}

/* ===================== PATHWAY CARDS (light contrast band) ===================== */
.pathway {
  background: #F4F4F2;
  color: #15161A;
  padding: 88px 0 96px;
  border-bottom: 1px solid #E6E6E2;
}
.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: #D89A00;
  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: #15161A;
  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 {
  background: #fff;
  border: 1px solid #E6E6E2;
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pathway-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(0,0,0,0.14); }
.pathway-card-media { position: relative; aspect-ratio: 16/10; background: #000; overflow: hidden; }
.pathway-card-media img { width: 100%; height: 100%; object-fit: cover; }
.pathway-card-ico {
  position: absolute; left: 18px; top: 18px;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent); color: #15130A;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
}
.pathway-card-ico svg { width: 26px; height: 26px; }
.pathway-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.pathway-card-body h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 21px; letter-spacing: 0.015em; text-transform: uppercase;
  color: #15161A; line-height: 1.12;
}
.pathway-card-body p { font-size: 14.5px; color: #55564E; margin-top: 10px; line-height: 1.5; }
.pathway-checks { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pathway-checks li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: 13.5px; color: #2E2F29; font-weight: 600; align-items: start;
}
.pathway-checks li .ck { color: #15161A; font-weight: 900; line-height: 1.4; }
.pathway-card .pathway-cta { margin-top: auto; padding-top: 24px; }
.pathway-card .pathway-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; color: #15161A;
}
.pathway-card .pathway-cta a .arrow { color: #C28A00; transition: transform 0.15s ease; }
.pathway-card:hover .pathway-cta a .arrow { transform: translateX(3px); }

/* 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; }

/* 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; }

/* 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; }
