/* ==========================================================================
   LYPS — London Youth Premier Showcase
   ========================================================================== */

:root {
  --ink: #07102b;
  --ink-2: #0c1a45;
  --ink-3: #13245c;
  --royal: #2f4fe0;
  --royal-deep: #1b33b0;
  --royal-glow: #5b78ff;
  --gold: #b8924e;
  --gold-bright: #dcb46a;
  --paper: #f3f5fb;
  --white: #ffffff;
  --text: #0b1433;
  --text-soft: #4a5578;
  --line: #e1e5f0;
  --on-dark: #eef1fb;
  --on-dark-soft: rgba(238, 241, 251, 0.7);

  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --angle: 5vw;
  --shadow: 0 18px 40px -18px rgba(7, 16, 43, 0.35);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: var(--royal); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.i { width: 1.1em; height: 1.1em; flex-shrink: 0; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--royal);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

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

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--light { color: var(--on-dark); }
.eyebrow--gold { color: var(--gold-bright); }

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-top: 0.6rem;
}
.section-title em { font-style: italic; color: var(--royal); }
.section-lead {
  max-width: 62ch;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 1.075rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn .i { transition: transform 0.25s var(--ease); }
.btn:hover .i { transform: translateX(3px); }
.btn:hover { transform: translateY(-1px); }

.btn--royal { background: var(--royal); color: var(--white); box-shadow: 0 10px 24px -12px rgba(47, 79, 224, 0.8); }
.btn--royal:hover { background: var(--royal-deep); }
.btn--gold { background: var(--gold-bright); color: var(--ink); }
.btn--gold:hover { background: var(--white); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--gold-bright); }
.btn--outline-light { border: 2px solid rgba(255, 255, 255, 0.7); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }
.btn--outline { border: 2px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--royal);
}
.text-link:hover .i { transform: translateX(3px); }
.text-link .i { transition: transform 0.25s var(--ease); }

/* ---------- Club bar ---------- */

.club-bar {
  background: var(--ink);
  color: var(--on-dark-soft);
  font-size: 0.8rem;
}
.club-bar__inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 46px;
}
.club-bar__label {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
}
.club-bar__crests { display: flex; gap: 0.35rem; }
.club-bar__crests a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.club-bar__crests a:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.club-bar__crests img { width: 28px; height: 28px; object-fit: contain; }
.club-bar__util {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}
.club-bar__util a {
  color: var(--on-dark-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.club-bar__util a:hover { color: var(--white); }
.club-bar__social a { display: grid; place-items: center; }
.club-bar__social .i { width: 16px; height: 16px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(7, 16, 43, 0.45); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 78px;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__inner { height: 66px; }
.brand img { height: 46px; width: auto; transition: height 0.3s var(--ease); }
.site-header.is-scrolled .brand img { height: 40px; }

.primary-nav { margin-left: auto; height: 100%; }
.primary-nav ul { display: flex; height: 100%; gap: 0.2rem; }
.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.7rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: var(--royal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--royal); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--royal); }

.header-cta { padding: 0.7rem 1.2rem; font-size: 1rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  position: relative;
  border-radius: 50%;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--drawer-top, 78px);
  z-index: 49;
  background: var(--ink);
  color: var(--white);
  overflow-y: auto;
  padding: 1.5rem var(--gutter) 3rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0s 0.3s;
}
body.nav-open .drawer { opacity: 1; transform: none; visibility: visible; transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0s; }
.drawer__primary a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.drawer__primary a[aria-current="page"] { color: var(--gold-bright); }
.drawer__util { margin: 1.5rem 0; display: grid; gap: 0.75rem; }
.drawer__util a { color: var(--on-dark-soft); text-decoration: none; font-weight: 500; }

