/* =====================================================
   NYNJ 26 — Inspired Design Study
   Light theme · image-cutout hero · parallax · WE ARE 26
   ===================================================== */

:root {
  /* Palette */
  --bg: #ffffff;
  --bg-soft: #f5f3ee;
  --ink: #0b1f5b;
  --ink-soft: #1a2a6b;
  --ink-mute: #4a5378;
  --ink-faint: #8a92a8;
  --line: #e6e4dd;
  --line-strong: #cfccc2;

  --warm: #ff5a1f;       /* orange section */
  --warm-deep: #d8430e;
  --gold: #ffd23f;
  --teal: #1bb0a7;
  --cream: #faf8f1;

  --hash-bg: #0b1f5b;
  --hash-fg: #faf8f1;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-1: 0 6px 20px rgba(11, 31, 91, 0.08);
  --shadow-2: 0 24px 60px rgba(11, 31, 91, 0.18);

  --hash-h: 32px;
  --header-h: 84px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);

  --pad: clamp(20px, 4vw, 64px);
  --maxw: 1440px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  /* IMPORTANT: must be `clip`, not `hidden`.
     `overflow-x: hidden` silently turns the body into a scroll
     container (overflow-y becomes `auto`), which breaks
     `position: sticky` on every descendant (the sticky pano in
     particular). `overflow-x: clip` prevents horizontal scroll
     without creating a scroll context. */
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}
a:hover { color: var(--warm); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

sup { font-size: 0.5em; vertical-align: super; }

::selection { background: var(--warm); color: #fff; }
:focus-visible { outline: 2px solid var(--warm); outline-offset: 3px; border-radius: 4px; }

/* ============== SHARED TYPE ============== */
.section__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 1rem;
  text-transform: uppercase;
  color: var(--ink);
}

.section__lede {
  color: var(--ink-mute);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  max-width: 56ch;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.eyebrow--center { justify-content: center; }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.18);
}

/* ============== BUTTONS ============== */
.btn {
  --bh: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--bh);
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn__arrow { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-1); }
.btn--primary:hover {
  background: var(--warm);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.32);
}

.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

/* ============== HASHBAR (top ticker) ============== */
.hashbar {
  background: var(--hash-bg);
  color: var(--hash-fg);
  overflow: hidden;
  height: var(--hash-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 60;
}
.hashbar__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  padding-left: 18px;
}
.hashbar__half {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
  padding-right: clamp(40px, 6vw, 80px);
}
.hashbar__ca {
  letter-spacing: 0.08em;
  color: rgba(255, 240, 220, 0.98);
  font-weight: 800;
}
.hashbar__track i {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--warm); flex: none;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ============== MASTHEAD ============== */
.masthead {
  position: sticky;
  top: var(--hash-h);
  z-index: 55;
  background: #fff;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--pad);
}

.masthead__nav {
  display: flex;
  gap: clamp(0.4rem, 1.4vw, 1.2rem);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.masthead__nav--left { justify-content: flex-start; }
.masthead__nav--right { justify-content: flex-end; }

.masthead__nav a {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.25s var(--ease);
}
.masthead__nav a:hover { color: var(--warm); }
.masthead__nav a.has-caret::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--ease);
}
.masthead__nav a.has-caret:hover::after,
.masthead__nav .nav-item--drop:hover a.has-caret::after,
.masthead__nav .nav-item--drop:focus-within a.has-caret::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

/* Dropdown trigger wrapper — keeps the panel anchored under the link
   and lets us flip the caret without losing hover when the cursor
   moves down onto the panel itself. */
