/* ==========================================================================
   LIMERICK LIONS & EAGLES — Rebrand 2026 New Site (offline preview build)
   Two themes: "Night Court" dark (default) + "White Kit" light, switched by
   data-theme on <html>. Components ported from the live site (logo badge,
   squad rail, Instagram grid, results table, history thread) and recoloured
   to the 2026 crests: navy #001645/#02204A, royal #014BC7, orange #FE5B00.
   ========================================================================== */

:root {
  --navy-deep: #001645;
  --navy:      #02204A;
  --royal:     #014BC7;
  --royal-soft:#1B5BE0;
  --orange:    #FE5B00;
  --orange-warm:#FF7A1F;
  --white:     #FFFFFF;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --logo-big: 340px;
  --logo-small: 92px;
}

/* ----- themes ----- */
html[data-theme="dark"] {
  --bg: #030B26;
  --bg-2: #041233;
  --card: #06173F;
  --band: #051638;
  --ink: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.75);
  --faint: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --thumb: #0A1B44;
  --header-solid: rgba(2, 10, 35, 0.92);
  --header-ink: #FFFFFF;
  --badge-bg: rgba(4, 16, 48, 0.72);
  --glass: rgba(2, 16, 45, 0.62);
  --shadow: rgba(0, 0, 0, 0.45);
}
html[data-theme="light"] {
  --bg: #F4F6FB;
  --bg-2: #FFFFFF;
  --card: #FFFFFF;
  --band: #041F4D;
  --ink: #001645;
  --muted: rgba(0, 22, 69, 0.75);
  --faint: rgba(0, 22, 69, 0.55);
  --line: rgba(0, 22, 69, 0.14);
  --thumb: #E4E9F4;
  --header-solid: rgba(255, 255, 255, 0.94);
  --header-ink: #001645;
  --badge-bg: rgba(255, 255, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.9);
  --shadow: rgba(0, 22, 69, 0.18);
}

