/* ==========================================================================
   AUSTIN SPURS — site.css
   Design language: midnight navy + brass, bone paper, condensed poster type.
   Deliberately NOT a clone of tottenhamhotspur.com (they use navy/white/flat).
   Ours adds warm brass, paper texture, and terrace-poster typography.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #050C1E;
  --navy-800: #0A1733;
  --navy-700: #0E2049;
  --navy-600: #16305F;

  --brass:      #C8A24A;
  --brass-lt:   #E6CD8B;
  --brass-dk:   #7A5E1E;   /* darkened from #8A6C24 to clear 4.5:1 on bone */

  /* Violet, after the club's 2026/27 "Psychic Purple" third kit.
     Used only in the hero gradient — it's an accent with a reason, not a
     third brand colour competing with navy and brass. */
  --violet:     #4B2A7B;
  --violet-lt:  #6E43A8;

  /* Coast to Coast — sampled directly from the Premier League's official
     Tottenham poster so the event sections match the print piece exactly.
     Scoped to the event, deliberately: this is a loud palette and it earns
     its loudness by being temporary. */
  --c2c-navy:   #000A3D;
  --c2c-orange: #F75E09;
  --c2c-red:    #ED5300;
  --c2c-yellow: #F8E906;
  --c2c-amber:  #F7C806;
  --c2c-cream:  #FFFFFF;

  --bone:   #F5F2EA;
  --bone-2: #E8E3D6;
  --ink:    #12151C;
  --muted:  #585F6D;   /* darkened from #6E7686 to clear 4.5:1 on both bone tints */

  --go:    #2FA05C;
  --wait:  #E2A72A;
  --stop:  #C9372E;

  --shell: min(1220px, 100% - 2.5rem);
  --rad: 4px;

  /* ---- Typography -------------------------------------------------------
     Tottenham's own face is F37's custom "TH" family — proprietary, all
     rights reserved, not licensable at any price. Saira Condensed is a
     deliberate cousin: same squared, slightly condensed, upright caps
     temperature, without the beak-and-spur terminal detailing that makes
     theirs theirs. Close enough to feel like the same sport, far enough to
     survive a side-by-side.
     To swap it: change --font-display here AND the Google Fonts <link> in
     the five HTML files. See type-options.html for the alternatives.
     ---------------------------------------------------------------------- */
  --font-display: "Saira Condensed", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-weight: 700;
  --display-track: .02em;

  --shadow-lift: 0 18px 45px -22px rgba(5, 12, 30, .55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  line-height: .94;
  letter-spacing: var(--display-track);
  text-transform: uppercase;
  margin: 0 0 .5em;
}
p { margin: 0 0 1.1em; }

/* ---------- Utility ---------- */
.shell { width: var(--shell); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brass) 0%, transparent 100%);
}
.eyebrow--light { color: var(--brass-lt); }
.on-dark .eyebrow { color: var(--brass-lt); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Focus & skip link (a11y) ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--brass); color: var(--navy-900);
  padding: .8rem 1.3rem; font-weight: 700; text-decoration: none;
  letter-spacing: .1em; text-transform: uppercase; font-size: .8rem;
  transition: top .18s ease;
}
.skip-link:focus { top: 1rem; }

/* Every interactive element gets the same visible ring, not just buttons */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--brass-lt);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-nav a:focus-visible { outline-offset: -2px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brass);
  --btn-fg: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: var(--rad);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px -14px rgba(200, 162, 74, .9);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(200, 162, 74, .95); }
.btn:focus-visible { outline: 3px solid var(--brass-lt); outline-offset: 3px; }
.btn .arw { transition: transform .18s ease; }
.btn:hover .arw { transform: translateX(4px); }

/* Secondary action on a dark background. Solid, not outlined — an outlined
   button next to a filled one reads as disabled to a lot of people. */
