/* =============================================================
   Scots in the USA - site stylesheet
   Identity: navy ground (both crests), Future Pro red as the
   action accent, YFS gold as the Scottish accent.
   ============================================================= */

:root {
  /* Brand */
  --navy-900: #08152b;
  --navy-800: #0e2244;
  --navy-700: #17335f;
  --navy-600: #23477d;
  --red: #d22630;
  --red-dark: #ab1d26;
  --gold: #c9a24d;
  --gold-soft: #e3c98c;

  /* Neutrals - cool bias toward the navy */
  --paper: #f6f7f9;
  --paper-2: #ffffff;
  --ink: #0d1626;
  --ink-soft: #4a5769;
  --ink-faint: #7d8899;
  --rule: #dfe3e9;
  --rule-strong: #c6ccd6;

  /* Type */
  --display: "Anton", "Haettenschweiler", "Arial Narrow", sans-serif;
  --ui: "Archivo", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  /* Running text (standfirsts, article body, intros) uses the same modern sans
     as the rest of the UI - kept as its own token so it can diverge later. */
  --serif: "Archivo", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(8, 21, 43, 0.06), 0 4px 12px -6px rgba(8, 21, 43, 0.14);
  --shadow-md: 0 2px 4px rgba(8, 21, 43, 0.08), 0 18px 40px -20px rgba(8, 21, 43, 0.35);

  --wrap: 1200px;
  --radius: 3px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 16px;
  font-weight: 700;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------
   Header
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-800); /* the site's mid navy - navy-900 read as near-black */
  border-bottom: 3px solid var(--red);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-crests { display: flex; align-items: center; gap: 6px; }
.brand-crests img { height: 40px; width: auto; }
.brand-name {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}
.brand-name .in { color: var(--gold); }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #c3cede;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.site-nav a.is-current { color: #fff; box-shadow: inset 0 -3px 0 var(--gold); }

.btn-cta {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff !important;
  padding: 12px 18px !important;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--red-dark) !important; }

/* Sticky announcement bar - sits inside the sticky header, under the menu row. */
.promo-bar {
  display: block;
  background: var(--gold);
  color: var(--navy-900);
  text-decoration: none;
  text-align: center;
  padding: 9px 16px;
  transition: background 0.15s ease;
}
.promo-bar .promo-inner {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.promo-bar strong { font-weight: 700; }
.promo-bar .promo-cta { font-weight: 700; text-decoration: underline; white-space: nowrap; }
.promo-bar .promo-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-left: 10px;
  white-space: nowrap;
  vertical-align: middle;
  transition: background 0.15s ease;
}
.promo-bar:hover .promo-btn { background: var(--red-dark); }
.promo-bar:hover { background: #f0be3f; }
.promo-bar:hover .promo-cta { text-decoration: none; }
.promo-bar-alt { background: var(--red); color: #fff; }
.promo-bar-alt .promo-cta { color: #fff; }
.promo-bar-alt:hover { background: var(--red-dark); }
@media (max-width: 560px) { .promo-bar .promo-inner { font-size: 11.5px; letter-spacing: 0; } }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius);
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header .wrap { height: 66px; }
  .brand-name { font-size: 19px; }
  .brand-crests img { height: 32px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-700);
    border-bottom: 3px solid var(--red);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .btn-cta { text-align: center; margin-top: 6px; }
}

/* -------------------------------------------------------------
   Hero (home)
   ------------------------------------------------------------- */
/* Ben Dalglish with the saltire, dropped back behind a navy wash so the
   headline stays legible. Swap the image path below to change the hero shot. */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--navy-700);
  background-image:
    linear-gradient(
      100deg,
      rgba(8, 21, 43, 0.95) 0%,
      rgba(8, 21, 43, 0.9) 34%,
      rgba(11, 28, 56, 0.78) 58%,
      rgba(14, 34, 68, 0.62) 100%
    ),
    url("../assets/img/hero/ben-dalglish-saltire.jpg");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
/* The saltire motif that used to be drawn here is now in the photo itself. */