.nav-item--drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  min-width: 240px;
  padding: 8px 0;
  margin-top: 6px;
  box-shadow: 0 14px 30px rgba(11, 31, 91, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease),
    visibility 0s linear 0.18s;
  z-index: 50;
}
/* Invisible buffer so the cursor can travel from the link down to the
   panel without crossing a gap and losing the :hover state. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.nav-item--drop:hover .nav-dropdown,
.nav-item--drop:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.nav-dropdown a {
  display: block;
  padding: 14px 22px;
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--ink); }

.masthead__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.masthead__logo:hover { transform: scale(1.04); }
.brand-mark {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
}

.masthead__burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  justify-self: end;
}
.masthead__burger span {
  position: absolute;
  left: 12px; right: 12px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.masthead__burger span:nth-child(1) { top: 16px; }
.masthead__burger span:nth-child(2) { top: 21px; }
.masthead__burger span:nth-child(3) { top: 26px; }
.masthead__burger[aria-expanded='true'] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.masthead__burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.masthead__burger[aria-expanded='true'] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .masthead { grid-template-columns: 1fr auto auto; }
  .masthead__nav { display: none; }
  .masthead__burger { display: block; }
}

/* ============== OVERLAY MENU (mobile full-screen — NYNJ ref) ==============
   Royal blue panel; top-right CLOSE; left-stacked condensed type;
   <details> accordions mimic chevron rows; footer social squares. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: #2b59ff;
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.86, 0, 0.07, 1);
  visibility: hidden;
}
.overlay.open {
  transform: translateY(0);
  visibility: visible;
}

.overlay__sheet {
  position: relative;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: calc(env(safe-area-inset-top, 0px) + 72px) var(--pad) calc(env(safe-area-inset-bottom, 0px) + 28px);
}

.overlay__close {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  right: var(--pad);
  padding: 0.5rem 0;
  margin: 0;
  border: none;
  background: none;
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.overlay__nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  max-width: 28rem;
  -webkit-overflow-scrolling: touch;
}

.overlay__link {
  font-family: 'Anton', 'Archivo Black', sans-serif;
  font-size: clamp(1.45rem, 6.2vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.06;
  padding: 0.42rem 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.overlay__link:hover { opacity: 0.75; }

/* Accordion rows with chevron */
.overlay__accordion {
  margin: 0;
  padding: 0;
  border: none;
}
.overlay__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: 'Anton', 'Archivo Black', sans-serif;
  font-size: clamp(1.45rem, 6.2vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.06;
  padding: 0.42rem 0;
  padding-right: 6px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.overlay__summary::-webkit-details-marker { display: none; }
.overlay__summary::marker { content: none; }

.overlay__summary::after {
  content: '';
  flex-shrink: 0;
  width: 0.38em;
  height: 0.38em;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg) translate(-10%, -10%);
  transition: transform 0.25s var(--ease);
}
.overlay__accordion[open] .overlay__summary::after {
  transform: rotate(-135deg) translate(10%, -10%);
}

.overlay__panel {
  display: flex;
  flex-direction: column;
  padding: 2px 0 10px 0.15rem;
  border-left: 2px solid rgba(255, 255, 255, 0.28);
  margin: 4px 0 6px 0.35rem;
}
.overlay__panel a {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0 0.45rem 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.overlay__panel a:hover { opacity: 0.7; }

.overlay__social {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}

.overlay__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.overlay__soc:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.overlay__soc svg {
  width: 20px;
  height: 20px;
}

/* ============== CUTOUT HERO ==============
   Approach (inverted from the previous attempt):

   • The SECTION is a solid white block.
   • The VIDEO is masked DIRECTLY with logo-shape.png,
     which is opaque only where the logo paths are.
   • Result: the video is clipped to the logo silhouettes
     (trophy + "26" + "NEW YORK NEW JERSEY") and the
     white section shows everywhere else — no more
     translucent edges, no need for a separate sheet,
     and no dependence on `mask-mode: luminance`.
   • The white "FIFA" knockout inside the source PNG
     becomes a transparent area in the inverted mask,
     so the section's white shows through where FIFA
     sits — giving a solid white FIFA wordmark on top
     of the video, just like the reference.
   =========================================== */
.cutout-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  /* Fill the area below hashbar + masthead so the cutout
     occupies the whole first screen on initial paint. */
  min-height: calc(100svh - var(--hash-h) - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cutout-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.08) contrast(1.03);
  background: #0b1f5b;

  -webkit-mask-image: url('../assets/icons/logo-shape.png');
          mask-image: url('../assets/icons/logo-shape.png');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: clamp(720px, 78vw, 1500px) auto;
          mask-size: clamp(720px, 78vw, 1500px) auto;
}

/* No longer needed — left as a no-op so existing markup
   doesn't 404 on the selector. */
.cutout-hero__sheet { display: none; }