.btn--ghost {
  --btn-bg: rgba(5, 12, 30, .72);
  --btn-fg: var(--bone);
  border: 1px solid rgba(230, 205, 139, .38);
  box-shadow: none;
  backdrop-filter: blur(3px);
}
.btn--ghost:hover { --btn-bg: rgba(5, 12, 30, .92); border-color: rgba(230, 205, 139, .7); box-shadow: none; }
.btn--navy { --btn-bg: var(--navy-700); --btn-fg: var(--bone); box-shadow: none; }
.btn--navy:hover { --btn-bg: var(--navy-600); }

/* ==========================================================================
   HEADER  (identical markup on every page)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(200, 162, 74, .28);
}
.site-header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px; height: 3px;
  background: linear-gradient(90deg, var(--brass-dk), var(--brass), var(--brass-lt), var(--brass-dk));
}
.header-inner {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 96px;
}

/* ---- Lockup: crest + AUSTIN SPURS ----------------------------------------
   The mark sits in a fixed square box, so any logo file drops in without
   shifting the wordmark. A hairline brass rule separates the two, the way
   club lockups usually handle a crest-plus-name arrangement.
   -------------------------------------------------------------------------- */
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
/* The crest is portrait (405x569), so it's sized by height and left to find
   its own width. Swapping in a squarer mark needs no CSS change. */
.brand__mark {
  height: 66px; width: auto; flex: none;
  object-fit: contain;
}
.brand__text {
  display: flex; align-items: center;
  padding-left: .95rem;
  border-left: 1px solid rgba(200, 162, 74, .45);
  align-self: stretch;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.72rem;
  line-height: .9;
  color: var(--bone);
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease;
}
.brand:hover .brand__name { color: var(--brass-lt); }

@media (max-width: 560px) {
  .brand__mark { height: 48px; }
  .brand__name { font-size: 1.3rem; }
  .brand__text { padding-left: .75rem; }
  .brand { gap: .75rem; }
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0; padding: 0;
}
.site-nav a {
  display: block;
  padding: .7rem 1.05rem;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, .78);
  text-decoration: none;
  border-radius: var(--rad);
  position: relative;
  transition: color .16s ease;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 1.05rem; right: 1.05rem; bottom: .3rem;
  height: 2px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover { color: var(--bone); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--bone); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { margin-left: .6rem; padding: .7rem 1.2rem; font-size: .74rem; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(245, 242, 234, .3);
  border-radius: var(--rad);
  padding: .55rem .7rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--bone); margin: 4px 0; transition: .2s; }

@media (max-width: 900px) {
  .header-inner { min-height: 72px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    border-bottom: 3px solid var(--brass);
    max-height: 0; overflow: hidden;
    transition: max-height .28s ease;
  }
  .site-nav[data-open="true"] { max-height: 400px; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: .6rem 1.25rem 1.25rem; gap: 0; }
  .site-nav a { padding: .95rem .2rem; border-bottom: 1px solid rgba(245, 242, 234, .1); }
  .site-nav a::after { left: .2rem; right: auto; width: 26px; }
  .nav-cta { margin: 1rem .2rem 0; justify-content: center; }
}

/* ==========================================================================
   HERO — parallax
   ========================================================================== */
/* Four planes, each moving at its own rate on scroll:
   gradient (fixed) < crest (0.18) < halftone (0.42) < hairlines (0.62)
   The spread between them is what stops a flat gradient reading as flat. */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 78% 30%, rgba(110,67,168,.55) 0%, transparent 62%),
    linear-gradient(168deg, var(--navy-900) 0%, #12183F 38%, var(--violet) 78%, #5A3390 100%);
}
/* The layers travel up to ~440px on scroll plus pointer drift, so the stage is
   oversized well beyond the hero. This slack is what keeps their edges outside
   the frame the whole way. */
.hero__stage {
  position: absolute; inset: -45% -14%;
  z-index: 0;
  pointer-events: none;
}
.hero__layer { will-change: transform; position: absolute; inset: 0; }

/* The crest, sized off hero height so it scales with the section.
   It bleeds off the right edge on purpose — the parallax shifts it up to
   ~40px, and a hard edge sliding into view would give the trick away. */