.hero .wrap {
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 52px;
    gap: 36px;
  }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-intro {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: #c8d3e2;
  max-width: 54ch;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-block;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline { border-color: var(--rule-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--navy-800); background: #fff; }

/* Hero stat block - sits over the photo, so it needs its own dark ground. */
.hero-stats {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--gold);
  background: rgba(8, 21, 43, 0.72);
  backdrop-filter: blur(3px);
  padding: 28px 28px 30px;
}
.hero-stats .n {
  font-family: var(--display);
  font-weight: 400;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-stats .l {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-stats-lead {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fa5c2;
  margin: 0;
}
.hero-stats-hero {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 6px 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stats-hero .n { font-size: 68px; }
.hero-stats-hero .l { font-size: 17px; letter-spacing: 0.1em; }

.hero-stats-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-stats-list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.hero-stats-list .n { font-size: 30px; }

/* -------------------------------------------------------------
   Page head (interior pages)
   ------------------------------------------------------------- */
.page-head {
  background: var(--navy-900);
  color: #fff;
  padding: 56px 0;
  border-bottom: 4px solid var(--gold);
}
.page-head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 10px 0 14px;
  text-wrap: balance;
}
.page-head p {
  font-family: var(--serif);
  font-size: 18px;
  color: #c8d3e2;
  max-width: 62ch;
  margin: 0;
}
.page-head .eyebrow { color: var(--gold); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}

/* -------------------------------------------------------------
   Sections
   ------------------------------------------------------------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy-900);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.section-head .more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy-700);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
}
.section-head .more:hover { color: var(--red); }
.section-head .more::after { content: " \2192"; }

/* -------------------------------------------------------------
   Category chips
   ------------------------------------------------------------- */
.chip {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
  color: #fff;
  background: var(--navy-700);
  white-space: nowrap;
}
.chip[data-cat="Signing Announcements"] { background: var(--red); }
.chip[data-cat="Journey to the USA"] { background: var(--navy-600); }
.chip[data-cat="College Confirmed"] { background: #1c6b4b; }
.chip[data-cat="Stateside Achievements"] { background: var(--gold); color: var(--navy-900); }
.chip[data-cat="Interviews"] { background: #5a3e85; }

.chip-sample {
  background: repeating-linear-gradient(
    -45deg, #fff3cd, #fff3cd 6px, #ffe8a8 6px, #ffe8a8 12px
  );
  color: #6b5311;
  border: 1px solid #d9be74;
}

/* -------------------------------------------------------------
   News cards
   ------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .news-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .news-grid .story-card h3 { font-size: 28.8px; } }

.story-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rule-strong);
}
.story-card .shot {
  display: block; /* span: aspect-ratio is ignored while it stays inline */
  position: relative;
  aspect-ratio: 1 / 1; /* Twitter photos are square - show them in full */
  background: var(--navy-800);
  overflow: hidden;
}
.story-card .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.story-card:hover .shot img { transform: scale(1.04); }
/* Darkened top (for the headline) and bottom (for the pills), clear in the middle. */
.story-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8, 21, 43, 1) 0%, rgba(8, 21, 43, 0.4) 24%, rgba(8, 21, 43, 0) 44%,
    rgba(8, 21, 43, 0.115) 60%, rgba(8, 21, 43, 1) 100%);
}
.story-card .headline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 15px 16px 0;
  z-index: 2;
}
.story-card h3 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}
.story-card .date-pill {
  display: inline-block;
  margin-top: 9px;
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}
.story-card .pills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  z-index: 2;
}
.pill-player {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff;
  color: var(--navy-900);
  padding: 5px 9px;
  border-radius: 2px;
  white-space: nowrap;
}