/* ----- club accents ----- */
body.club-eagles { --club: var(--royal); --club-bright: var(--royal-soft); }
body.club-lions  { --club: var(--orange); --club-bright: var(--orange-warm); }
body.club-both   { --club: var(--orange); --club-bright: var(--orange-warm); --club2: var(--royal-soft); }
html[data-theme="dark"] body.club-eagles { --club-ink: #7FA8FF; }
html[data-theme="dark"] body.club-lions,
html[data-theme="dark"] body.club-both   { --club-ink: #FF9A50; }
html[data-theme="light"] body.club-eagles { --club-ink: #01399B; }
html[data-theme="light"] body.club-lions,
html[data-theme="light"] body.club-both   { --club-ink: #C24A00; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.55;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
input, button { font: inherit; }
button { cursor: pointer; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ----- type ----- */
.t-display, .t-h1, .t-h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; }
.t-display { font-size: clamp(48px, 7.5vw, 108px); line-height: 0.94; }
.t-h1 { font-size: clamp(40px, 6vw, 78px); line-height: 0.95; }
.t-h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1; }
.t-h4 { font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.t-label { font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px;
  color: var(--club-ink);
}
.section-head { margin-bottom: 34px; }
.section-head .t-h2 { color: var(--ink); }

/* ----- buttons ----- */
.btn {
  display: inline-block; font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 999px; border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--club { background: var(--club); color: #fff; box-shadow: 0 10px 30px var(--shadow); }
body.club-lions .btn--club, body.club-both .btn--club { color: var(--navy-deep); }
.btn--royal { background: var(--royal); color: #fff; box-shadow: 0 10px 30px var(--shadow); }
.btn--orange { background: var(--orange); color: var(--navy-deep); box-shadow: 0 10px 30px var(--shadow); }
.btn--ghost { border: 2px solid currentColor; background: none; color: inherit; }
.btn--navy { background: var(--navy-deep); color: #fff; }

/* ----- scroll reveal ----- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Header: big badge logo shrinks on scroll (ported from live site)
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: var(--header-solid);
  box-shadow: 0 6px 30px var(--shadow);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: flex-end;
  min-height: 74px;
  padding: 0 26px;
}
.logo-badge {
  position: absolute;
  top: 12px; left: 24px; z-index: 41;
  display: flex; align-items: center;
  background: var(--badge-bg);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-bottom: 4px solid var(--club);
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.35s ease;
}
.logo-badge img {
  height: auto;
  width: var(--logo-big);
  max-width: none;
  display: block;
  transition: width 0.35s ease;
}
/* the badge starts big and fades away once the page scrolls */
.site-header.scrolled .logo-badge {
  opacity: 0;
  transform: translateY(-14px) scale(0.96);
  pointer-events: none;
}
/* the club logo takes its place in the solid header, so the crest never
   fully leaves the menu bar */
.header-mini {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 19px; letter-spacing: 0.06em;
  color: var(--header-ink); white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease 0.12s;
}
.header-mini img { height: 42px; width: auto; display: block; }
.header-mini span { color: var(--club); }
.site-header.scrolled .header-mini { opacity: 1; pointer-events: auto; }

.header-wordmark {
  position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.06em;
  color: #fff; white-space: nowrap; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.header-wordmark span { color: var(--club-bright); }
.site-header.scrolled .header-wordmark { color: var(--header-ink); text-shadow: none; }

/* navigation */
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > ul { display: flex; list-style: none; gap: 2px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 26px 14px;
  font-weight: 700; font-size: 14px;
  color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  transition: color 0.25s ease;
}
.site-header.scrolled .main-nav > ul > li > a { color: var(--header-ink); text-shadow: none; }
.main-nav > ul > li > a:hover { color: var(--club-bright); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--club);
  box-shadow: 0 20px 50px var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.main-nav li:hover > .dropdown, .main-nav li:focus-within > .dropdown, .main-nav li.open > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 11px 18px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.dropdown a:hover { background: var(--thumb); color: var(--club-ink); }

.nav-social { display: flex; align-items: center; gap: 10px; margin-left: 14px; }
.nav-social a svg { width: 18px; height: 18px; fill: #fff; opacity: 0.85; transition: opacity 0.2s ease, fill 0.25s ease; }
.site-header.scrolled .nav-social a svg { fill: var(--header-ink); }
.nav-social a:hover svg { opacity: 1; }

/* theme toggle */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: 14px; padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled .theme-toggle { color: var(--header-ink); border-color: var(--line); background: var(--thumb); }
.theme-toggle svg { width: 15px; height: 15px; fill: currentColor; }
.theme-toggle .tt-sun { display: none; }
.theme-toggle .tt-moon { display: block; }
html[data-theme="dark"] .theme-toggle .tt-sun { display: block; }
html[data-theme="dark"] .theme-toggle .tt-moon { display: none; }
.theme-toggle .tt-txt::after { content: "Lights On"; }
html[data-theme="light"] .theme-toggle .tt-txt::after { content: "Lights Off"; }

/* hamburger */
.nav-toggle { display: none; position: relative; z-index: 42; width: 44px; height: 40px; background: none; border: 0; }
.nav-toggle span { display: block; width: 24px; height: 3px; margin: 4px auto; background: #fff; border-radius: 2px; transition: background 0.25s ease; }
.site-header.scrolled .nav-toggle span { background: var(--header-ink); }

/* ==========================================================================
   Hero (photo) + fixture strip + feature cards
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center 30%;
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 15, 45, 0.5) 0%, rgba(0, 15, 45, 0.25) 45%, rgba(0, 12, 38, 0.94) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: var(--navy-deep); opacity: 0.25; mix-blend-mode: color;
}
html[data-theme="light"] .hero::before {
  background: linear-gradient(180deg, rgba(0, 20, 55, 0.42) 0%, rgba(0, 20, 55, 0.2) 45%, rgba(1, 14, 42, 0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto;
  padding: 190px 24px 74px;
}
.hero .eyebrow { color: var(--club-bright); }
.hero-sub { max-width: 560px; margin: 18px 0 26px; font-size: 17px; opacity: 0.94; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
/* concept-style action hero: deeper duotone fade into the page */
.hero--action::before {
  background: linear-gradient(200deg, rgba(0, 12, 38, 0.28) 0%, rgba(0, 12, 38, 0.55) 55%, #030B26 100%);
}
html[data-theme="light"] .hero--action::before {
  background: linear-gradient(200deg, rgba(0, 16, 48, 0.3) 0%, rgba(0, 16, 48, 0.55) 55%, rgba(1, 12, 40, 0.96) 100%);
}
.hero--action::after { opacity: 0.32; }
.hero-stats { display: flex; gap: 42px; flex-wrap: wrap; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.3); }
.hero-stats div b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3.6vw, 46px); line-height: 1; }
.hero-stats div span { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }

.fixture-strip { background: var(--club); color: #fff; }
body.club-lions .fixture-strip { color: var(--navy-deep); }
.fixture-inner {
  max-width: 1160px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.fixture-meta .t-label { opacity: 0.75; }
.fixture-match { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.03em; }
.fixture-when { margin-left: auto; font-weight: 600; font-size: 14px; }
.fixture-strip .btn--navy { box-shadow: none; }

.features { padding: 84px 0 10px; background: var(--bg); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  position: relative; min-height: 340px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  background-color: var(--card);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 44px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-7px); box-shadow: 0 28px 60px var(--shadow); }
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 12, 38, 0.94) 10%, rgba(0, 12, 38, 0.35) 55%, rgba(0, 12, 38, 0.08) 100%);
  transition: opacity 0.3s ease;
}
.feature-card-body { position: relative; z-index: 2; padding: 26px 26px 24px; color: #fff; }
.feature-card-body p { font-size: 14px; opacity: 0.9; margin: 8px 0 12px; max-width: 300px; }
.feature-card-body .t-label { color: var(--club-bright); }
.feature-card--flat { background-image: none !important; background: var(--card); border: 1px solid var(--line); }
.feature-card--flat::before { display: none; }
.feature-card--flat .feature-card-body { color: var(--ink); }
.feature-card--flat .feature-card-body .t-label { color: var(--club-ink); }

/* ==========================================================================
   Partners / sponsors
   ========================================================================== */
.partners { padding: 84px 0; background: var(--bg-2); }
.partners--navy { background: var(--band); color: #fff; }
.partners--navy .section-head .t-h2 { color: #fff; }
.partners--navy .section-head { position: relative; padding-bottom: 22px; }
.partners--navy .section-head::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 120px; height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--royal-soft));
}
.partners-statement { max-width: 620px; margin: 14px 0 0; font-size: 16px; opacity: 0.85; }
.main-sponsors-label, .game-sponsors-label { display: block; margin-bottom: 16px; opacity: 0.6; }
.main-sponsor-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 46px; }
.main-sponsor {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: #fff; border-radius: 18px; padding: 42px 30px 36px; min-height: 190px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.main-sponsor::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--royal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.main-sponsor::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(1, 75, 199, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.main-sponsor:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45); }
.main-sponsor:hover::before { transform: scaleX(1); }
.main-sponsor:hover::after { left: 130%; }
.main-sponsor-logo { max-height: 92px; max-width: 82%; width: auto; object-fit: contain; }
.main-sponsor-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #33415C;
}
.sponsor-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.sponsor-chip {
  padding: 14px 24px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 700; font-size: 14px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.sponsor-chip:hover {
  border-color: var(--club-bright); background: var(--club-bright);
  color: var(--navy-deep); transform: translateY(-3px);
}
.partners-note { margin-top: 22px; font-size: 13px; opacity: 0.6; }
.partners-note a { text-decoration: underline; text-underline-offset: 3px; }
.partner-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.partner-logo {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px; padding: 20px 26px; min-width: 180px;
}
.partner-name { display: block; font-family: var(--font-display); font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.partner-tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-top: 3px; }

/* ==========================================================================
   News
   ========================================================================== */
.news { padding: 84px 0; background: var(--bg); }
.news .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.news-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 38px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px var(--shadow); }
.news-thumb { aspect-ratio: 16 / 11; background-size: cover; background-position: center 22%; }
.news-card-body { padding: 18px 20px 22px; }
.news-card-body .t-label { color: var(--club-ink); font-size: 11px; }
.news-card-body h3 { font-size: 16px; line-height: 1.35; margin: 8px 0 8px; }
.news-card-body time { font-size: 12px; opacity: 0.6; }

/* ==========================================================================
   Squad rail — black & white, colour on hover (ported from live site)
   ========================================================================== */
.squad { padding: 84px 0 70px; background: var(--bg-2); }
.squad-railwrap { position: relative; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.squad-track {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 6px 24px 26px;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.squad-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.squad-track.is-dragging a { pointer-events: none; }
.squad-track::-webkit-scrollbar { height: 8px; }
.squad-track::-webkit-scrollbar-track { background: var(--thumb); }
.squad-track::-webkit-scrollbar-thumb { background: var(--club); }
.squad-card {
  position: relative;
  flex: 0 0 304px; width: 304px; height: 452px;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--navy-deep);
  border-bottom: 4px solid var(--club);
}
.squad-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 14%;
  filter: grayscale(1) contrast(1.05) brightness(0.82);
  transform: scale(1.03);
  transition: filter 0.45s ease, transform 0.6s cubic-bezier(.2, .7, .2, 1);
}
.squad-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0, 13, 40, 0.94) 6%, rgba(0, 13, 40, 0.30) 46%, rgba(0, 13, 40, 0) 72%);
}
.squad-card:hover img, .squad-card:focus-visible img {
  filter: grayscale(0) contrast(1.03) brightness(1);
  transform: scale(1.09);
}
.squad-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 22px 26px; color: #fff; }
.squad-accent { display: block; width: 34px; height: 4px; background: var(--club-bright); margin-bottom: 10px; }
.squad-name { display: block; font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.03em; }
.squad-view { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease; color: var(--club-bright); }
.squad-view svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.squad-card:hover .squad-view { opacity: 1; transform: none; }
.squad-nav {
  position: absolute; top: 46%; transform: translateY(-50%); z-index: 5;
  width: 54px; height: 54px; border: 0; border-radius: 50%;
  background: var(--club); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px var(--shadow);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.club-lions .squad-nav { color: var(--navy-deep); }
.squad-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; }
.squad-nav:hover { transform: translateY(-50%) scale(1.08); }
.squad-nav:disabled { opacity: 0.25; cursor: default; }
.squad-nav--prev { left: -6px; }
.squad-nav--next { right: -6px; }
.squad-hint { margin-top: 6px; font-size: 13px; opacity: 0.65; }
.squad-hint a { text-decoration: underline; text-underline-offset: 3px; }

/* Lions ones-to-watch: same treatment, fixed grid */
.roster-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.roster-card {
  position: relative; height: 320px; overflow: hidden;
  background: var(--navy-deep);
  border-bottom: 4px solid var(--club);
}
.roster-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 14%;
  filter: grayscale(1) contrast(1.05) brightness(0.82);
  transform: scale(1.03);
  transition: filter 0.45s ease, transform 0.6s cubic-bezier(.2, .7, .2, 1);
}
.roster-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0, 13, 40, 0.94) 8%, rgba(0, 13, 40, 0.3) 50%, rgba(0, 13, 40, 0) 75%);
}
.roster-card:hover img { filter: grayscale(0) contrast(1.03) brightness(1); transform: scale(1.09); }
.roster-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 16px; color: #fff; }
.roster-name { display: block; font-weight: 800; font-size: 15px; }
.roster-role { display: block; font-size: 11.5px; opacity: 0.8; margin-top: 2px; }