.hero__crest {
  height: 104%;
  width: auto;
  top: 50%; left: auto; right: -4%;
  transform-origin: center;
  translate: 0 -50%;
  opacity: .17;
  filter: drop-shadow(0 0 60px rgba(230,205,139,.25));
}

/* Halftone screen — rhymes with the halftone quarter inside the crest itself */
.hero__dots {
  background-image: radial-gradient(rgba(245,242,234,.5) 1px, transparent 1px);
  background-size: 13px 13px;
  opacity: .13;
  mask-image: radial-gradient(120% 100% at 70% 40%, #000 15%, transparent 72%);
}

/* Terrace hairlines */
.hero__rules {
  background-image: repeating-linear-gradient(90deg,
    rgba(200,162,74,.16) 0 1px, transparent 1px 132px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 45%, transparent 100%);
  opacity: .8;
}

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(94deg, rgba(5,12,30,.9) 0%, rgba(5,12,30,.62) 42%, rgba(5,12,30,.1) 78%),
    linear-gradient(180deg, rgba(5,12,30,.5) 0%, transparent 30%, rgba(5,12,30,.45) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; opacity: .16; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero__content {
  position: relative; z-index: 3;
  width: var(--shell);
  margin-inline: auto;
  padding: 5rem 0;
  color: var(--bone);
  max-width: none;
}
.hero__inner { max-width: 680px; }

/* One sentence, three sizes. The scale shift is what gives the headline
   somewhere to go without adding more words. */
.hero__title {
  font-size: clamp(2.7rem, 6.6vw, 5.1rem);
  color: var(--bone);
  margin-bottom: .4em;
  text-shadow: 0 6px 40px rgba(5, 12, 30, .55);
}
.hero__title .lead-in {
  display: block;
  font-size: .42em;
  letter-spacing: .12em;
  color: var(--brass-lt);
  margin-bottom: .35em;
}
.hero__title em { font-style: normal; display: block; }

.hero__blurb {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  color: rgba(245, 242, 234, .9);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* Both hero buttons behave identically on hover — same lift, same violet
   haze. Different hover states on two adjacent buttons reads as a bug. */
.hero__actions .btn {
  box-shadow: 0 10px 24px -16px rgba(110, 67, 168, .8);
}
.hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px -12px rgba(110, 67, 168, .95),
    0 0 0 1px rgba(230, 205, 139, .45);
}
.hero__actions .btn--ghost:hover { --btn-bg: rgba(35, 16, 62, .82); border-color: rgba(230, 205, 139, .55); }

/* Compact page banner heroes (Events / Tramps) */
.page-hero {
  position: relative;
  background: var(--navy-800);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__art { position: absolute; inset: 0; z-index: 0; }
.page-hero__art svg { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(5,12,30,.94) 0%, rgba(5,12,30,.72) 45%, rgba(5,12,30,.35) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  width: var(--shell); margin-inline: auto;
  padding: 4.5rem 0 4rem;
}
.page-hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); color: var(--bone); }
.page-hero__lede { max-width: 56ch; color: rgba(245,242,234,.85); margin-bottom: 0; }

/* ==========================================================================
   PUB BANNER (Mister Tramps)
   Their logo is hand-drawn, distressed, white-on-black — a painted bar sign,
   not a stadium graphic. So this band is a dark painted wall with grain and a
   vignette rather than the navy-and-floodlights treatment used elsewhere.
   ========================================================================== */
.pub-banner {
  position: relative;
  background: #0E0E11;
  border-bottom: 3px solid var(--brass);
  overflow: hidden;
  isolation: isolate;
}
/* Uneven light on a dark wall. No fine repeating stripe here on purpose —
   at a small period it moirés against the logo's own distress texture. The
   depth comes from broad gradients plus grain instead. */
.pub-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(90% 130% at 20% 4%,  rgba(255,255,255,.10) 0%, transparent 58%),
    radial-gradient(75% 110% at 90% 96%, rgba(200,162,74,.14) 0%, transparent 62%),
    linear-gradient(178deg, rgba(255,255,255,.05) 0%, transparent 30%, rgba(0,0,0,.4) 100%);
}
.pub-banner::after {           /* grain */
  content: "";
  position: absolute; inset: 0; z-index: 1; opacity: .3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}