/* -------------------------------------------------------------
   Filters
   ------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--ink-soft);
  padding: 10px 15px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter:hover { border-color: var(--navy-700); color: var(--navy-900); }
.filter.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

/* -------------------------------------------------------------
   Directory filter bar
   ------------------------------------------------------------- */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy-900);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 1000px) { .filter-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .filter-bar { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.field select,
.field input[type="search"] {
  font-family: var(--ui);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 11px 12px;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field input[type="search"] {
  cursor: text;
  background-image: none;
  appearance: auto;
}
.field select:hover,
.field input[type="search"]:hover { border-color: var(--navy-700); }
.field select:focus,
.field input[type="search"]:focus { border-color: var(--navy-900); background: var(--paper-2); }

.filter-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 2px 24px;
}
#player-count {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.reset {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 40px;
  cursor: pointer;
}
.reset:hover { border-color: var(--red); color: var(--red); }

.filter-status-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

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

/* Active filters that have no dropdown (e.g. a college chosen from the map). */
.active-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 2px 0; }
.chip-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--gold-wash, #f7efdd);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  border-radius: 40px;
  padding: 7px 12px 7px 13px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.chip-filter .chip-k {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.chip-filter .chip-x { font-size: 16px; line-height: 1; color: var(--ink-soft); }
.chip-filter:hover { border-color: var(--red); background: #fff; }
.chip-filter:hover .chip-x { color: var(--red); }

/* Grid / Map toggle */
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--rule-strong);
  border-radius: 40px;
  overflow: hidden;
  background: var(--paper-2);
}
.view-btn {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.view-btn + .view-btn { border-left: 1px solid var(--rule-strong); }
.view-btn:hover { color: var(--navy-900); }
.view-btn.is-active { background: var(--navy-900); color: #fff; }

/* -------------------------------------------------------------
   Map view
   ------------------------------------------------------------- */
.map-wrap {
  position: relative;
  background: var(--navy-900);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.usmap { width: 100%; height: auto; display: block; overflow: visible; }
/* Zoomed state view: a landscape block, state centred and fully visible in one
   screen rather than scaled to full width (which made tall states overflow). */
.map-wrap.is-focus .usmap { height: 58vh; max-height: 540px; }
.usmap-states path {
  fill: var(--navy-700);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
  transition: fill 0.12s ease;
}
.usmap-states .has-players { cursor: pointer; }
.usmap-states .has-players:hover { fill: var(--navy-600); }
.usmap-states .is-focus { fill: var(--navy-600); }

/* State abbreviation labels (full view). Rendered above the pins with a dark
   halo so the name is never hidden; centroid labels don't intercept clicks so
   the pins beneath stay clickable, while called-out NE labels are clickable. */
.state-label text { text-anchor: middle; pointer-events: none; }
.sl-abbr {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 12px;
  fill: #fff;
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: var(--navy-900);
  stroke-width: 3px;
  stroke-linejoin: round;
}
.sl-abbr-ext { text-anchor: start; }
.sl-leader {
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.6;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}
.state-external { cursor: pointer; outline: none; }
.state-external text { pointer-events: auto; }
.state-external:hover .sl-abbr,
.state-external:focus-visible .sl-abbr { fill: var(--gold); }
.state-label:focus-visible .sl-abbr { text-decoration: underline; }

/* Player count inside a college pin */
.pin-count {
  font-family: var(--ui);
  font-weight: 700;
  fill: var(--navy-900);
  text-anchor: middle;
  pointer-events: none;
}

.map-focus-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.map-back {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  border-radius: 40px;
  padding: 9px 16px;
  cursor: pointer;
}
.map-back:hover { border-color: var(--navy-800); }
.map-focus-pill {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-wash, #f7efdd);
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  border-radius: 40px;
  padding: 9px 16px;
}

.usmap-pins .pin { cursor: pointer; outline: none; }
.usmap-pins circle {
  fill: var(--gold);
  stroke: var(--navy-900);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transition: fill 0.12s ease, stroke 0.12s ease;
}
.usmap-pins .pin:hover circle,
.usmap-pins .pin:focus-visible circle { fill: var(--red); }
.usmap-pins .pin:hover .pin-count,
.usmap-pins .pin:focus-visible .pin-count { fill: #fff; }
.usmap-pins .pin:focus-visible circle { stroke: #fff; stroke-width: 2.4; }

.map-tip {
  position: absolute;
  transform: translate(-50%, calc(-100% - 14px));
  background: #fff;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  pointer-events: none;
  z-index: 5;
  max-width: 260px;
}
.map-tip strong { display: block; font-size: 14.5px; color: var(--ink); line-height: 1.25; }
.map-tip .tip-meta {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 3px 0 8px;
}
.map-tip .tip-players { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.map-tip .tip-players li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.3; }
.map-tip .tip-more { font-weight: 700; color: var(--ink-faint); }

.map-note {
  margin: 16px 2px 0;
  font-size: 13px;
  color: var(--ink-faint);
}

/* Scotland (hometown) map. Portrait, so it is sized by height and centred;
   the SVG viewBox preserves aspect so it never distorts on narrow screens. */
.map-scot { display: flex; justify-content: center; }
.scotmap {
  width: auto;
  max-width: 100%;
  height: clamp(420px, 66vh, 620px);
  display: block;
  overflow: visible;
}
.scotmap-areas path {
  fill: var(--navy-700);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
}
.scotmap-pins .pin { cursor: pointer; outline: none; }
.scotmap-pins circle {
  fill: var(--gold);
  stroke: var(--navy-900);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transition: fill 0.12s ease, stroke 0.12s ease;
}
.scotmap-pins .pin:hover circle,
.scotmap-pins .pin:focus-visible circle { fill: var(--red); }
.scotmap-pins .pin:hover .pin-count,
.scotmap-pins .pin:focus-visible .pin-count { fill: #fff; }
.scotmap-pins .pin:focus-visible circle { stroke: #fff; stroke-width: 2.4; }

/* -------------------------------------------------------------
   Player cards / directory
   ------------------------------------------------------------- */
.player-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .player-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .player-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .player-grid { grid-template-columns: 1fr; } }

.player-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--navy-900);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.player-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.player-card .shot {
  display: block; /* span: aspect-ratio is ignored while it stays inline */
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
/* Temporary photos come in at mixed sizes (mostly square). They are stretched
   to fill the 3:4 frame rather than cropped, so every card matches. Swap this
   to `object-fit: cover` once real portraits replace them. */
.player-card .shot img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.45s ease;
}
.player-card:hover .shot img { transform: scale(1.05); }

/* Silhouette stand-in: sits still, and the name gets a solid ground to
   read against since there is no photo behind it. */
.player-card.no-photo:hover .shot img { transform: none; }
.player-card.no-photo .shade {
  background: linear-gradient(to top, rgba(8, 21, 43, 0.98) 0%, rgba(8, 21, 43, 0.7) 40%, rgba(8, 21, 43, 0.1) 75%);
}
.player-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 21, 43, 0.95) 0%, rgba(8, 21, 43, 0.55) 32%, rgba(8, 21, 43, 0) 62%);
}
.player-card .pos {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 5px 9px;
  border-radius: 2px;
}
.player-card .id {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  color: #fff;
}
.player-card .id .name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.player-card .id .where {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* -------------------------------------------------------------
   Player profile
   ------------------------------------------------------------- */
.profile-hero {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 78% 40%, rgba(35, 71, 125, 0.6), transparent 70%);
}
.profile-hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: end;
  padding-top: 48px;
  padding-bottom: 0;
}
@media (max-width: 820px) {
  .profile-hero .wrap {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 32px;
    align-items: start;
  }
}

.profile-portrait {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  aspect-ratio: 3 / 4;
}
@media (max-width: 820px) {
  .profile-portrait { max-width: 220px; border-radius: var(--radius); border-bottom: 1px solid rgba(255,255,255,.14); }
}
.profile-portrait img { width: 100%; height: 100%; object-fit: fill; }
.profile-portrait.is-placeholder { border-style: dashed; }

.block p.stub {
  font-style: italic;
  color: var(--ink-faint);
}

.profile-id { padding-bottom: 40px; }
.profile-id .back {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb1c8;
  text-decoration: none;
  margin-bottom: 20px;
}
.profile-id .back:hover { color: #fff; }
.profile-id .back::before { content: "\2190  "; }

.profile-id .flagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.profile-id h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.profile-id h1 .last { display: block; color: var(--gold); }
.profile-id .now {
  font-family: var(--serif);
  font-size: 19px;
  color: #c8d3e2;
  margin: 0;
}

/* Stat strip */
.stat-strip {
  background: var(--navy-800);
  border-top: 3px solid var(--red);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 24px;
}
@media (max-width: 760px) { .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat .k {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa5c2;
}
.stat .v {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
/* Social Media column: Instagram link sits on the dark strip, so it needs light text. */
.stat-social .v { font-size: 16px; min-height: 1.2em; }
.stat-social .ig-link { color: #fff; font-size: 15px; font-weight: 700; }
.stat-social .ig-link:hover { color: var(--gold); }

/* Profile body */
.profile-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .profile-body { grid-template-columns: 1fr; gap: 40px; } }

.block + .block { margin-top: 44px; }
.block h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy-900);
}
.block p {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 65ch;
}
.block p:first-of-type { margin-top: 0; }

/* Achievements */
.honours { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.honour {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.honour .mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 50%;
  flex-shrink: 0;
}
.honour .mark svg { width: 16px; height: 16px; }
.honour .t {
  display: block;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.3;
}
.honour .c {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 3px;
}
.honour .yr {
  font-family: var(--display);
  font-size: 20px;
  color: var(--navy-600);
  font-variant-numeric: tabular-nums;
}

/* Colleges (sidebar) */
.rail {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy-900);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.rail + .rail { margin-top: 24px; }
.rail h2 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 16px;
}
.college-list { list-style: none; margin: 0; padding: 0; }
.college-list li + li { margin-top: 2px; padding-top: 14px; border-top: 1px solid var(--rule); margin-top: 14px; }
.college-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.35;
}
.college-list a:hover { color: var(--red); }
.college-list a .go {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.college-list a:hover .go { color: var(--red); }

/* College name + its US state, plus non-linked colleges */
.col-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.col-name { font-weight: 600; font-size: 15.5px; line-height: 1.3; }
.col-state {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.college-list .col-plain {
  display: block;
  color: var(--ink);
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--navy-700);
  font-weight: 600;
  font-size: 15px;
}
.ig-link svg { width: 20px; height: 20px; }
.ig-link:hover { color: var(--red); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 13px;
  font-weight: 600;
  background: var(--navy-900);
  color: #fff;
  padding: 8px 12px;
  border-radius: 40px;
}
a.tag-link {
  text-decoration: none;
  transition: background 0.15s ease;
}
a.tag-link:hover { background: var(--red); }

.rail-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy-700);
  text-decoration: none;
}
.rail-more::after { content: " \2192"; }
.rail-more:hover { color: var(--red); }