@media (max-width: 1180px) {
  .primary-nav a { padding: 0 0.5rem; font-size: 1rem; }
  .primary-nav a::after { left: 0.5rem; right: 0.5rem; }
}
@media (max-width: 1060px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .drawer { display: block; pointer-events: none; }
  body.nav-open .drawer { pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .club-bar__util li:not(.club-bar__social) { display: none; }
}
@media (max-width: 560px) {
  .club-bar__label { display: none; }
  .club-bar__crests { gap: 0.1rem; }
  .site-header__inner { height: 68px; }
  .brand img { height: 38px; }
}

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  min-height: min(90vh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--angle)), 0 100%);
  padding: 8rem 0 calc(7rem + var(--angle));
}
.hero__media, .hero__media video, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 43, 0.95) 0%, rgba(7, 16, 43, 0.7) 45%, rgba(7, 16, 43, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 16, 43, 0.9) 0%, rgba(7, 16, 43, 0) 50%);
}
.hero__stripe {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 55%;
  height: 140%;
  background: linear-gradient(180deg, rgba(47, 79, 224, 0.55), rgba(47, 79, 224, 0));
  transform: skewX(-18deg);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: end;
  gap: 3rem;
}
.hero__content:not(:has(.matchday-card)) { grid-template-columns: 1fr; }

.matchday-card {
  border-radius: var(--radius);
  background: rgba(7, 16, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.matchday-card__head {
  padding: 1.1rem 1.25rem;
  background: linear-gradient(120deg, var(--royal-deep), var(--royal));
}
.matchday-card__kicker {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.matchday-card__head strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.matchday-card__venue { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); }
.matchday-card ul { padding: 0.35rem 1.25rem; }
.fixture {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fixture:last-child { border-bottom: 0; }
.fixture__team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.2;
}
.fixture__team--away { justify-content: flex-end; text-align: right; }
.fixture__team img, .fixture__team .monogram { width: 30px; height: 30px; flex-shrink: 0; object-fit: contain; }
.fixture__team .monogram { font-size: 10px; box-shadow: inset 0 0 0 1.5px var(--gold-bright); }
.fixture__time {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.matchday-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.matchday-card__link:hover { background: rgba(255, 255, 255, 0.08); color: var(--gold-bright); }
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.season-badge b {
  background: var(--gold-bright);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.08em;
}
.hero h1 {
  margin-top: 1.4rem;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.88;
  max-width: 11ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero__lead {
  margin-top: 1.5rem;
  max-width: 50ch;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--on-dark-soft);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* ---------- Quick tiles ---------- */

.tiles {
  position: relative;
  z-index: 3;
  margin-top: calc(-4rem - var(--angle));
}
.tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 16, 43, 0.95) 10%, rgba(7, 16, 43, 0.2) 70%);
  transition: background 0.3s;
}
.tile:hover img { transform: scale(1.06); }
.tile:hover::before { background: linear-gradient(0deg, rgba(27, 51, 176, 0.95) 10%, rgba(27, 51, 176, 0.25) 75%); }
.tile__kicker {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-bright);
}
.tile__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0.3rem;
}
.tile__title .i {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.tile:hover .tile__title .i { transform: translateX(4px); background: var(--gold-bright); }

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark .section-lead { color: var(--on-dark-soft); }
.section--dark .section-title em { color: var(--gold-bright); }
.section--tight { padding-top: clamp(2.5rem, 5vw, 4rem); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section--dark .text-link { color: var(--gold-bright); }

/* ---------- Stat band ---------- */

.stat-band {
  position: relative;
  background: var(--royal);
  color: var(--white);
  overflow: hidden;
}
.stat-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.05) 0 14px, transparent 14px 28px);
}
.stat-band__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.4rem 1rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:first-child { border-left: 0; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Crest row ---------- */

.monogram {
  --size: 48px;
  display: grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--ink-2));
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: calc(var(--size) * 0.34);
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 calc(var(--size) * 0.05) var(--gold-bright);
  flex-shrink: 0;
}
.club-bar__crests .monogram { width: 28px; height: 28px; font-size: 10px; box-shadow: inset 0 0 0 1.5px var(--gold-bright); }
.crest-row .monogram { width: 84px; height: 84px; font-size: 1.8rem; }
.club-card__crest .monogram { width: 130px; height: 130px; font-size: 2.8rem; }

.crest-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.crest-row a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.8rem 1rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.crest-row a:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.crest-row img { width: 84px; height: 84px; object-fit: contain; }
.crest-row span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 16, 43, 0.75);
  color: var(--white);
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
}
.split__tag {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: var(--gold-bright);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.bridge {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.bridge__line {
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--gold-bright));
  border-radius: 3px;
}
.bridge__core {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 1.15rem;
}
.section--dark .bridge__core { background: var(--royal); color: var(--white); }