/* ==========================================================================
   Staff
   ========================================================================== */
.staff { padding: 84px 0; background: var(--bg); }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.staff-card {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--club);
  border-radius: 12px; padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.staff-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
.sc-role { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--club-ink); }
.sc-name { display: block; font-weight: 700; font-size: 17px; margin-top: 4px; }
.staff-note { margin-top: 18px; font-size: 13px; opacity: 0.65; }
.staff-note a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Instagram
   ========================================================================== */
.instagram { padding: 84px 0; background: var(--bg-2); }
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.insta-head p { max-width: 560px; margin-top: 10px; font-size: 15px; opacity: 0.85; }
.insta-handle { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--club-ink); }
.insta-handle svg { width: 18px; height: 18px; fill: currentColor; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta-post { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; background: var(--navy-deep); }
.insta-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.insta-post:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  background: rgba(0, 13, 40, 0.72);
  color: #fff; font-weight: 700; font-size: 13px;
  opacity: 0; transition: opacity 0.3s ease;
}
.insta-post:hover .insta-overlay { opacity: 1; }
.insta-overlay span { display: inline-flex; align-items: center; gap: 5px; }
.insta-overlay svg { width: 15px; height: 15px; fill: #fff; }
.standings-note { margin-top: 20px; font-size: 13px; opacity: 0.6; }
.standings-note a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Results / standings tables
   ========================================================================== */
.standings { padding: 84px 0; background: var(--bg); }
.standings-table {
  width: 100%; border-collapse: collapse;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 14px 38px var(--shadow);
  font-size: 14.5px;
}
.standings-table th {
  text-align: left; padding: 14px 18px;
  background: var(--navy-deep); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.standings-table td { padding: 13px 18px; border-top: 1px solid var(--line); }
.standings-table .res { font-weight: 800; }
.standings-table .res.win { color: var(--club-ink); }
.standings-table tr.is-eagles td { background: rgba(1, 75, 199, 0.12); font-weight: 700; }
body.club-lions .standings-table tr.is-eagles td { background: rgba(254, 91, 0, 0.12); }

/* ==========================================================================
   Family / pathway / about
   ========================================================================== */
.family { padding: 84px 0; background: var(--band); color: #fff; }
.family .section-head .t-h2 { color: #fff; }
.family .card-grid { grid-template-columns: repeat(3, 1fr); }
.family-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 380px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 8, 26, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px; padding: 34px 30px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.family-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45); }
.family-card--eagles:hover { border-color: var(--royal-soft); }
.family-card--lions:hover { border-color: var(--orange-warm); }
.family-card--pathway:hover { border-color: #fff; }
.family-card h3 { position: relative; z-index: 2; }
.family-card p { position: relative; z-index: 2; font-size: 14.5px; opacity: 0.88; margin: 12px 0 18px; max-width: 300px; }
.family-card .t-label { position: relative; z-index: 2; margin-top: auto; color: var(--club-bright); }
.family-card--eagles .t-label { color: var(--royal-soft); }
.family-card--lions .t-label { color: var(--orange-warm); }
.family-card--pathway .t-label { color: #fff; }
.family-crest {
  position: relative; z-index: 2;
  width: 210px; height: auto; margin-bottom: 18px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}
.family-card:hover .family-crest { transform: scale(1.06) rotate(-1.5deg); }
.family-crest--pair { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; position: relative; z-index: 2; }
.family-crest--pair img { width: 128px; height: auto; filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5)); }
.family-watermark {
  position: absolute; right: -60px; bottom: -50px; width: 240px; opacity: 0.1;
  pointer-events: none; z-index: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.family-card:hover .family-watermark { opacity: 0.2; transform: scale(1.05); }
.about-prose { max-width: 820px; font-size: 17px; line-height: 1.7; }
.about-prose p { margin-bottom: 18px; opacity: 0.92; }
.pathway-band { padding: 84px 0; background: var(--band); color: #fff; }
.pathway-band .section-head .t-h2 { color: #fff; }
.pathway-lead { max-width: 780px; font-size: 16.5px; line-height: 1.7; opacity: 0.92; margin-bottom: 18px; }
.pathway-eagles { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.pathway-eagles img { width: 220px; height: auto; }
.pathway-eagles span { font-size: 15px; }
.pathway-eagles a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   History thread
   ========================================================================== */
.history-teaser { padding: 84px 0; background: var(--band); color: #fff; }
.history-teaser .section-head .t-h2 { color: #fff; }
.teaser-years { margin: 10px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.teaser-year {
  display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: baseline;
  padding: 15px 6px; border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, padding 0.25s ease;
}
a.teaser-year:hover { background: rgba(255, 255, 255, 0.06); padding-left: 14px; }
.teaser-year .yr { font-family: var(--font-display); font-size: 26px; color: var(--club-bright); }
.teaser-year .what { font-size: 15px; opacity: 0.9; }

/* ==========================================================================
   Scroll timeline (ported from the live history page, rebranded)
   Central line, alternating eras, dots on the line, reveal on scroll.
   .timeline--thread is the compact version used on the club pages.
   ========================================================================== */
.timeline { position: relative; padding: 30px 0 40px; }
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--orange) 0%, var(--royal-soft) 100%);
  opacity: 0.65;
}
.era {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: center;
  max-width: 1120px; margin: 0 auto 78px;
  padding: 0 44px;
}
.era-dot {
  position: absolute; left: 50%; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  transform: translateX(-50%);
  background: var(--club-bright);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px var(--club-bright);
  z-index: 2;
}
.history-teaser .era-dot { border-color: var(--band); }
/* text always reads left-to-right; the column it sits in puts it beside the line */
.era-text { grid-column: 1; text-align: left; }
.era-media { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.era--flip .era-text { grid-column: 2; }
.era--flip .era-media { grid-column: 1; grid-row: 1; }
.era-media figure { margin: 0; }
.era-media figure.lead { grid-column: 1 / -1; }
.era-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; border: 1px solid rgba(255,255,255,0.14); }
.era-media figcaption { margin-top: 7px; font-size: 12px; opacity: 0.62; }
/* text-only eras sit centred across the line */
.era--solo { grid-template-columns: minmax(0, 760px); justify-content: center; }
.era--solo .era-text { grid-column: 1; }
.era-years {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 58px); line-height: 1;
  color: var(--club-bright); margin-bottom: 6px;
}
.era-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.era-copy { font-size: 15.5px; line-height: 1.65; opacity: 0.9; margin-bottom: 14px; }
.era-copy:last-child { margin-bottom: 0; }
html.js .era { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .era.revealed { opacity: 1; transform: translateY(0); }
/* compact text-only thread used on the club pages (no media) */
.timeline--thread .era { grid-template-columns: 1fr 1fr; margin-bottom: 46px; }
.timeline--thread .era-years { font-size: clamp(28px, 3.4vw, 42px); }
.timeline--thread .era-copy { font-size: 14px; }
/* left-column eras hug the central line: right-align them; flipped (right column) stay left-aligned */
.timeline--thread .era-text { text-align: right; }
.timeline--thread .era--flip .era-text { text-align: left; }

/* ==========================================================================
   Inner pages: page hero, article, profile, report
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 190px 0 60px;
  background: var(--band); color: #fff;
  background-size: cover; background-position: center 26%;
}
.page-hero--img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 15, 45, 0.55) 0%, rgba(0, 12, 38, 0.92) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--club-bright); }
.page-hero .t-display { font-size: clamp(40px, 6vw, 84px); }
.page-hero-sub { max-width: 620px; margin-top: 16px; font-size: 16.5px; opacity: 0.9; }
.page-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }

.article { padding: 70px 0 90px; background: var(--bg); }
.article-body { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(24px, 3vw, 34px); margin: 40px 0 16px; }
.article-body blockquote {
  margin: 30px 0; padding: 6px 0 6px 24px;
  border-left: 4px solid var(--club);
  font-size: 19px; font-weight: 600; line-height: 1.6;
}
.article-body figure { margin: 34px 0; }
.article-body figure img { border-radius: 14px; width: 100%; }
.article-body figcaption { margin-top: 10px; font-size: 13px; opacity: 0.6; }
.article-body a { color: var(--club-ink); text-decoration: underline; text-underline-offset: 3px; }
.article-back { max-width: 760px; margin: 40px auto 0; }

.profile-head { padding: 150px 0 70px; background: var(--band); color: #fff; }
.profile-grid { display: grid; grid-template-columns: 360px 1fr; gap: 50px; align-items: end; }
.profile-photo { border-radius: 18px; overflow: hidden; border-bottom: 5px solid var(--club); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45); }
.profile-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 12%; }
.profile-role { color: var(--club-bright); }
.profile-name { font-size: clamp(44px, 6vw, 84px); }
.profile-facts { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.3); }
.profile-facts div b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 30px; line-height: 1; }
.profile-facts div span { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }

.report-head { padding: 170px 0 60px; background: var(--band); color: #fff; text-align: center; }
.report-score { font-family: var(--font-display); font-size: clamp(56px, 9vw, 120px); line-height: 1; }
.report-score i { font-style: normal; color: var(--club-bright); }
.report-teams { font-size: 17px; font-weight: 700; margin-top: 10px; }
.report-meta { margin-top: 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ==========================================================================
   Rebrand round-3: section dividers, report imagery, full roster page
   ========================================================================== */

/* Stacked dark sections get distinct tones + a branded top divider so they
   read as separate zones instead of one navy slab. */
.partners--navy { background: linear-gradient(180deg, #04173F 0%, #010B24 100%); }
.family { background: #06214F; }
.history-teaser { background: #010A22; }
.partners--navy, .family, .history-teaser, .pathway-band { position: relative; }
.partners--navy::before, .family::before, .history-teaser::before, .pathway-band::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--royal-soft) 100%);
  z-index: 3;
}

/* Game-report scoreboard over a match photo, for colour */
.report-head--img { position: relative; background-size: cover; background-position: center 26%; }
.report-head--img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 12, 38, 0.6) 0%, rgba(0, 9, 32, 0.9) 100%);
}
.report-head--img > * { position: relative; z-index: 2; }

/* Full roster page: reuse the grayscale-to-colour card in a wider grid */
.roster { padding: 56px 0 90px; background: var(--bg-2); }
.roster-lead { margin: 0 0 30px; font-size: 16px; opacity: 0.82; max-width: 660px; }
.roster-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roster-full .roster-card { height: 384px; }
.roster-sub { margin: 44px 0 22px; }

@media (max-width: 820px) {
  .era-media, .era--flip .era-media { grid-column: 1; }
  .roster-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .roster-full { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Newsletter + footer
   ========================================================================== */
.newsletter { padding: 66px 0; background: var(--band); color: #fff; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.newsletter-inner p { opacity: 0.8; margin-top: 6px; font-size: 14.5px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  width: min(330px, 100%); padding: 14px 20px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08); color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter-form .btn--navy { background: var(--club); color: #fff; }
body.club-lions .newsletter-form .btn--navy, body.club-both .newsletter-form .btn--navy { color: var(--navy-deep); }
.newsletter-form.sent input, .newsletter-form.sent button { display: none; }
.newsletter-form.sent::after {
  content: "You're on the list."; font-weight: 700; font-size: 15px; color: var(--club-bright);
}

.site-footer { background: #010A22; color: #fff; padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 50px; }
.footer-statement { font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px); line-height: 1; text-transform: uppercase; }
.footer-statement span { color: var(--club-bright); }
.footer-tags { margin-top: 14px; font-size: 13px; opacity: 0.55; }
.footer-col h3 { margin-bottom: 14px; color: rgba(255, 255, 255, 0.55); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; font-size: 14px; }
.footer-col a { opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--club-bright); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom-inner {
  max-width: 1160px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.6;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { text-decoration: underline; }

/* ==========================================================================
   Journey page (index.html): scroll scene, stations, rail, preloader
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 60;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark { font-family: var(--font-display); font-size: clamp(28px, 5vw, 44px); letter-spacing: 0.04em; color: #fff; }
.preloader-mark span { color: var(--orange); }
.preloader-bar { width: 180px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.15); overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 40%; border-radius: 3px; background: linear-gradient(90deg, var(--orange), var(--royal-soft)); animation: load-slide 1.1s ease-in-out infinite; }
@keyframes load-slide { 0% { transform: translateX(-110%); } 100% { transform: translateX(460%); } }
#flash { position: fixed; inset: 0; z-index: 50; background: #EAF3FF; opacity: 0; pointer-events: none; }
#bg-canvas { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
body.no-webgl #bg-canvas { display: none; }
html[data-theme="dark"] body.no-webgl { background: linear-gradient(180deg, #030B26 0%, #0A1B44 40%, #0E2C6E 75%, #0A3390 100%); }
html[data-theme="light"] body.no-webgl { background: linear-gradient(180deg, #02204A 0%, #0E2452 30%, #F2DFC6 55%, #CFE4F2 80%, #F4F6FB 100%); }

.rail { position: fixed; right: 26px; top: 50%; z-index: 29; transform: translateY(-50%); display: flex; flex-direction: column; gap: 18px; }
.rail-dot { position: relative; width: 24px; height: 24px; padding: 6px; border: 0; border-radius: 50%; background: var(--dot, #fff); background-clip: content-box; opacity: 0.45; transition: opacity 0.3s ease, transform 0.3s ease; }
.rail-dot:hover, .rail-dot.active, .rail-dot:focus-visible { opacity: 1; transform: scale(1.3); }
.rail-dot span { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; opacity: 0; white-space: nowrap; transition: opacity 0.25s ease; pointer-events: none; }
body.light-world .rail-dot span { color: var(--navy-deep); }
.rail-dot:hover span, .rail-dot.active span, .rail-dot:focus-visible span { opacity: 0.9; }

#journey { position: relative; height: calc(650 * 1vh); z-index: 2; }
.hero-stage { position: absolute; top: 0; left: 0; right: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; color: #fff; }
.hero-inner {
  max-width: 640px; padding: 42px 46px; border-radius: 26px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(125%); -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px var(--shadow);
  color: var(--ink);
}
html[data-theme="light"] .hero-inner { color: var(--navy-deep); }
.hero-inner .hero-sub { margin-left: auto; margin-right: auto; }
.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }
.scroll-hint svg { animation: hint-bob 1.6s ease-in-out infinite; }
@keyframes hint-bob { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(7px); opacity: 1; } }

.station { position: absolute; left: 0; right: 0; height: 100vh; display: flex; align-items: center; padding: 0 7vw; pointer-events: none; }
.station--lions  { top: calc(0.42 * (650 - 100) * 1vh); }
.station--eagles { top: calc(0.84 * (650 - 100) * 1vh); }
.station--right { justify-content: flex-end; }
.station-card {
  max-width: 480px; pointer-events: auto; padding: 36px 38px; border-radius: 22px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(120%); -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px var(--shadow);
  color: var(--ink);
  opacity: 1; transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .station-card { opacity: 0; transform: translateY(54px); }
html.js .station.in .station-card { opacity: 1; transform: translateY(0); }
html[data-theme="light"] .station-card { color: var(--navy-deep); }
.station--lions .station-card { border-top: 4px solid var(--orange); }
.station--eagles .station-card { border-top: 4px solid var(--royal-soft); }
.station-logo { height: auto; width: auto; max-height: 84px; max-width: 260px; margin-bottom: 18px; }
.station-name { font-weight: 800; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; margin: 8px 0 12px; opacity: 0.7; }
.station-copy { font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.station .eyebrow { color: var(--club-ink); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chips li { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; border: 1px solid currentColor; opacity: 0.85; }
.station-cross { display: block; margin-top: 16px; font-size: 13px; font-weight: 600; opacity: 0.75; }
.station-cross a { text-decoration: underline; text-underline-offset: 3px; }

.finale { position: relative; z-index: 2; padding: 16vh 0 90px; text-align: center; background: var(--bg); }
html[data-theme="light"] .finale { background: linear-gradient(180deg, rgba(244, 246, 251, 0) 0%, rgba(244, 246, 251, 0.94) 16%, var(--bg) 36%); }
html[data-theme="dark"] .finale { background: linear-gradient(180deg, rgba(3, 11, 38, 0) 0%, rgba(3, 11, 38, 0.94) 16%, var(--bg) 36%); }
.finale-sub { max-width: 540px; margin: 20px auto 50px; font-size: 17px; opacity: 0.85; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.team-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 42px 26px 34px; border-radius: 20px;
  background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 18px 50px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px var(--shadow); }
.team-card--lions { border-top: 6px solid var(--orange); }
.team-card--eagles { border-top: 6px solid var(--royal); }
.team-card img { width: 100%; max-width: 260px; height: auto; }
.team-card h3 { font-family: var(--font-display); font-size: 28px; text-transform: uppercase; }
.team-card p { font-size: 14px; opacity: 0.75; max-width: 300px; }
.team-card--lions .t-label { color: var(--club-ink); }
.team-card--eagles .t-label { color: var(--royal-soft); }
html[data-theme="light"] .team-card--eagles .t-label { color: #01399B; }
.honours-strip {
  max-width: 1080px; margin: 70px auto 0; padding: 24px;
  display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.honours-strip span b { color: var(--club-ink); font-weight: 800; }

/* ----- preview ribbon ----- */
.preview-tag {
  position: fixed; left: 18px; bottom: 16px; z-index: 45;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(0, 22, 69, 0.85); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25); pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  :root { --logo-big: 190px; --logo-small: 70px; }
  .main-sponsor-row { grid-template-columns: 1fr; }
  .timeline::before { left: 26px; transform: none; }
  .era { grid-template-columns: 1fr; gap: 20px; padding-left: 58px; }
  .era-dot { left: 26px; transform: none; }
  .era-text, .era--flip .era-text,
  .timeline--thread .era-text, .timeline--thread .era--flip .era-text { grid-column: 1; text-align: left; }
  .profile-grid { grid-template-columns: 1fr; gap: 30px; }
  .profile-photo { max-width: 320px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 39;
    background: var(--bg);
    display: none; flex-direction: column; align-items: flex-start;
    padding: 120px 30px 40px; overflow-y: auto;
  }
  body.nav-open .main-nav { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .main-nav > ul > li { width: 100%; }
  .main-nav > ul > li > a { color: var(--ink); text-shadow: none; padding: 14px 0; font-size: 18px; }
  .dropdown { position: static; opacity: 1; visibility: hidden; height: 0; overflow: hidden; transform: none; box-shadow: none; border: 0; border-left: 3px solid var(--club); }
  .main-nav li.open > .dropdown { visibility: visible; height: auto; }
  .nav-social { margin: 18px 0 0; }
  .nav-social a svg { fill: var(--ink); }
  .theme-toggle { position: fixed; right: 74px; top: 17px; z-index: 42; margin: 0; }
  .card-grid, .family .card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 240px; }
  .staff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .fixture-when { margin-left: 0; }
  .hero { min-height: 78vh; }
  .hero-content { padding-top: 160px; }
  .squad-nav { display: none; }
  .rail { right: 12px; }
  .rail-dot span { display: none; }
  .station { padding: 0 18px; }
  .station--right { justify-content: flex-start; }
  .station-card { padding: 28px 24px; max-width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .news-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .squad-track { padding-bottom: 18px; }
  .squad-card { flex: 0 0 260px; width: 260px; height: 390px; }
  .standings-table { font-size: 13px; }
  .standings-table th, .standings-table td { padding: 10px 12px; }
  .teaser-year { grid-template-columns: 84px 1fr; }
}
@media (max-width: 480px) {
  .roster-grid { grid-template-columns: 1fr; }
  .roster-card { height: 360px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint svg, .preloader-bar span { animation: none; }
  .squad-card img, .roster-card img, .news-card, .feature-card, .btn { transition: none; }
}