.pub-banner__inner {
  position: relative; z-index: 2;
  width: var(--shell); margin-inline: auto;
  padding: clamp(2.6rem, 6vw, 4.2rem) 0;
  display: flex; align-items: center; gap: clamp(1.6rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.pub-banner__logo {
  flex: 1 1 380px;
  max-width: 520px;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.8));
}
.pub-banner__logo img { width: 100%; height: auto; }
.pub-banner__meta { flex: 1 1 260px; color: var(--bone); }
.pub-banner__meta h1 {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  color: var(--bone); margin-bottom: .5em;
}
.pub-banner__meta p { color: rgba(245,242,234,.72); margin: 0; max-width: 34ch; }
.pub-banner__meta .rule { margin-bottom: 1.1rem; }

/* Photo + copy rows */
.media-row { display: grid; gap: clamp(1.8rem, 5vw, 3.4rem); grid-template-columns: 1fr 1fr; align-items: center; }
.media-row--flip .media-row__copy { order: 2; }
@media (max-width: 860px) {
  .media-row { grid-template-columns: 1fr; }
  .media-row--flip .media-row__copy { order: 0; }
}

/* Address block with the directions button sitting beside it */
.address-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.2rem 2rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.address-head h2 { margin-bottom: .15em; }
.address-head p { margin: 0; color: var(--muted); }

/* Tramps banner variant — wide, short, logo slot */
.banner-hero { min-height: 340px; display: grid; align-items: center; }
.banner-hero .page-hero__content { padding: 3.2rem 0; display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.tramps-badge {
  width: 132px; height: 132px; flex: none;
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(5,12,30,.55);
  text-align: center;
  padding: .8rem;
}
.tramps-badge span {
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: .92rem; line-height: 1.15; color: var(--brass-lt);
  letter-spacing: .04em; text-transform: uppercase;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--navy { background: var(--navy-800); color: var(--bone); }
.section--navy h2, .section--navy h3 { color: var(--bone); }
.section--paper { background: var(--bone-2); }
.section__title { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: .6em; }
.section__lede { max-width: 60ch; color: var(--muted); }
.section--navy .section__lede { color: rgba(245,242,234,.75); }

.rule {
  height: 3px; width: 68px;
  background: var(--brass);
  margin: 0 0 1.6rem;
}

/* Cards row */
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--bone-2);
  border-top: 4px solid var(--brass);
  border-radius: var(--rad);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column;
}
.card h3 { font-size: 1.35rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card a.card__link {
  margin-top: auto;
  font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy-700); text-decoration: none;
  border-bottom: 2px solid var(--brass); align-self: flex-start; padding-bottom: 2px;
}
.card a.card__link:hover { color: var(--brass-dk); }

/* Split content */
.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1.35fr .95fr; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.prose p { font-size: 1.04rem; }
.figure {
  border: 1px solid var(--bone-2);
  border-radius: var(--rad);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lift);
}
.figure figcaption {
  padding: .85rem 1.1rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
  border-top: 1px solid var(--bone-2);
}

/* ==========================================================================
   EVENT BANNER (Coast to Coast)
   ========================================================================== */