/* Off-screen accessible label */
.cutout-hero__sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Slow / metered connections: respect users that opted in */
@media (prefers-reduced-data: reduce) {
  .cutout-hero__video { display: none; }
  .cutout-hero { background-image: url('../assets/video/hero-poster.jpg'); background-size: cover; background-position: center; }
}

@media (max-width: 720px) {
  /* Fill the first screen so only the masked logo/video shows on
     landing; the mission headline sits below the fold until scroll.
     The old 55vh cap let "Home of the … Final" peek into view. */
  .cutout-hero {
    min-height: calc(100svh - var(--hash-h) - var(--header-h));
  }
  .cutout-hero__video {
    -webkit-mask-size: 92vw auto;
            mask-size: 92vw auto;
  }
}

/* ============== MISSION ============== */
.mission {
  background: #fff;
  padding: clamp(60px, 10vw, 140px) var(--pad);
  text-align: center;
}
.mission__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(2.4rem, 6.8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 auto 1.6rem;
  max-width: 16ch;
  color: var(--ink);
  text-transform: uppercase;
}
.mission__copy {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 72ch;
  margin: 0 auto 1.2rem;
}
.mission__sub {
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--warm);
  margin: 1.5rem 0 0;
}

/* ============== PANO (sticky parallax video) ==============
   .pano-stage is a tall outer wrapper that gives the sticky
   .pano headroom to stay pinned. The orange .weare section
   that follows in flow has z-index:2 and a solid background,
   so as the user scrolls it climbs UP and covers the pinned
   pano — the "next page" pop-up effect from the reference. */
.pano-stage {
  position: relative;
  /* Tall scroll runway so the skyline pano pins longer before .weare
     slides over it (stronger “cover” effect). */
  height: 200vh;
}
.pano {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}
.pano__layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: center center;
  /* Scroll-driven transforms applied in script.js (no transition:
     stays pinned to finger/mouse while scrolling). */
  will-change: transform;
}
.pano__video, .pano__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pano__fallback {
  z-index: 0;
  filter: saturate(0.95) brightness(0.85);
  animation: kenBurns 24s ease-in-out infinite alternate;
}
.pano__video {
  z-index: 1;
  filter: saturate(0.95) brightness(0.7);
}
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0,0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}

.pano::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(60% 50% at 30% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.65) 100%);
}

.pano__overlay {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 8vw, 120px) var(--pad);
  color: #fff;
}
.pano__kicker {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
  opacity: 0.92;
}
.pano__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.pano__copy {
  max-width: 60ch;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin: 0;
}

@media (max-width: 680px) {
  .pano__video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pano__video, .pano__fallback { animation: none; }
  .pano-stage { height: auto; }
  .pano { position: relative; }
}

@media (max-width: 680px) {
  /* On phones give the pinned pano extra runway so the orange
     “WE ARE 26” block reads as a deliberate page climbing up. */
  .pano-stage { height: 210vh; }
}

/* ============== WE ARE 26 (orange) ============== */
.weare {
  background: var(--warm);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 90px) 0 0;
  /* Climbs UP over the sticky .pano in the previous section,
     producing the "next page rises in" parallax. */
  z-index: 2;
  box-shadow:
    0 -24px 60px rgba(0, 0, 0, 0.2),
    0 -80px 100px rgba(0, 0, 0, 0.12);
}
.weare__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.weare__type { width: 100%; height: auto; }