.pillars { display: grid; gap: 1rem; margin-top: 1.5rem; }
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.pillar__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--royal);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.pillar strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.pillar p { color: var(--text-soft); }
.section--dark .pillar p { color: var(--on-dark-soft); }

/* ---------- Champions ---------- */

.champ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.champ-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.champ-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-bright);
}
.champ-card__comp {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--on-dark-soft);
}
.champ-card__name { position: relative; z-index: 1; margin-top: 1rem; max-width: 85%; }
.champ-card__winner {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--white);
}
.champ-card__name .feat { margin-top: 0.55rem; }

.feat {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  vertical-align: middle;
}
.champ-card__icon {
  position: absolute;
  right: -10px;
  bottom: -14px;
  color: rgba(220, 180, 106, 0.18);
}
.champ-card__icon .i { width: 110px; height: 110px; }

/* ---------- Films ---------- */

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.film-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  color: var(--white);
  text-decoration: none;
  background: var(--ink-2);
  isolation: isolate;
}
.film-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.film-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 16, 43, 0.95), rgba(7, 16, 43, 0) 65%);
}
.film-card:hover img { transform: scale(1.05); }
.film-card__play {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.film-card:hover .film-card__play { transform: scale(1.1); background: var(--gold-bright); }
.film-card__meta { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.2rem; }
.film-card__meta span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.film-card__meta strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 0.25rem;
}

/* ---------- Founder ---------- */

.founder {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.founder__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--royal), var(--gold-bright));
}
.founder__headline {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-top: 1rem;
}
.founder__name {
  margin-top: 1.25rem;
  font-weight: 700;
}
.founder__name span { display: block; font-weight: 500; color: var(--text-soft); font-size: 0.95rem; }
.section--dark .founder__name span { color: var(--on-dark-soft); }
.creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.creds li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border-left: 3px solid var(--royal);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
}
.creds li span { display: block; font-weight: 400; color: var(--text-soft); font-size: 0.85rem; margin-top: 0.25rem; }
.section--dark .creds li { background: rgba(255, 255, 255, 0.06); border-left-color: var(--gold-bright); }
.section--dark .creds li span { color: var(--on-dark-soft); }

/* ---------- Page hero ---------- */

.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: clamp(5rem, 11vw, 8.5rem) 0 calc(clamp(3.5rem, 7vw, 5rem) + var(--angle));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--angle)), 0 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg, .page-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 43, 0.96) 0%, rgba(7, 16, 43, 0.75) 50%, rgba(7, 16, 43, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 16, 43, 0.6), rgba(7, 16, 43, 0) 60%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -30%;
  width: 40%;
  height: 160%;
  background: linear-gradient(180deg, rgba(47, 79, 224, 0.5), rgba(47, 79, 224, 0));
  transform: skewX(-18deg);
  z-index: -1;
  pointer-events: none;
}
.page-hero--plain {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%);
  padding-top: clamp(4rem, 8vw, 6rem);
}
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  margin-top: 0.9rem;
  max-width: 14ch;
}
.page-hero__lead {
  margin-top: 1.1rem;
  max-width: 56ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--on-dark-soft);
}

/* ---------- Match centre (League Lobster) ---------- */

.match-centre {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.match-centre__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: var(--white);
}
.match-centre__bar > div:first-child { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.match-centre__bar strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.match-centre__sub { color: var(--on-dark-soft); font-size: 0.85rem; }
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22d36b;
  box-shadow: 0 0 0 0 rgba(34, 211, 107, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 107, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34, 211, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 107, 0); }
}
.match-centre__tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.match-centre__tabs button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
  transition: background 0.2s, color 0.2s;
}
.match-centre__tabs button[aria-selected="true"] { background: var(--white); color: var(--ink); }
.match-centre__tabs button:hover:not([aria-selected="true"]) { color: var(--white); }
.match-centre__stage { min-height: 520px; background: var(--white); position: relative; }
.match-centre__stage iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.match-centre__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-weight: 500;
}
.match-centre__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--text-soft);
}
.match-centre__foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Format / timeline ---------- */