.flag-banner {
  position: relative;
  background: linear-gradient(100deg, var(--navy-700), var(--navy-900) 65%);
  color: var(--bone);
  border-block: 3px solid var(--brass);
  overflow: hidden;
}
.flag-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(200,162,74,.09) 0 12px, transparent 12px 34px);
}
.flag-banner__inner {
  position: relative;
  width: var(--shell); margin-inline: auto;
  padding: 2.6rem 0;
  display: flex; gap: 2rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
/* Event-palette variant, used on the Coast to Coast page */
.flag-banner--c2c {
  background: linear-gradient(100deg, var(--c2c-navy), #0A1A55 70%);
  border-block-color: var(--c2c-yellow);
}
.flag-banner--c2c::before {
  background-image: repeating-linear-gradient(115deg, rgba(248,233,6,.1) 0 12px, transparent 12px 34px);
}
.flag-banner--c2c .flag-banner__tag { background: var(--c2c-yellow); color: var(--c2c-navy); }
.flag-banner--c2c .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -12px rgba(247,94,9,.85), 0 0 0 1px rgba(248,233,6,.6);
}

.flag-banner__tag {
  display: inline-block;
  background: var(--brass); color: var(--navy-900);
  font-weight: 800; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .38rem .8rem; border-radius: 2px; margin-bottom: .9rem;
}
.flag-banner h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); color: var(--bone); margin-bottom: .35em; }
.flag-banner p { color: rgba(245,242,234,.82); max-width: 54ch; margin-bottom: 0; }

/* Status-check strip (Tramps page) */
.check-strip {
  background: var(--navy-900);
  border-block: 3px solid var(--brass);
}
.check-strip__inner {
  width: var(--shell); margin-inline: auto;
  padding: 2rem 0;
  display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.check-strip__text { display: flex; align-items: center; gap: 1rem; color: var(--bone); }
.check-strip__text strong {
  font-family: var(--font-display); font-weight: var(--display-weight); text-transform: uppercase;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem); line-height: 1.05; letter-spacing: var(--display-track);
}
.pulse-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--go); flex: none;
  box-shadow: 0 0 0 0 rgba(47,160,92,.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(47,160,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,160,92,0); }
}

/* ==========================================================================
   FIXTURE LIST — match details left, Tramps status right
   ========================================================================== */
.legend {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  padding: 1.15rem 1.4rem;
  background: #fff;
  border: 1px solid var(--bone-2);
  border-left: 4px solid var(--navy-700);
  border-radius: var(--rad);
  margin-bottom: 2rem;
}
.legend__item { display: flex; align-items: center; gap: .6rem; font-size: .88rem; }
.legend__item b { font-weight: 700; }
.legend__item span.lamp { flex: none; }

.lamp {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}
.lamp--open   { background: var(--go);   box-shadow: inset 0 0 0 1px rgba(0,0,0,.15), 0 0 12px rgba(47,160,92,.65); }
.lamp--closed { background: var(--stop); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15), 0 0 12px rgba(201,55,46,.5); }
.lamp--tbd    { background: var(--wait); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15), 0 0 12px rgba(226,167,42,.5); }

.fixture-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.chip {
  border: 1px solid var(--bone-2);
  background: #fff;
  padding: .5rem 1rem;
  font: inherit; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px; cursor: pointer;
  transition: .16s;
}
.chip[aria-pressed="true"] { background: var(--navy-700); color: var(--bone); border-color: var(--navy-700); }

.fixtures { display: flex; flex-direction: column; gap: .85rem; }