/* Video */
.video { margin: 0; }
.video + .video { margin-top: 20px; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-900);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
}
.video figcaption a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy-700);
  text-decoration: none;
  white-space: nowrap;
}
.video figcaption a:hover { color: var(--red); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  aspect-ratio: 3 / 2;
  cursor: zoom-in;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.gallery figure:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 21, 43, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
}
.lightbox .close:hover { background: rgba(255, 255, 255, 0.12); }

/* -------------------------------------------------------------
   Article
   ------------------------------------------------------------- */
.article-head { background: var(--navy-900); color: #fff; padding: 44px 0 0; }
.article-head .inner { max-width: 820px; }
/* Block, so the category chip below it starts on its own line. */
.article-head .back {
  display: block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb1c8;
  text-decoration: none;
  margin-bottom: 18px;
}
.article-head .chip { display: inline-block; }
.article-head .back:hover { color: #fff; }
.article-head .back::before { content: "\2190  "; }
.article-head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.04;
  text-transform: uppercase;
  margin: 14px 0 16px;
  text-wrap: balance;
}
.article-head .standfirst {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: #c8d3e2;
  margin: 0 0 24px;
}
.article-head .byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fa5c2;
  padding-bottom: 30px;
}

/* Two columns: the story, and a rail promoting trial days and other stories. */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 44px; }
}