.format {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.format__step {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: step;
}
.section--dark .format__step { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); }
.format__step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--royal);
  opacity: 0.25;
}
.section--dark .format__step::before { color: var(--gold-bright); opacity: 0.5; }
.format__step h3 { font-size: 1.6rem; margin-top: 0.6rem; }
.format__step p { margin-top: 0.5rem; color: var(--text-soft); font-size: 0.95rem; }
.section--dark .format__step p { color: var(--on-dark-soft); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.section--dark .chip { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.14); }

/* ---------- Clubs ---------- */

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.club-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  scroll-margin-top: 120px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.club-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.club-card:target { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(47, 79, 224, 0.25), var(--shadow); }
.club-card__num {
  position: absolute;
  right: 1.25rem;
  top: 0.6rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--paper);
}
.club-card__crest {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--paper) 55%, transparent 56%);
}
.club-card__crest img { width: 130px; height: 130px; object-fit: contain; }
.club-card h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-top: 0.5rem; position: relative; }
.club-card__links { display: flex; gap: 1.25rem; margin-top: 1rem; }
.club-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.cta-panel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--royal-deep), var(--royal));
  color: var(--white);
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.05) 0 14px, transparent 14px 28px);
}
.cta-panel > * { position: relative; }
.cta-panel h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-panel p { color: rgba(255, 255, 255, 0.85); margin-top: 0.4rem; max-width: 55ch; }

/* ---------- Honours ---------- */

.season-tabs {
  position: sticky;
  top: 66px;
  z-index: 10;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.9rem 0;
  margin-bottom: 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.season-tabs::-webkit-scrollbar { display: none; }
.season-tabs button {
  flex-shrink: 0;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  color: var(--text-soft);
  transition: all 0.2s;
}
.season-tabs button:hover { border-color: var(--ink); color: var(--ink); }
.season-tabs button[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }

.season { scroll-margin-top: 150px; }
.js .season[hidden] { display: none; }
.season + .season { margin-top: 3.5rem; }
.js .season + .season { margin-top: 0; }
.season__head { margin-bottom: 1.75rem; }
.season__head h2 { font-size: clamp(3rem, 7vw, 5rem); margin-top: 0.4rem; }
.honour-group + .honour-group { margin-top: 2rem; }
.honour-group h3 {
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}
.trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}
.trophy-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.trophy-card:hover { background: var(--white); border-color: var(--gold); }
.trophy-card__icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
}
.trophy-card__comp { font-size: 0.8rem; color: var(--text-soft); font-weight: 500; }
.trophy-card .feat { margin-top: 0.3rem; font-size: 0.72rem; }
.trophy-card__winner {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.05;
}

/* ---------- Media page ---------- */

.feature-film {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  scroll-margin-top: 120px;
}
.player video { width: 100%; height: 100%; object-fit: cover; }
.film-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.film-item { scroll-margin-top: 120px; }
.film-item .player { aspect-ratio: 16 / 10; }
.film-item h3 { font-size: 1.7rem; margin-top: 1rem; }
.film-item p { color: var(--on-dark-soft); margin-top: 0.3rem; font-size: 0.95rem; }
.film-item .eyebrow { margin-top: 1rem; }

/* ---------- Info cards (about / parents) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.info-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.info-card h2, .info-card h3 { font-size: 1.9rem; }
.info-card .prose { margin-top: 0.9rem; }
.info-card--dark { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.info-card--dark .prose { color: var(--on-dark-soft); }
.info-card--dark .prose strong { color: var(--white); }
.info-card--dark a { color: var(--gold-bright); }
.info-card--accent { border-top: 4px solid var(--royal); }

.alert {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-sm);
  background: #fff4f2;
  border-left: 4px solid #d6342a;
  color: #5d1510;
}
.alert .i { width: 26px; height: 26px; color: #d6342a; margin-top: 2px; }
.alert strong { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--royal);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-card__icon .i { width: 24px; height: 24px; }
.contact-card h2 { font-size: 1.8rem; }
.contact-card p { color: var(--text-soft); }
.contact-card a:not(.btn) { font-weight: 600; word-break: break-word; }
.contact-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Prose ---------- */

.prose { font-size: 1.02rem; line-height: 1.75; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.5rem; margin-top: 2rem; }
.prose ul { list-style: none; display: grid; gap: 0.5rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--royal);
  transform: rotate(45deg);
}
.prose a { font-weight: 600; }
.prose code { font-size: 0.9em; background: var(--paper); padding: 0.1rem 0.35rem; border-radius: 4px; }