.fixture {
  display: grid;
  grid-template-columns: 92px 1fr 250px;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--bone-2);
  border-radius: var(--rad);
  padding: 1.15rem 1.4rem;
  transition: box-shadow .18s ease, transform .18s ease;
}
.fixture:hover { box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.fixture--next { border-left: 5px solid var(--brass); }
.fixture--flag { border-left: 5px solid var(--brass); background: linear-gradient(90deg, rgba(200,162,74,.09), #fff 42%); }

.fixture__date { text-align: center; border-right: 1px solid var(--bone-2); padding-right: 1.2rem; }
.fixture__dow { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.fixture__day { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 2.35rem; line-height: 1; color: var(--navy-800); }
.fixture__mon { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-dk); }

.fixture__meta { min-width: 0; }
/* The Home/Away chip sits inside the opponent heading, so the heading is a flex
   row with a real gap. Previously the chip's padding rule was scoped to
   .fixture__sub — where the chip does not live — so it inherited only its
   background colour and sat flush against the team name at display size.
   Long club names made the two bleed together on narrow screens. */
.fixture__opp {
  font-family: var(--font-display); font-size: 1.45rem; line-height: 1.1;
  color: var(--navy-900); margin-bottom: .35rem;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .4rem .65rem;
}
.fixture__sub { font-size: .87rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: .35rem .9rem; }

.ha {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: .62rem; line-height: 1.5;
  padding: .22rem .55rem;
  border-radius: 2px;
  white-space: nowrap;
}
.ha--h { background: var(--navy-700); color: var(--bone); }
.ha--a { background: var(--bone-2); color: var(--navy-800); }
.fixture__note {
  margin-top: .5rem; font-size: .84rem; color: var(--navy-700);
  border-left: 2px solid var(--brass); padding-left: .7rem;
}

.fixture__status {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem .95rem;
  border-radius: var(--rad);
  border: 1px solid var(--bone-2);
  background: var(--bone);
}
.fixture__status .lamp { width: 18px; height: 18px; }
.status__label { font-weight: 700; font-size: .82rem; line-height: 1.25; }
.status__hint { font-size: .74rem; color: var(--muted); line-height: 1.3; }
.status--open   { border-color: rgba(47,160,92,.4);  background: rgba(47,160,92,.07); }
.status--closed { border-color: rgba(201,55,46,.35); background: rgba(201,55,46,.06); }
.status--tbd    { border-color: rgba(226,167,42,.45);background: rgba(226,167,42,.09); }

@media (max-width: 820px) {
  .fixture { grid-template-columns: 72px 1fr; gap: 1rem 1.1rem; }
  .fixture__date { padding-right: .9rem; }
  .fixture__status { grid-column: 1 / -1; }
}

/* ==========================================================================
   MAP + FORM
   ========================================================================== */
.map-frame {
  border: 1px solid var(--bone-2);
  border-top: 4px solid var(--brass);
  border-radius: var(--rad);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lift);
}
.map-frame iframe { width: 100%; height: 440px; border: 0; display: block; }
.map-facts { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-top: 1.6rem; }
.map-fact { border-left: 3px solid var(--brass); padding-left: 1rem; }
.map-fact dt { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.map-fact dd { margin: 0; font-weight: 600; }

.form-panel {
  background: #fff;
  border: 1px solid var(--bone-2);
  border-top: 4px solid var(--brass);
  border-radius: var(--rad);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.form-panel iframe { width: 100%; min-height: 900px; border: 0; }
.form-fallback { padding: clamp(1.6rem, 4vw, 2.8rem); }
.form-fallback ol { padding-left: 1.2rem; color: var(--muted); }
.form-fallback code {
  background: var(--bone-2); padding: .12rem .38rem; border-radius: 3px;
  font-size: .88em; word-break: break-all;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(245,242,234,.72);
  border-top: 3px solid var(--brass);
  padding: 3.5rem 0 2rem;
  font-size: .92rem;
}
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-size: .74rem; letter-spacing: .2em; color: var(--brass);
  font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--brass-lt); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(245,242,234,.13);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .78rem; color: rgba(245,242,234,.5);
}

/* ==========================================================================
   COAST TO COAST HERO
   Built around the Premier League's official Tottenham poster. The poster is
   shown whole and never cropped — it's a print piece with its own frame, and
   cutting into it would look like a mistake. Everything around it is sampled
   from its own palette so the page reads as an extension of the artwork.
   ========================================================================== */
.c2c-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--c2c-navy);
  border-bottom: 4px solid var(--c2c-yellow);
}
.c2c-hero__wash {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/c2c-backdrop.jpg");
  background-size: cover;
  background-position: center;
  opacity: .5;
}
.c2c-hero::after {          /* keeps type legible over the sunset */
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg, rgba(0,10,61,.95) 0%, rgba(0,10,61,.86) 44%, rgba(0,10,61,.5) 100%),
    linear-gradient(180deg, rgba(0,10,61,.55) 0%, transparent 40%);
}
/* star rail, lifted from the poster's border */
.c2c-hero__stars {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.55) 1.4px, transparent 1.5px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000 0 14%, transparent 42%);
  opacity: .5;
}