.article-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 128px; /* clears the sticky header + announcement bar */
}
@media (max-width: 980px) {
  .article-rail { position: static; }
}

/* Trial-day promo */
.promo {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--red);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.promo .eyebrow { color: var(--gold); }
.promo h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 4px 0 2px;
  text-wrap: balance;
}
.promo p {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.55;
  color: #c8d3e2;
  margin: 0 0 6px;
}
.promo .btn { text-align: center; margin-top: 4px; }

/* Sidebar story list */
.side-list { display: flex; flex-direction: column; }
.side-story {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.side-story:first-child { padding-top: 0; }
.side-story:last-child { border-bottom: 0; padding-bottom: 4px; }
.side-story .thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--navy-800);
}
.side-story .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.side-story .cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.side-story .t {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.side-story:hover .t { color: var(--navy-700); }
.side-story .d {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.rail-note {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.article-shot .frame {
  aspect-ratio: 1 / 1; /* square, to match the Twitter photos */
  max-width: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-800);
}
.article-shot .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Interview articles embed the YouTube video in place of the still photo. */
.article-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-800);
}
.article-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.article-body {
  max-width: 68ch;
  padding: 36px 0 20px;
}
.article-body p {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.7;
  color: #26313f;
  margin: 0 0 24px;
}

.article-tags {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.article-tags h2 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 12px;
}

.sample-note {
  margin: 28px 0 0;
  background: #fff8e5;
  border: 1px solid #e6cf8f;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: #6b5311;
}
.sample-note strong { font-weight: 700; }