/* ---------- Policy layout ---------- */

.policy {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.policy__nav { position: sticky; top: 110px; align-self: start; }
.policy__nav ul { margin-top: 1rem; display: grid; gap: 0.2rem; border-left: 2px solid var(--line); }
.policy__nav a {
  display: block;
  padding: 0.5rem 1rem;
  margin-left: -2px;
  border-left: 2px solid transparent;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.policy__nav a:hover { color: var(--ink); }
.policy__nav a[aria-current="page"] { color: var(--royal); border-left-color: var(--royal); font-weight: 700; }
.policy__body { max-width: 75ch; }

/* ---------- Partners ---------- */

.partners {
  background: #0366be;
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.partners__inner { text-align: center; }
.partners__banner {
  width: 100%;
  max-width: 980px;
  margin: 1rem auto 0;
  height: auto;
}
.partners__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.8rem;
  margin-top: 1.25rem;
}
.partners__links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.partners__links a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--on-dark-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.925rem;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand {
  display: inline-block;
  background: var(--white);
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
}
.site-footer__brand img { height: 48px; width: auto; }
.site-footer__safeguard {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 640px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__safeguard > .i { width: 34px; height: 34px; color: var(--gold-bright); }
.site-footer__safeguard > div { flex: 1; min-width: 220px; }
.site-footer__safeguard strong { color: var(--white); }
.site-footer__safeguard b { color: var(--white); }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
}
.site-footer__cols h2 {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.site-footer__cols ul { display: grid; gap: 0.55rem; }
.site-footer__cols a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--on-dark);
  text-decoration: none;
  word-break: break-word;
}
.site-footer__cols a:hover { color: var(--gold-bright); }
.site-footer__legal {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1.6;
}
.site-footer__legal strong { color: var(--on-dark); }
.site-footer__meta { margin-top: 0.75rem; opacity: 0.75; }

/* ---------- Logo intro ---------- */

.logo-intro { display: none; }
.js .logo-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.logo-intro video { width: 100%; height: 100%; object-fit: cover; }
.intro-seen .logo-intro { display: none; }
.logo-intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-skip {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.intro-skip:hover { background: var(--white); color: var(--ink); }

/* ---------- Reveal ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1060px) {
  .tiles__grid { grid-template-columns: repeat(2, 1fr); }
  .crest-row { grid-template-columns: repeat(3, 1fr); }
  .format { grid-template-columns: repeat(2, 1fr); }
  .film-grid, .film-list { grid-template-columns: repeat(2, 1fr); }
  .champ-grid { grid-template-columns: repeat(2, 1fr); }
  .club-grid { grid-template-columns: 1fr; }
  .feature-film { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .season-tabs { top: 66px; }
}

@media (max-width: 1060px) {
  .hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .matchday-card { max-width: 480px; }
}

@media (max-width: 820px) {
  .split, .founder { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .founder__photo { max-width: 360px; }
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.18); }
  .policy { grid-template-columns: 1fr; }
  .policy__nav { position: static; }
  .policy__nav ul { display: flex; flex-wrap: wrap; border-left: 0; gap: 0.4rem; }
  .policy__nav a { border: 1px solid var(--line); border-radius: 999px; margin: 0; padding: 0.4rem 0.9rem; }
  .policy__nav a[aria-current="page"] { border-color: var(--royal); }
  .creds { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --angle: 8vw; }
  .hero { min-height: 82vh; padding-top: 5rem; }
  .tiles__grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .tile { min-height: 150px; padding: 1rem; }
  .tile__title { font-size: 1.4rem; }
  .tile__title .i { width: 30px; height: 30px; padding: 7px; }
  .crest-row { grid-template-columns: repeat(2, 1fr); }
  .format, .film-grid, .film-list, .champ-grid { grid-template-columns: 1fr; }
  .club-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .club-card__crest { width: 150px; }
  .club-card__links { justify-content: center; }
  .club-card h2 { font-size: 2rem; }
  .bridge { grid-template-columns: 1fr; text-align: center; }
  .bridge__line { height: 24px; width: 3px; margin: 0 auto; }
  .site-footer__cols { grid-template-columns: 1fr; }
  .match-centre__stage iframe { min-height: 640px; }
  .hero__ctas .btn { flex: 1 1 100%; }
}