.weare__brand {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 1rem;
}
.weare__trophy {
  grid-row: 1 / 3;
  width: clamp(120px, 16vw, 220px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
  animation: trophyFloat 6s ease-in-out infinite alternate;
}
@keyframes trophyFloat {
  0%   { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}

.weare__26 {
  width: 100%;
  height: auto;
  margin-bottom: -2rem;
}
.weare__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
}
.weare__wordmark strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
.weare__wordmark span {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.weare__marquee {
  margin-top: clamp(40px, 6vw, 80px);
  background: var(--ink);
  color: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.weare__marqtrack {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
}
.weare__marqtrack i {
  width: 14px; height: 14px;
  background: var(--warm);
  border-radius: 999px;
  flex: none;
}

@media (max-width: 900px) {
  .weare__inner { grid-template-columns: 1fr; }
  .weare__brand { justify-content: center; }
  .weare__trophy { width: 140px; }
}

/* ============== COUNTDOWN ==============
   Royal-blue panel torn out of the white pages above and
   below. Huge white digits with colons rendered as
   pseudo-elements in the gaps between grid cells. */
.countdown {
  position: relative;
  padding: clamp(100px, 14vw, 200px) var(--pad);
  text-align: center;
  background: #1f3eff;
  color: #fff;
  border: none;
  overflow: hidden;
}
/* Jagged "torn paper" teeth at the top/bottom. The teeth are
   white strips repeating across the section's width so the
   navy looks like it was ripped out of the surrounding white. */
.countdown::before,
.countdown::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: clamp(28px, 3.4vw, 44px);
  background-image: repeating-linear-gradient(
    90deg,
    #fff 0 5.4%,
    transparent 5.4% 10.8%
  );
  pointer-events: none;
  z-index: 1;
}
.countdown::before { top: 0; }
.countdown::after  { bottom: 0; }

.countdown__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.countdown__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2.6vw, 2.4rem);
  align-items: end;
}
.countdown__grid li {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  text-align: center;
}
/* Override the old gradient underline */
.countdown__grid li::before { content: none; }

/* Colons sit in the gap to the LEFT of each li after the first.
   Positioned with transform so it doesn't disturb grid sizing. */
.countdown__grid li + li::before {
  content: ':';
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(calc(-50% - clamp(0.25rem, 1.3vw, 1.2rem))) translateY(-6%);
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(2.8rem, 11vw, 8.5rem);
  line-height: 0.9;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}

.countdown__grid strong {
  display: block;
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(3rem, 14vw, 11rem);
  line-height: 0.88;
  color: #fff;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.countdown__grid span {
  display: block;
  margin-top: clamp(0.6rem, 1.4vw, 1.1rem);
  font-size: clamp(0.72rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  text-transform: none;
}

.countdown__caption {
  margin: clamp(1.6rem, 3vw, 2.8rem) 0 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 640px) {
  /* Keep all four cells in a row but tighter so it still reads
     as a single bold ticker on phones. */
  .countdown__grid { gap: 0.3rem; }
  .countdown__grid li + li::before {
    font-size: clamp(2rem, 9vw, 4rem);
  }
}

/* ============== SECTION HEAD ============== */
.section__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: 0 0 1rem;
}
.section__head--split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
}
.section__head--center { text-align: center; }
.section__head--center .section__lede { margin: 0 auto; }
@media (max-width: 800px) {
  .section__head--split { grid-template-columns: 1fr; }
}

/* ============== SCHEDULE ============== */
.schedule {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.schedule__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 2px solid var(--ink);
}
.match {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr 0.9fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
  position: relative;
}
.match::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--warm);
  transition: width 0.3s var(--ease);
}
.match:hover { padding-left: 1.5rem; background: rgba(255, 90, 31, 0.03); }
.match:hover::before { width: 4px; }

.match__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  color: var(--warm);
}
.match__date { display: flex; flex-direction: column; line-height: 1.2; }
.match__date strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.match__date span { font-size: 0.85rem; color: var(--ink-faint); }