.article-foot {
  margin-top: 32px;
  border-top: 2px solid var(--navy-900);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.article-foot .lockup { display: flex; align-items: center; gap: 10px; }
.article-foot .lockup img { height: 40px; width: auto; }
.article-foot .lockup span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* -------------------------------------------------------------
   CTA band - "Play in the USA"
   ------------------------------------------------------------- */
.cta-band {
  background: var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -6%;
  width: 420px;
  height: 420px;
  border: 44px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}
.cta-band .wrap {
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .cta-band .wrap { grid-template-columns: 1fr; gap: 24px; }
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
  text-transform: uppercase;
  margin: 10px 0 12px;
  text-wrap: balance;
}
.cta-band p {
  font-family: var(--serif);
  font-size: 17.5px;
  color: #c8d3e2;
  margin: 0;
  max-width: 56ch;
}
.cta-band .eyebrow { color: var(--gold); }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .actions .btn { text-align: center; }

/* Routes (Play in the USA page) */
.routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .routes { grid-template-columns: 1fr; } }
.route {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.route:nth-child(2) { border-top-color: var(--gold); }
.route h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0;
}
.route p {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.route ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.route ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-soft);
}
.route ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--navy-700);
  transform: rotate(45deg);
}
.route .btn { margin-top: auto; align-self: flex-start; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step .n {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: var(--rule-strong);
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 16.5px;
  margin: 0;
}
.step p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Partner band */
.partners {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.partners .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partners .lock {
  display: flex;
  align-items: center;
  gap: 14px;
}
.partners .lock img { height: 62px; width: auto; }
.partners .lock .t {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  max-width: 140px;
  line-height: 1.4;
}
.partners .amp {
  font-family: var(--display);
  font-size: 30px;
  color: var(--rule-strong);
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #93a4bd;
  padding: 56px 0 32px;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer .brand-name { font-size: 26px; margin-bottom: 12px; display: block; }
.site-footer p { font-family: var(--serif); font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 46ch; }
.site-footer h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer ul a { text-decoration: none; font-size: 15px; }
.site-footer ul a:hover { color: #fff; }
.site-footer .legal {
  padding-top: 24px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #6c7d96;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.empty {
  padding: 60px 24px;
  text-align: center;
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius);
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 17px;
}

/* -------------------------------------------------------------
   Play in the USA - free evaluation offer
   ------------------------------------------------------------- */
.eval { background: var(--navy-900); color: #fff; padding: 0; }
.eval .wrap { padding: 64px 24px 136px; }
.eval-grid {
  display: grid;
  grid-template-columns: 1fr 452px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .eval-grid { grid-template-columns: 1fr; gap: 32px; } }

.eval-copy .eyebrow { color: var(--gold); }
.eval h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 14px 0 24px;
  text-wrap: balance;
}
.eval-points { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.eval-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #d6deea;
}
.eval-points svg { width: 24px; height: 24px; margin-top: 1px; }
.eval-note { font-weight: 700; color: #fff; margin: 0; font-size: 16px; }

/* Next-event banner on the trials page */
.next-event {
  position: relative;
  margin: 0 0 26px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-900);
}
.next-event img { display: block; width: 100%; height: 190px; object-fit: cover; }
.next-event figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 26px 18px 14px;
  background: linear-gradient(to top, rgba(8, 21, 43, 0.94) 20%, rgba(8, 21, 43, 0));
}
.next-event .ne-label {
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.next-event .ne-detail {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

/* -------------------------------------------------------------
   Forms
   ------------------------------------------------------------- */
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px 28px 30px;
}
.form-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--ink);
}
.site-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field .req { color: var(--red); }

.site-form input,
.site-form select {
  font-family: var(--ui);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 12px 13px;
  width: 100%;
  min-width: 0;
}
.site-form input::placeholder { color: var(--ink-faint); }
.site-form input:hover,
.site-form select:hover { border-color: var(--navy-700); }
.site-form input:focus,
.site-form select:focus {
  outline: none;
  border-color: var(--navy-800);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 34, 68, 0.12);
}
.site-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 34px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.site-form select:invalid { color: var(--ink-faint); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .field-row { grid-template-columns: 1fr; } }
.dob-row { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 10px; }