.c2c-hero__inner {
  position: relative; z-index: 3;
  width: var(--shell); margin-inline: auto;
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .c2c-hero__inner { grid-template-columns: 1fr; }
  /* justify-self: end is inherited from the desktop rule and pins the poster to
     one edge of a full-width column. Centre it explicitly on mobile. */
  .c2c-hero__art {
    order: -1;
    max-width: 340px;
    justify-self: center;
    margin-inline: auto;
  }
}

.c2c-hero__tag {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--c2c-yellow); color: var(--c2c-navy);
  font-weight: 800; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .42rem .85rem; margin-bottom: 1.1rem;
}
.c2c-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  color: var(--c2c-cream);
  line-height: .92;
  margin-bottom: .3em;
}
.c2c-hero h1 em { font-style: normal; display: block; color: var(--c2c-yellow); }
.c2c-hero__meta {
  display: flex; flex-wrap: wrap; gap: .55rem 1.6rem;
  margin: 0 0 1.3rem;
  font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c2c-amber);
}
.c2c-hero__lede { color: rgba(255,255,255,.9); max-width: 52ch; font-size: 1.05rem; }

.c2c-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
/* Two buttons, clearly different in weight but identical in behaviour */
.c2c-hero__actions .btn { box-shadow: 0 10px 24px -16px rgba(0,0,0,.9); }
.c2c-hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -12px rgba(247,94,9,.85), 0 0 0 1px rgba(248,233,6,.6);
}
.btn--c2c-primary { --btn-bg: var(--c2c-yellow); --btn-fg: var(--c2c-navy); }
.btn--c2c-primary:hover { --btn-bg: #FFF45C; }
.btn--c2c-secondary {
  --btn-bg: rgba(0,10,61,.72);
  --btn-fg: var(--c2c-cream);
  border: 1.5px solid var(--c2c-orange);
}
.btn--c2c-secondary:hover { --btn-bg: var(--c2c-orange); --btn-fg: var(--c2c-navy); }

.c2c-hero__art {
  justify-self: end;
  width: 100%;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.95);
  background: var(--c2c-navy);
  transition: transform .3s ease;
}
/* Only on devices that genuinely hover. On touch, a tap can latch the hover
   state, leaving the poster rotated and overflowing its column. */
@media (hover: hover) {
  .c2c-hero__art:hover { transform: rotate(-1deg) scale(1.015); }
}
.c2c-hero__art img { width: 100%; height: auto; display: block; }

/* Small print under the poster */
.c2c-hero__credit {
  position: relative; z-index: 3;
  width: var(--shell); margin-inline: auto;
  padding-bottom: 1.4rem;
  font-size: .72rem; color: rgba(255,255,255,.55);
}

/* ==========================================================================
   COAST TO COAST — FULL PAGE THEME
   Applied via <body class="c2c-page">. This page steps out of the site's
   navy-and-brass entirely and runs the event's own palette top to bottom.
   Deliberate: it's a landing page for one thing, on one date.
   ========================================================================== */
.c2c-page { background: var(--c2c-navy); }

.c2c-band {
  position: relative;
  background: var(--c2c-navy);
  color: var(--c2c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}
.c2c-band--alt { background: #050F4A; }
.c2c-band--alt::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(248,233,6,.055) 0 12px, transparent 12px 36px);
}
.c2c-band > .shell { position: relative; z-index: 1; }
.c2c-band h2 { color: var(--c2c-cream); font-size: clamp(1.9rem, 4vw, 3rem); }
.c2c-band h3 { color: var(--c2c-cream); }
.c2c-band p  { color: rgba(255,255,255,.86); }
.c2c-eyebrow {
  font-weight: 700; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c2c-amber); margin: 0 0 .9rem;
}
.c2c-rule { height: 4px; width: 68px; background: var(--c2c-yellow); margin: 0 0 1.6rem; }