.match__teams {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.match__teams .flag {
  width: 36px; height: 26px;
  border-radius: 4px;
  flex: none;
  background-size: cover; background-position: center;
  box-shadow: 0 2px 6px rgba(11, 31, 91, 0.2);
}
.match__teams .vs {
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3em;
  padding: 0 0.4rem;
}
.match__stage {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.match__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 800;
  color: var(--ink);
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.match__cta:hover { background: var(--ink); color: #fff; }

@media (max-width: 900px) {
  .match {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      'num date'
      'num teams'
      'stage stage'
      'cta cta';
    gap: 0.4rem 1rem;
  }
  .match__num { grid-area: num; font-size: 2rem; }
  .match__date { grid-area: date; }
  .match__teams { grid-area: teams; flex-wrap: wrap; }
  .match__stage { grid-area: stage; }
  .match__cta { grid-area: cta; justify-self: start; margin-top: 0.5rem; }
}

.schedule__full {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--warm);
}
.schedule__full svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.schedule__full:hover svg { transform: translateX(4px); }

/* ============== EVENT MAP ============== */
.venues {
  padding: 0;
  max-width: none;
  margin: 0;
}
.map {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 7;
  background: #050e30;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.map__base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.map__title {
  position: absolute;
  left: 50%;
  top: clamp(28px, 4vw, 64px);
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.map-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 1;
  color: rgba(220, 230, 255, 0.6);
  font-size: clamp(0.62rem, 0.85vw, 0.78rem);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
  pointer-events: none;
}
.map-label--air {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(220, 230, 255, 0.75);
}
.map-label--air svg { width: 14px; height: 14px; opacity: 0.7; }

.map-pins {
  position: absolute;
  inset: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}

/* Teardrop pin head — classic rounded square rotated 45deg */
.map-pin__teardrop,
.map-pin__dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-pin__teardrop > *,
.map-pin__dot > * {
  transform: rotate(45deg);
}

.map-pin__teardrop {
  width: clamp(54px, 6vw, 78px);
  height: clamp(64px, 7.4vw, 92px);
  background: #fff;
  border: 3px solid #1bb0a7;
}
.map-pin__26 {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.map-pin__dot {
  width: clamp(40px, 4.6vw, 58px);
  height: clamp(48px, 5.4vw, 70px);
  background: linear-gradient(135deg, #16a39a 0%, #1bb0a7 100%);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
}

.map-pin__name {
  margin-top: clamp(8px, 1vw, 14px);
  color: #fff;
  font-size: clamp(0.7rem, 0.95vw, 0.85rem);
  font-weight: 700;
  text-align: center;
  max-width: 200px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  letter-spacing: 0.01em;
}

@media (max-width: 1000px) {
  .map { aspect-ratio: 4 / 3; }
  .map-pin__name { font-size: 0.72rem; max-width: 140px; }
  /* Hide the smallest typographic labels on smaller viewports
     so the pins don't get crowded. */
  .map-label { display: none; }
}
@media (max-width: 560px) {
  .map { aspect-ratio: 3 / 4; }
}

/* ============== STATS ============== */
.stats {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 70px) var(--pad);
}
.stats__list {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats__list strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats__list span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 700px) {
  .stats__list { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stats__list li:last-child { grid-column: span 2; }
}

/* ============== UPDATES ============== */
.updates {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.updates__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.update {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.update:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.update__img {
  aspect-ratio: 4 / 3;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--ease);
}
.update:hover .update__img { transform: scale(1.05); }
.update__body {
  padding: 1.2rem 1.2rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  flex: 1;
}
.update__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 800;
}
.update h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1.1;
  margin: 0.4rem 0 0.5rem;
  color: var(--ink);
}
.update a {
  margin-top: 0.8rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
}
@media (max-width: 1000px) { .updates__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .updates__grid { grid-template-columns: 1fr; } }

/* ============== CONTACT ============== */
.contact {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact__inner { max-width: var(--maxw); margin: 0 auto; }
.contact__tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1rem 0 2rem;
}
.contact__tab {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.25s var(--ease);
}
.contact__tab:hover { background: var(--ink); color: #fff; }
.contact__tab.active { background: var(--warm); color: #fff; border-color: var(--warm); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-1);
}
.contact__form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.contact__form input,
.contact__form textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.contact__form input:focus,
.contact__form textarea:focus { border-color: var(--warm); background: #fff; }
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__full { grid-column: span 2; }
.contact__submit {
  grid-column: span 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.contact__submit p {
  margin: 0; font-size: 0.9rem; color: var(--ink-mute);
  letter-spacing: 0; text-transform: none; font-weight: 400;
  max-width: 50ch;
}
.contact__submit a { color: var(--warm); font-weight: 700; }

@media (max-width: 700px) {
  .contact__form { grid-template-columns: 1fr; }
  .contact__full, .contact__submit { grid-column: span 1; }
}

/* ============== PARTNERS ============== */
.partners {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.partners__marquee {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 24px 0;
  margin-bottom: 2rem;
}
.partners__track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.partners__track span { display: inline-flex; align-items: center; }
.partners__track span::after {
  content: '·';
  margin-left: 56px;
  color: var(--warm);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.partner-card {
  padding: 2rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  background: #fff;
  text-align: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.partner-card strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.partner-card small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.partner-card:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: #fff;
}
.partner-card:hover small { color: rgba(255,255,255,0.7); }

@media (max-width: 700px) { .partners__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== NEWSLETTER ============== */
.newsletter {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  background: var(--ink);
  color: #fff;
}
.newsletter .eyebrow,
.newsletter .section__title,
.newsletter .section__lede { color: inherit; }
.newsletter .section__title { color: #fff; }
.newsletter .section__lede { color: rgba(255,255,255,0.75); }
.newsletter .eyebrow { color: rgba(255,255,255,0.85); }
.newsletter .eyebrow .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(255,210,63,0.2); }

.newsletter__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter__form {
  display: flex; gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  padding: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}
.newsletter__form input {
  flex: 1; background: transparent;
  border: 0; outline: none;
  color: #fff;
  padding: 0 1rem;
  font-size: 1rem;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form .btn--primary { background: var(--warm); }
.newsletter__form .btn--primary:hover { background: var(--gold); color: var(--ink); }

@media (max-width: 800px) {
  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; background: transparent; border: 0; padding: 0; gap: 0.75rem; }
  .newsletter__form input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 14px 18px;
  }
}

/* ============== FOOTER ============== */
.foot {
  padding: clamp(60px, 8vw, 100px) var(--pad) 24px;
  background: #04060d;
  color: rgba(255,255,255,0.75);
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot__brand svg { width: 200px; height: auto; }
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.foot__cols h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: #fff;
}
.foot__cols a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}
.foot__cols a:hover { color: var(--warm); }

.foot__bottom {
  max-width: var(--maxw);
  margin: 1.5rem auto 0;
  display: flex; justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.foot__bottom ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 1rem;
}
@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; gap: 2rem; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===========================================================
   VENUES PAGE (venues.html)
   =========================================================== */

/* ---------- Venue hero: giant stadium title + SVG bowl ---------- */
.venue-hero {
  background: #fff;
  padding: clamp(56px, 8vw, 110px) var(--pad) 0;
  text-align: center;
  overflow: hidden;
}
.venue-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.venue-hero__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(2.4rem, 8.5vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 0 auto;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 16ch;
}
.venue-hero__visual {
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  max-width: 1000px;
  filter: drop-shadow(0 30px 50px rgba(11, 31, 91, 0.16));
}
.venue-hero__visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Stadium information ---------- */
.stadium-info {
  background: #fff;
  padding: clamp(60px, 10vw, 130px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.stadium-info__head {
  max-width: 820px;
  margin: 0 auto clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}
.stadium-info__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 auto 1.1rem;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 14ch;
}
.stadium-info__lede {
  margin: 0 auto;
  color: var(--ink-mute);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  max-width: 700px;
}

.info-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.info-card {
  display: flex;
  flex-direction: column;
}
.info-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream) center / cover no-repeat;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}
.info-card__media::after {
  /* subtle dark gradient at the top so the white icon chip pops */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 91, 0.18) 0%, transparent 35%);
  z-index: 1;
}
.info-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(11, 31, 91, 0.18);
}
.info-card__icon svg {
  width: 22px;
  height: 22px;
}
.info-card__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  margin: 1rem 0 0.45rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.info-card__body {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.94rem;
  line-height: 1.5;
}
.info-card__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.info-card__body a:hover { color: var(--warm); }

@media (max-width: 900px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .info-card__media { aspect-ratio: 16 / 11; }
}

/* ---------- Team Base Camps (navy panel) ---------- */
.tbc {
  background: #0b1f5b;
  color: #fff;
  padding: clamp(60px, 10vw, 130px) 0 0;
  position: relative;
}
.tbc__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.tbc__title {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(2.6rem, 8.6vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}
.tbc__copy {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}
.tbc__copy .tbc__lede {
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  margin: 0 0 1.1rem;
}
.tbc__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 2rem;
  margin-top: 0.5rem;
}
.tbc__cols p { margin: 0; }
.tbc__cols p:last-child { grid-column: 1 / -1; }

.tbc__strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
}
.tbc__photo {
  aspect-ratio: 16 / 9;
  background: #07153f center / cover no-repeat;
}

@media (max-width: 900px) {
  .tbc__inner { grid-template-columns: 1fr; }
  .tbc__cols { grid-template-columns: 1fr; }
  .tbc__cols p:last-child { grid-column: auto; }
  .tbc__strip { grid-template-columns: 1fr; }
}

/* ============== A11Y / MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