.phone-row { display: flex; }
.phone-cc {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}
.phone-row input { border-radius: 0 var(--radius) var(--radius) 0; }

.form-submit { margin-top: 4px; width: 100%; text-align: center; cursor: pointer; border: 0; }

.form-status { margin: 2px 0 0; font-size: 13.5px; line-height: 1.45; }
.form-status:empty { display: none; }
.form-status.is-note { color: var(--ink-soft); }
.form-status.is-ok { color: #1c6b4b; font-weight: 600; }
.form-status.is-err { color: var(--red); font-weight: 600; }

/* -------------------------------------------------------------
   Testimonials carousel
   ------------------------------------------------------------- */
.tsm-sec { padding: 60px 0; background: var(--paper); }
.tsm-carousel { position: relative; }
.tsm-carousel:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: var(--radius); }
.tsm-viewport { overflow: hidden; border-radius: var(--radius); }
.tsm-track { display: flex; transition: transform 0.45s ease; }
@media (prefers-reduced-motion: reduce) { .tsm-track { transition: none; } }
.tsm-slide { flex: 0 0 100%; min-width: 0; margin: 0; }

.tsm-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 760px) { .tsm-card { grid-template-columns: 1fr; } }

.tsm-photo { background: var(--navy-800); }
.tsm-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 760px) {
  .tsm-photo { aspect-ratio: 16 / 9; }
  .tsm-photo img { object-position: center 25%; }
}

.tsm-body {
  padding: 34px 38px 32px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tsm-mark {
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 6px;
}
.tsm-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 8px 0 20px;
  max-width: 62ch;
}
.tsm-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.tsm-name a { text-decoration: none; color: inherit; }
.tsm-name a:hover { color: var(--red); }
.tsm-meta {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.tsm-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.tsm-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: var(--paper-2);
  color: var(--navy-800);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tsm-nav:hover { border-color: var(--navy-800); background: #fff; }
.tsm-dots { display: flex; gap: 9px; }
.tsm-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--rule-strong);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.tsm-dot:hover { transform: scale(1.2); }
.tsm-dot.is-active { background: var(--red); }

/* -------------------------------------------------------------
   The full journey (timeline)
   ------------------------------------------------------------- */
.journey-sec { padding: 64px 0; }
.journey-intro {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 4px 0 40px;
}
.journey-video { max-width: 760px; margin: 0 0 44px; }

.journey { list-style: none; margin: 0; padding: 0; }
.jstep { position: relative; padding-left: 78px; padding-bottom: 34px; }
.jstep::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 8px;
  bottom: -8px;
  width: 2px;
  background: var(--rule-strong);
}
.jstep:last-child { padding-bottom: 0; }
.jstep:last-child::before { display: none; }
.jbadge {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  background: var(--navy-800);
  font-variant-numeric: tabular-nums;
}
.jstep:last-child .jbadge { background: var(--gold); color: var(--navy-900); }
.jbody h3 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 4px 0 8px;
}
.jbody p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 72ch;
  margin: 0;
}
@media (max-width: 560px) {
  .jstep { padding-left: 62px; }
  .jbadge { width: 46px; height: 46px; font-size: 19px; }
  .jstep::before { left: 22px; }
}

/* -------------------------------------------------------------
   Club & school partnerships
   ------------------------------------------------------------- */
.partner-sec { padding: 8px 0 64px; }
.partner-box {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: center;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  padding: 40px;
}
@media (max-width: 900px) { .partner-box { grid-template-columns: 1fr; gap: 28px; padding: 30px; } }
.partner-box .eyebrow { color: var(--gold); }
.partner-box h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.04;
  text-transform: uppercase;
  margin: 10px 0 14px;
}
.partner-box-copy p { color: #c8d3e2; font-size: 16px; line-height: 1.55; margin: 0 0 10px; }
.partner-box-copy p:last-child { margin-bottom: 0; }
.partner-box .form-card { border-top-color: var(--navy-600); }

/* Reusable promo strip (home, club and school pages) */
.partner-strip { background: var(--navy-800); color: #fff; }
.partner-strip .wrap { padding: 42px 24px; }
.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.partner-strip .eyebrow { color: var(--gold); }
.partner-strip h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 8px 0 8px;
}
.partner-strip p { color: #c8d3e2; margin: 0; max-width: 58ch; font-size: 15.5px; }
.partner-strip .btn { white-space: nowrap; }