/* At a glance */
.c2c-facts {
  display: grid; gap: 0; margin: 0;
  border: 1px solid rgba(248,233,6,.35);
  background: rgba(255,255,255,.04);
}
.c2c-facts > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid rgba(248,233,6,.18);
}
.c2c-facts > div:last-child { border-bottom: 0; }
.c2c-facts dt {
  font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c2c-amber); margin: 0;
}
.c2c-facts dd { margin: 0; font-weight: 600; text-align: right; color: var(--c2c-cream); }

/* On the day */
.c2c-cards { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.c2c-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 4px solid var(--c2c-yellow);
  padding: 1.8rem 1.6rem;
}
.c2c-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.c2c-card p { margin: 0; color: rgba(255,255,255,.8); font-size: .96rem; }

/* Closing CTA */
.c2c-cta {
  background: linear-gradient(100deg, var(--c2c-red) 0%, var(--c2c-orange) 45%, var(--c2c-amber) 100%);
  border-block: 4px solid var(--c2c-navy);
}
.c2c-cta__inner {
  width: var(--shell); margin-inline: auto;
  padding: 2.6rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.6rem 2.5rem; flex-wrap: wrap;
}
.c2c-cta h2 { color: var(--c2c-navy); font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: .25em; }
.c2c-cta p { color: rgba(0,10,61,.85); margin: 0; font-weight: 600; max-width: 48ch; }
.btn--c2c-dark { --btn-bg: var(--c2c-navy); --btn-fg: var(--c2c-cream); box-shadow: none; }
.btn--c2c-dark:hover { --btn-bg: #001470; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,10,61,.9); }

/* ==========================================================================
   SOCIAL BAND
   ========================================================================== */
.social-band {
  background: var(--navy-900);
  border-block: 1px solid rgba(200, 162, 74, .3);
  position: relative;
  overflow: hidden;
}
.social-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(200,162,74,.07) 0 10px, transparent 10px 30px);
}
.social-band__inner {
  position: relative;
  width: var(--shell); margin-inline: auto;
  padding: 2.4rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem 2.5rem; flex-wrap: wrap;
}
.social-band__lede { color: var(--bone); max-width: 40ch; }
.social-band__lede h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .3em; color: var(--bone); }
.social-band__lede p { margin: 0; color: rgba(245,242,234,.72); font-size: .96rem; }

/* Icon-only tiles. The platform name lives in aria-label, so screen readers
   still get it even though nothing is drawn. */
.social-list { display: flex; gap: .7rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.social-link {
  position: relative;
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border: 1px solid rgba(245, 242, 234, .2);
  border-radius: var(--rad);
  background: rgba(245, 242, 234, .05);
  color: var(--bone);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.social-link svg { width: 25px; height: 25px; fill: currentColor; }
.social-link:hover {
  transform: translateY(-3px);
  background: rgba(110, 67, 168, .3);
  border-color: var(--brass);
  box-shadow: 0 12px 26px -12px rgba(110, 67, 168, .9);
}
.social-link:focus-visible { outline: 3px solid var(--brass-lt); outline-offset: 3px; }

/* Coming soon — dimmed, not a link, with a small badge so the dimming reads
   as "not yet" rather than "broken". */
.social-link--soon {
  cursor: default;
  border-style: dashed;
  border-color: rgba(245, 242, 234, .22);
  color: rgba(245, 242, 234, .45);
}
.social-link--soon:hover {
  transform: none; background: rgba(245,242,234,.05);
  border-color: rgba(245,242,234,.22); box-shadow: none;
}
.social-link--soon::after {
  content: "Soon";
  position: absolute; bottom: -9px; left: 50%; translate: -50% 0;
  background: var(--brass); color: var(--navy-900);
  font-size: .54rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .12rem .38rem; border-radius: 2px;
}

@media (max-width: 560px) {
  .social-list { gap: .55rem; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
