/* ============================================================
   MATCHDAY · La Hinchada USA — photo-first sports brand
   Dark canvas · Colombian flag accents · Inter Tight single family
   ============================================================ */

:root {
  /* Canvas */
  --m-bg:        #0f1419;   /* charcoal navy */
  --m-surface:   #1a2230;   /* elevated dark card */
  --m-surface-2: #232c3c;   /* second elevation */
  --m-line:      rgba(244,237,224,0.10);
  --m-line-2:    rgba(244,237,224,0.18);

  /* Type colors */
  --m-ink:       #f4ede0;   /* off-white, slightly warm */
  --m-mute:      #7a8696;   /* secondary text */
  --m-mute-2:    rgba(244,237,224,0.55);

  /* Colombian flag — functional accents */
  --m-yellow:    #FCD116;   /* primary CTA, countdown, highlights */
  --m-yellow-2:  #ffe04d;   /* hover/lift */
  --m-red:       #CE1126;   /* urgency, LIVE, sold-out */
  --m-blue:      #003893;   /* secondary, info chips */

  /* Soft overlays */
  --m-yellow-wash: rgba(252,209,22,0.10);
  --m-red-wash:    rgba(206,17,38,0.12);
  --m-photo-veil:  linear-gradient(180deg, rgba(15,20,25,0.3) 0%, rgba(15,20,25,0.85) 80%, rgba(15,20,25,0.95) 100%);

  /* Type */
  --m-font:      "Inter Tight", system-ui, sans-serif;
  --m-mono:      "DM Mono", "Space Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--m-bg); color: var(--m-ink);
  font-family: var(--m-font);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--m-yellow); color: var(--m-bg); }

.shell { max-width: 1440px; margin: 0 auto; }

/* ===== TYPE PRIMITIVES ===== */
.eyebrow {
  font-family: var(--m-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-mute);
}
.eyebrow.red { color: var(--m-red); }
.eyebrow.yel { color: var(--m-yellow); }
.eyebrow.blue { color: var(--m-blue); }

.h-display {
  font-family: var(--m-font);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.88;
  margin: 0;
  font-size: clamp(48px, 9vw, 140px);
  text-transform: uppercase;
}
.h-display .yel { color: var(--m-yellow); }
.h-display .red { color: var(--m-red); }

.h2-bold {
  font-family: var(--m-font);
  font-weight: 800; letter-spacing: -0.03em; line-height: 0.92;
  margin: 0;
  font-size: clamp(36px, 6vw, 88px);
  text-transform: uppercase;
}
.h2-bold .yel { color: var(--m-yellow); }
.h2-bold .red { color: var(--m-red); }

.h3-card {
  font-family: var(--m-font);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  margin: 0; font-size: 28px;
}

/* ===== STATUS CHIPS ===== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  padding: 6px 10px;
}
.chip.live    { background: var(--m-red); color: #fff; }
.chip.rsvp    { background: var(--m-yellow); color: var(--m-bg); }
.chip.info    { background: var(--m-blue); color: #fff; }
.chip.ghost   { background: transparent; color: var(--m-mute); border: 1px solid var(--m-line-2); }
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; animation: md-pulse 1.4s ease-in-out infinite;
}
@keyframes md-pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; cursor: pointer; border: 0;
  font-family: var(--m-font); font-size: 14px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 18px 28px;
  transition: transform .15s, background-color .15s, color .15s;
}
.btn-yellow {
  background: var(--m-yellow); color: var(--m-bg);
}
.btn-yellow:hover { background: var(--m-yellow-2); transform: translateY(-2px); }
.btn-red {
  background: var(--m-red); color: #fff;
}
.btn-red:hover { background: #e02545; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--m-ink);
  border: 1.5px solid var(--m-line-2); padding: 16.5px 26.5px;
}
.btn-ghost:hover { border-color: var(--m-yellow); color: var(--m-yellow); }
.btn-tiny {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--m-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--m-ink); border-bottom: 1px solid var(--m-yellow);
  padding-bottom: 2px;
}
.btn-tiny:hover { color: var(--m-yellow); }

/* ===== STICKY NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 64px;
  background: rgba(15,20,25,0.78);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--m-line);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--m-font); font-size: 16px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-brand img { height: 32px; width: auto; }
.nav-links {
  display: flex; gap: 32px;
  font-family: var(--m-font); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--m-mute);
}
.nav-links a { padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active {
  color: var(--m-ink); border-bottom-color: var(--m-yellow);
}
.nav-cta-row { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--m-yellow); color: var(--m-bg); border: 0;
  padding: 11px 18px;
  font-family: var(--m-font); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background-color .15s;
}
.nav-cta:hover { background: var(--m-yellow-2); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--m-red); animation: md-pulse 1.4s ease-in-out infinite; }
.nav-mobile-btn { display: none; background: none; border: 0; color: var(--m-ink); font-size: 22px; cursor: pointer; }

/* ===== FLIER HERO — full-bleed flier-image hero for the partner page ===== */
.flier-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  padding: 96px 64px;
  overflow: hidden;
  background: #0a1018;
}
.flier-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--flier-bg, none);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: saturate(1.05);
  z-index: 0;
}
.flier-hero::after {
  /* readable text overlay — darker at top and bottom, slightly lighter mid */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,16,24,0.55) 0%,
      rgba(10,16,24,0.30) 35%,
      rgba(10,16,24,0.55) 65%,
      rgba(10,16,24,0.92) 100%);
  z-index: 1;
}
.flier-hero .hero-content {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.flier-hero .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(252,209,22,0.95); color: var(--m-bg);
  padding: 10px 20px; border-radius: 999px;
  font-family: var(--m-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 28px;
}
.flier-hero .hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--m-red); animation: md-pulse 1.4s ease-in-out infinite;
}
.flier-hero .hero-logo {
  height: clamp(90px, 13vw, 140px); width: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.flier-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(40px, 9vw, 128px);
  font-weight: 900; line-height: 0.92; letter-spacing: -0.035em;
  color: #fff; margin: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0,0,0,0.7);
  /* Prevent overflow on small screens — single long words like "Cuadrangular" */
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.flier-hero h1 .yel { color: var(--m-yellow); }
.flier-hero .lede {
  font-family: var(--m-font); font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.55; color: rgba(255,255,255,0.92);
  margin: 28px auto 0; max-width: 720px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.flier-hero .price-row {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 36px;
}
.flier-hero .price-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,16,24,0.78); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  border: 1.5px solid rgba(252,209,22,0.45);
  font-family: var(--m-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.flier-hero .price-chip strong { color: var(--m-yellow); margin-left: 4px; }
.flier-hero .price-chip.free strong { color: var(--m-yellow); font-size: 16px; }
.flier-hero .hero-cta-row {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-top: 36px;
}
@media (max-width: 720px) {
  .flier-hero { padding: 48px 16px; min-height: 70vh; }
  .flier-hero::before { background-position: center; }
  /* Heavier overlay on mobile — flier is dense, text needs more contrast */
  .flier-hero::after {
    background:
      linear-gradient(180deg,
        rgba(10,16,24,0.78) 0%,
        rgba(10,16,24,0.55) 35%,
        rgba(10,16,24,0.75) 65%,
        rgba(10,16,24,0.95) 100%);
  }
  .flier-hero .hero-content { padding: 0 4px; }
  .flier-hero h1 { font-size: clamp(36px, 11vw, 56px); }
  .flier-hero .lede { font-size: 15px; margin-top: 20px; }
  .flier-hero .hero-eyebrow { font-size: 9px; letter-spacing: 0.14em; padding: 8px 14px; }
  .flier-hero .price-row { gap: 8px; margin-top: 24px; }
  .flier-hero .price-chip { padding: 10px 14px; font-size: 11px; letter-spacing: 0.10em; }
  .flier-hero .hero-cta-row { margin-top: 24px; flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .flier-hero .hero-cta-row .btn { width: 100%; text-align: center; justify-content: center; }
  .flier-hero .hero-logo { height: 80px; margin-bottom: 20px; }
}

/* ===== FREE STRIP — sitewide "100% FREE" announcement banner ===== */
.free-strip {
  position: relative;
  background: linear-gradient(90deg, var(--m-yellow) 0%, #ffe04d 50%, var(--m-yellow) 100%);
  color: var(--m-bg);
  padding: 14px 24px;
  text-align: center;
  font-family: var(--m-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 2px solid #0a1018;
}
.free-strip strong { font-weight: 900; letter-spacing: 0.16em; }
.free-strip .sep { display: inline-block; margin: 0 14px; opacity: 0.45; }
.free-strip .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--m-red); margin-right: 10px; vertical-align: middle;
  animation: md-pulse 1.4s ease-in-out infinite;
}
@media (max-width: 720px) {
  .free-strip { font-size: 10px; letter-spacing: 0.14em; padding: 12px 14px; }
  .free-strip .sep { margin: 0 8px; }
}

/* ===== HERO — full-bleed photo with overlay ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 64px 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/hero-fans.jpg');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--m-photo-veil);
  z-index: 1;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-family: var(--m-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--m-yellow);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--m-red); animation: md-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 16px var(--m-red);
}
.hero-logo {
  display: block; margin: 0 auto 32px;
  width: clamp(280px, 42vw, 520px); height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.hero-tagline {
  font-family: var(--m-mono); font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--m-ink); opacity: 0.85;
  margin: 0 0 40px;
}
.hero h1 {
  font-family: var(--m-font); font-weight: 900;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin: 0 auto 48px; max-width: 14ch;
  text-transform: uppercase;
}
.hero h1 .yel { color: var(--m-yellow); }

/* HUGE countdown */
.hero-countdown {
  display: flex; gap: 8px; align-items: baseline; justify-content: center;
  margin: 0 auto 48px;
  font-variant-numeric: tabular-nums;
}
.hero-countdown .item {
  display: flex; flex-direction: column; align-items: center;
  min-width: 88px;
}
.hero-countdown .v {
  font-family: var(--m-font); font-weight: 900;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--m-yellow);
  text-shadow: 0 4px 24px rgba(252,209,22,0.3);
}
.hero-countdown .l {
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--m-mute-2); margin-top: 6px;
}
.hero-countdown .sep {
  font-family: var(--m-font); font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  color: var(--m-yellow); opacity: 0.4;
  margin: 0 -4px;
  align-self: flex-start;
  line-height: 1;
}

.hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero-meta {
  margin-top: 32px;
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-mute-2);
}

/* Sponsor ticker thin band at the bottom of hero */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(15,20,25,0.85); backdrop-filter: blur(6px);
  border-top: 1px solid var(--m-line);
  padding: 10px 0; z-index: 3;
  overflow: hidden;
}
.hero-ticker .lane {
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap; animation: md-marq 38s linear infinite;
  font-family: var(--m-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--m-mute-2);
}
.hero-ticker .lane span.dot { color: var(--m-red); }
@keyframes md-marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTION BASE ===== */
section.md {
  padding: 100px 64px;
  position: relative;
}
section.md.bg-1 { background: var(--m-bg); }
section.md.bg-2 { background: var(--m-surface); }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.section-head .lede {
  font-family: var(--m-font); font-size: 17px; line-height: 1.5;
  color: var(--m-mute); max-width: 480px; margin: 0;
}

/* ===== NEXT FIXTURES (3 dark cards) ===== */
.fixtures-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.fix-card {
  position: relative; background: var(--m-surface);
  border: 1px solid var(--m-line);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s, border-color .2s;
  border-left-width: 4px;
  overflow: hidden;
}
.fix-card.col { border-left-color: var(--m-yellow); }
.fix-card.mex { border-left-color: #1eb53a; }  /* Mexico green */
.fix-card.usa { border-left-color: #1f5fbf; }  /* USA blue */
.fix-card.uzb { border-left-color: #1eb53a; }
.fix-card.por { border-left-color: var(--m-red); }
.fix-card:hover { transform: translateY(-3px); border-color: var(--m-line-2); }
.fix-card .top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.fix-card .date-eyebrow {
  font-family: var(--m-mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--m-mute);
}
.fix-card .matchup {
  font-family: var(--m-font); font-weight: 800;
  font-size: 28px; line-height: 1.08; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.fix-card .vs {
  font-family: var(--m-mono); font-size: 12px; font-weight: 700;
  color: var(--m-mute); margin: 0 6px;
}
.fix-card .kickoff {
  font-family: var(--m-font); font-weight: 900;
  font-size: 48px; line-height: 1; letter-spacing: -0.03em;
  color: var(--m-yellow);
  font-variant-numeric: tabular-nums;
}
.fix-card .kickoff .small {
  font-size: 16px; font-weight: 700; color: var(--m-mute); display: block;
  letter-spacing: .14em; margin-top: 6px;
}
.fix-card .cta-row { margin-top: auto; padding-top: 8px; }
.fix-card .cta-btn {
  display: inline-block; width: 100%;
  text-align: center; padding: 14px 0;
  background: transparent; color: var(--m-ink);
  border: 1px solid var(--m-line-2);
  font-family: var(--m-font); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background-color .15s, color .15s;
}
.fix-card .cta-btn:hover { background: var(--m-yellow); color: var(--m-bg); border-color: var(--m-yellow); }
.fix-card .flags { display: flex; align-items: center; gap: 12px; font-size: 36px; line-height: 1; }

/* ===== THE EXPERIENCE (split: stats + video) ===== */
.experience {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: center;
}
.experience .copy h2 { margin-bottom: 28px; }
.experience .copy .lede {
  font-family: var(--m-font); font-size: 19px; line-height: 1.55;
  color: var(--m-mute); margin: 0 0 40px; max-width: 440px;
}
.experience .stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px;
  border-top: 1px solid var(--m-line);
}
.experience .stat {
  padding-top: 24px; border-top: 0;
}
.experience .stat .v {
  font-family: var(--m-font); font-weight: 800;
  font-size: 56px; line-height: 1; letter-spacing: -0.03em;
  color: var(--m-yellow);
}
.experience .stat .l {
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-mute); margin-top: 8px;
}
.experience .video-tile {
  position: relative; aspect-ratio: 16/10;
  background: #000; overflow: hidden;
  border: 1px solid var(--m-line);
}
.experience .video-tile video, .experience .video-tile img {
  width: 100%; height: 100%; object-fit: cover;
}
.experience .video-tile .label {
  position: absolute; bottom: 14px; left: 16px;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.55);
  padding: 6px 10px;
}

/* ===== 3 ROOMS (edge-to-edge photo cards) ===== */
.rooms-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.room-card {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border: 1px solid var(--m-line);
  background: var(--m-surface);
  display: block;
  transition: transform .25s;
}
.room-card:hover { transform: translateY(-3px); }
.room-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.room-card:hover img { transform: scale(1.04); }
.room-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,25,0) 30%, rgba(15,20,25,0.95) 100%);
  pointer-events: none;
}
.room-card .pill {
  position: absolute; top: 18px; left: 18px; z-index: 2;
}
.room-card .body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 28px;
}
.room-card .loc {
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-yellow); margin-bottom: 10px;
}
.room-card h3 {
  font-family: var(--m-font); font-weight: 800;
  font-size: 34px; line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 12px; text-transform: uppercase;
}
.room-card .desc {
  font-family: var(--m-font); font-size: 14px;
  line-height: 1.5; color: var(--m-mute);
  margin: 0;
}
.room-card .arrow {
  display: inline-block; margin-top: 14px;
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--m-yellow);
}

/* ===== FUTSAL FEATURE (split panel) ===== */
.futsal {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--m-surface);
  border: 1px solid var(--m-line);
  overflow: hidden;
}
.futsal .photo {
  position: relative; min-height: 540px; overflow: hidden;
  background: linear-gradient(135deg, #1a4a2a 0%, #062b1b 100%);
}
.futsal .photo::before {
  content: '⚽'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 240px; opacity: 0.15;
}
.futsal .photo .badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--m-yellow); color: var(--m-bg);
  padding: 8px 14px;
  font-family: var(--m-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
.futsal .photo .label {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.futsal .body {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.futsal .eyebrow.red { color: var(--m-red); margin-bottom: 16px; }
.futsal h2 { margin-bottom: 36px; }
.futsal .meta-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 32px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--m-line);
  border-bottom: 1px solid var(--m-line);
}
.futsal .meta .l {
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-mute);
}
.futsal .meta .v {
  font-family: var(--m-font); font-weight: 800;
  font-size: 30px; line-height: 1; letter-spacing: -0.02em;
  margin-top: 8px;
}
.futsal .meta .v.yel { color: var(--m-yellow); }

/* ===== PAST MATCHES RECAP (full saturation posters) ===== */
.posters-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.poster {
  position: relative; aspect-ratio: 16/10;
  background: var(--m-surface); overflow: hidden;
  border: 1px solid var(--m-line);
}
.poster img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.poster:hover img { transform: scale(1.03); }
.poster::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,20,25,0.85), transparent 50%);
  pointer-events: none;
}
.poster .info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 24px 28px;
}
.poster .pill {
  background: var(--m-mute); color: #fff;
  padding: 4px 10px;
  font-family: var(--m-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 10px; display: inline-block;
}
.poster h3 {
  font-family: var(--m-font); font-weight: 800;
  font-size: 30px; line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 6px; text-transform: uppercase;
}
.poster .meta {
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--m-yellow);
}

/* ===== VIBE (big video + bento gallery) ===== */
.vibe-video {
  position: relative; aspect-ratio: 21/9;
  background: #000; overflow: hidden;
  border: 1px solid var(--m-line);
  margin-bottom: 18px;
}
.vibe-video video {
  width: 100%; height: 100%; object-fit: cover;
}
.vibe-video .label {
  position: absolute; bottom: 16px; left: 18px;
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.55);
  padding: 6px 10px;
}
.vibe-video .play-mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--m-yellow); color: var(--m-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; padding-left: 4px;
  box-shadow: 0 0 0 8px rgba(252,209,22,0.2), 0 8px 32px rgba(252,209,22,0.4);
}
.gallery-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery-bento .cell {
  position: relative; overflow: hidden;
  background: var(--m-surface);
  border: 1px solid var(--m-line);
}
.gallery-bento .cell.tall { grid-row: span 2; }
.gallery-bento .cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.gallery-bento .cell:hover img { transform: scale(1.04); }
.gallery-bento .cell .cap {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.55);
  padding: 5px 9px;
}

/* DJ residents */
.dj-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 56px; border-top: 1px solid var(--m-line);
}
.dj {
  padding: 28px 0 0;
  border-right: 1px solid var(--m-line);
  padding-left: 24px;
}
.dj:first-child { padding-left: 0; }
.dj:last-child { border-right: 0; }
.dj-name {
  font-family: var(--m-font); font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
}
.dj-tag {
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--m-yellow); margin-top: 10px;
}

/* ===== SIGUE LA FAMILIA ===== */
.familia { text-align: center; }
.familia h2 { margin: 0 0 16px; }
.familia .copy {
  font-family: var(--m-font); font-size: 17px; line-height: 1.55;
  color: var(--m-mute); max-width: 500px; margin: 0 auto 56px;
}
.familia .handles {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; max-width: 920px; margin: 0 auto;
}
.familia .handle {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--m-surface); color: var(--m-ink);
  border: 1px solid var(--m-line);
  padding: 14px 20px;
  font-family: var(--m-font); font-size: 14px; font-weight: 600;
  transition: all .15s;
}
.familia .handle:hover {
  background: var(--m-yellow); color: var(--m-bg);
  border-color: var(--m-yellow); transform: translateY(-2px);
}
.familia .handle svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== SPONSORS marquee (always full color) ===== */
.sponsors {
  padding: 56px 0;
  background: var(--m-surface);
  border-top: 1px solid var(--m-line);
  border-bottom: 1px solid var(--m-line);
  overflow: hidden;
}
.sponsors .lead { text-align: center; margin-bottom: 28px; }
.sponsors .lane {
  white-space: nowrap; overflow: hidden;
}
.sponsors .lane-inner {
  display: inline-flex; align-items: center; gap: 72px;
  animation: md-marq 30s linear infinite;
  padding-right: 72px;
}
.sponsors .lane-inner a { flex-shrink: 0; }
.sponsors .lane-inner img {
  height: 72px; width: auto; object-fit: contain;
  transition: transform .2s;
}
.sponsors .lane-inner a:hover img { transform: scale(1.1); }

/* ===== NEWSLETTER (yellow band) ===== */
.newsletter {
  background: var(--m-yellow); color: var(--m-bg);
  text-align: center;
  padding: 120px 64px;
  position: relative; overflow: hidden;
}
.newsletter h2 {
  font-family: var(--m-font); font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9; letter-spacing: -0.04em;
  margin: 0 0 28px; text-transform: uppercase;
}
.newsletter h2 .red { color: var(--m-red); }
.newsletter p {
  font-family: var(--m-font); font-size: 17px; line-height: 1.5;
  max-width: 520px; margin: 0 auto 36px;
}
.newsletter .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.newsletter .btn-newsletter {
  background: var(--m-bg); color: var(--m-yellow);
  border: 0; padding: 20px 36px;
  font-family: var(--m-font); font-size: 15px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  display: inline-block; transition: background-color .15s;
}
.newsletter .btn-newsletter:hover { background: var(--m-red); color: #fff; }
.newsletter .btn-newsletter-out {
  background: transparent; color: var(--m-bg);
  border: 2px solid var(--m-bg); padding: 18px 34px;
  font-family: var(--m-font); font-size: 15px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  display: inline-block; transition: background-color .15s, color .15s;
}
.newsletter .btn-newsletter-out:hover { background: var(--m-bg); color: var(--m-yellow); }

/* ===== FOOTER ===== */
footer.md {
  background: var(--m-bg); color: var(--m-mute);
  padding: 48px 64px 28px;
}
footer.md .top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--m-line);
}
footer.md .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--m-font); font-size: 16px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--m-ink);
}
footer.md .brand img { height: 32px; width: auto; }
footer.md .links {
  display: flex; gap: 28px;
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
}
footer.md .links a:hover { color: var(--m-yellow); }
footer.md .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; flex-wrap: wrap; gap: 12px;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
}
footer.md .credit a { color: var(--m-yellow); text-decoration: underline; }

/* ===== VENUE CALENDAR (rows of games hosted at a venue) ===== */
.venue-cal {
  margin-top: 24px;
  border-top: 1px solid var(--m-line);
}
.venue-cal .row {
  display: grid;
  grid-template-columns: 130px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--m-line);
}
.venue-cal .row .when {
  font-family: var(--m-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--m-mute);
}
.venue-cal .row .when .kick {
  display: block; color: var(--m-yellow); font-size: 18px;
  font-family: var(--m-font); font-weight: 700; letter-spacing: -0.01em;
  margin-top: 4px; text-transform: none;
}
.venue-cal .row .what h4 {
  font-family: var(--m-font); font-weight: 700;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0;
}
.venue-cal .row .what .meta {
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--m-mute);
  margin-top: 6px; text-transform: uppercase;
}
.venue-cal .row .chip { white-space: nowrap; }
.venue-cal .row .cta-btn {
  display: inline-block; padding: 12px 18px;
  background: transparent; color: var(--m-ink);
  border: 1px solid var(--m-line-2);
  font-family: var(--m-font); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background-color .15s, color .15s;
}
.venue-cal .row .cta-btn:hover {
  background: var(--m-yellow); color: var(--m-bg); border-color: var(--m-yellow);
}
.venue-cal .row.featured {
  background: rgba(252,209,22,0.04);
  padding-left: 16px; padding-right: 16px;
  margin-left: -16px; margin-right: -16px;
}
.venue-cal .row.featured .cta-btn {
  background: var(--m-yellow); color: var(--m-bg); border-color: var(--m-yellow);
}
.venue-cal .empty {
  padding: 32px 0; text-align: center;
  font-family: var(--m-mono); font-size: 12px;
  letter-spacing: .14em; color: var(--m-mute);
}
@media (max-width: 980px) {
  .venue-cal .row {
    grid-template-columns: 90px 1fr;
    row-gap: 8px;
  }
  .venue-cal .row .chip,
  .venue-cal .row .cta-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ============================================================
   VENUE COLOR TREATMENTS
   Each venue gets a distinctive wash + accent border so the
   two calendars read as visually separate rooms.
   - Thunder Studios → cobalt/lightning (matches the name)
   - Candela La Brea → ember/flame (Candela = flame in Spanish)
   ============================================================ */
.venue-panel {
  position: relative;
  padding: 32px 36px;
  border-radius: 10px;
  border: 1px solid var(--m-line);
  border-left-width: 5px;
  margin-bottom: 64px;
  transition: border-color .2s ease;
}
.venue-panel:last-child { margin-bottom: 0; }
.venue-panel .venue-cal { margin-top: 20px; }

/* Thunder Studios — cobalt wash, blue accent */
.venue-panel--thunder {
  background:
    linear-gradient(180deg, rgba(0,56,147,0.14) 0%, rgba(0,56,147,0.05) 100%);
  border-color: rgba(0,56,147,0.30);
  border-left-color: #4a7fd6;
  box-shadow: 0 0 0 1px rgba(0,56,147,0.10) inset;
}
.venue-panel--thunder .venue-cal .row {
  border-bottom-color: rgba(74,127,214,0.18);
}
.venue-panel--thunder .venue-cal .row .when .kick {
  color: #7fa9ee;
}

/* Candela La Brea — ember wash, red accent */
.venue-panel--candela {
  background:
    linear-gradient(180deg, rgba(206,17,38,0.14) 0%, rgba(255,120,60,0.05) 100%);
  border-color: rgba(206,17,38,0.30);
  border-left-color: #ff6b3d;
  box-shadow: 0 0 0 1px rgba(206,17,38,0.10) inset;
}
.venue-panel--candela .venue-cal .row {
  border-bottom-color: rgba(255,107,61,0.18);
}
.venue-panel--candela .venue-cal .row .when .kick {
  color: #ffa17a;
}

/* Featured row stays yellow-highlighted on both — but lift it a touch
   so it pops against the colored wash */
.venue-panel .venue-cal .row.featured {
  background: rgba(252,209,22,0.10);
  border-radius: 6px;
}

@media (max-width: 980px) {
  .venue-panel { padding: 24px 20px; }
}

/* Full-section variant — when an entire <section> represents one venue
   (used on venues.html). Tints the whole section background. */
section.venue-section--thunder {
  background:
    linear-gradient(180deg, rgba(0,56,147,0.10) 0%, rgba(0,56,147,0.02) 100%),
    var(--m-bg) !important;
  border-top: 3px solid #4a7fd6;
  border-bottom: 1px solid rgba(0,56,147,0.20);
}
section.venue-section--candela {
  background:
    linear-gradient(180deg, rgba(206,17,38,0.10) 0%, rgba(255,120,60,0.02) 100%),
    var(--m-bg) !important;
  border-top: 3px solid #ff6b3d;
  border-bottom: 1px solid rgba(206,17,38,0.20);
}
section.venue-section--thunder .venue-cal .row {
  border-bottom-color: rgba(74,127,214,0.18);
}
section.venue-section--thunder .venue-cal .row .when .kick { color: #7fa9ee; }
section.venue-section--candela .venue-cal .row {
  border-bottom-color: rgba(255,107,61,0.18);
}
section.venue-section--candela .venue-cal .row .when .kick { color: #ffa17a; }

/* ===== SUBHERO (shorter hero for sub-pages) ===== */
.subhero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 64px 80px; overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/hero-fans.jpg');
  background-size: cover; background-position: center;
  z-index: 0;
}
.subhero::after {
  content: ''; position: absolute; inset: 0;
  background: var(--m-photo-veil); z-index: 1;
}
.subhero .hero-content { position: relative; z-index: 2; text-align: center; }
.subhero h1 {
  font-family: var(--m-font); font-weight: 900;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin: 0 0 24px; max-width: 20ch;
  text-transform: uppercase;
}
.subhero h1 .yel { color: var(--m-yellow); }
.subhero .hero-logo {
  display: block; margin: 0 auto 24px;
  width: clamp(200px, 28vw, 340px); height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.subhero .lede {
  font-family: var(--m-font); font-size: 17px; line-height: 1.55;
  color: var(--m-ink); opacity: 0.9;
  max-width: 600px; margin: 24px auto 0;
}
/* Variant: subhero with a different background image set inline */
.subhero.no-photo::before { background-image: none; background: var(--m-surface); }
.subhero.no-photo::after { background: linear-gradient(180deg, var(--m-bg), var(--m-surface)); }

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 880px; margin: 0 auto;
  font-family: var(--m-font); font-size: 16px; line-height: 1.7;
  color: var(--m-ink);
}
.legal-content h2 {
  font-family: var(--m-font); font-weight: 800;
  font-size: 26px; letter-spacing: -0.02em; line-height: 1.15;
  margin: 56px 0 16px; color: var(--m-yellow);
  text-transform: uppercase;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 16px; color: var(--m-ink); }
.legal-content p strong { color: var(--m-yellow); font-weight: 700; }
.legal-content a {
  color: var(--m-yellow); border-bottom: 1px solid var(--m-yellow);
  padding-bottom: 1px;
}
.legal-content a:hover { color: var(--m-yellow-2); }
.legal-content ul { padding-left: 24px; margin: 0 0 16px; color: var(--m-mute); }

/* ===== FORMS (register + partner) ===== */
.form-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: start;
}
.form-card {
  background: var(--m-surface); padding: 40px;
  border: 1px solid var(--m-line);
}
.form-card h3 {
  font-family: var(--m-font); font-weight: 800;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1;
  margin: 0 0 28px; text-transform: uppercase;
  color: var(--m-yellow);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-mute); margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: var(--m-bg); color: var(--m-ink);
  border: 1px solid var(--m-line);
  font-family: var(--m-font); font-size: 15px;
  outline: none; transition: border-color .15s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--m-yellow); }
.form-textarea { resize: vertical; min-height: 88px; }
.checkbox-label {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--m-font); font-size: 13px; line-height: 1.5;
  color: var(--m-mute); margin-bottom: 12px; cursor: pointer;
}
.checkbox-label input { margin-top: 4px; accent-color: var(--m-yellow); }
.btn-submit {
  width: 100%; background: var(--m-yellow); color: var(--m-bg);
  border: 0; padding: 18px 0;
  font-family: var(--m-font); font-size: 14px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
  transition: background-color .15s;
}
.btn-submit:hover { background: var(--m-yellow-2); }
.form-alt {
  font-family: var(--m-font); font-size: 13px;
  color: var(--m-mute); margin: 14px 0 0; text-align: center;
}
.form-alt a { color: var(--m-yellow); border-bottom: 1px solid var(--m-yellow); }

/* ===== PARTNER blocks (perks list + form, alternating) ===== */
.partner-block {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: start;
}
.partner-block.flip > div:first-child { order: 2; }
.partner-block .tag {
  display: inline-block;
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-yellow); margin-bottom: 14px;
  padding: 6px 12px; background: var(--m-yellow-wash); border: 1px solid var(--m-yellow);
}
.partner-block h2 {
  margin: 0 0 24px;
}
.partner-block .description {
  font-family: var(--m-font); font-size: 17px; line-height: 1.6;
  color: var(--m-mute); margin: 0 0 28px; max-width: 460px;
}
.partner-block .perks {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.partner-block .perks li {
  font-family: var(--m-font); font-size: 15px;
  color: var(--m-ink);
  padding: 12px 0;
  border-top: 1px solid var(--m-line);
}
.partner-block .perks li::before {
  content: '+ '; color: var(--m-yellow); font-weight: 800;
}

/* ===== TIMELINE (run of show) ===== */
.timeline {
  display: grid; gap: 0;
  border-top: 1px solid var(--m-line);
}
.timeline .row {
  display: grid; grid-template-columns: 140px 1fr 180px;
  gap: 48px; padding: 36px 0;
  border-bottom: 1px solid var(--m-line);
  align-items: baseline;
}
.timeline .when {
  font-family: var(--m-font); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -0.02em;
  color: var(--m-yellow); font-variant-numeric: tabular-nums;
}
.timeline .what h3 {
  font-family: var(--m-font); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 10px; text-transform: uppercase;
}
.timeline .what p {
  font-family: var(--m-font); font-size: 15px; line-height: 1.6;
  color: var(--m-mute); margin: 0;
}
.timeline .who {
  font-family: var(--m-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-yellow);
}
.timeline .row.final .what h3 { color: var(--m-red); }
.timeline .row.final .who { color: var(--m-red); }

/* ===== VENUE DETAIL (sub-page) ===== */
.venue-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--m-line);
}
.venue-detail:first-of-type { border-top: 0; padding-top: 0; }
.venue-detail.flip > div:first-child { order: 2; }
.venue-detail .photo {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--m-surface); border: 1px solid var(--m-line);
}
.venue-detail .photo img, .venue-detail .photo video {
  width: 100%; height: 100%; object-fit: cover;
}
.venue-detail .pill-row { margin-bottom: 14px; }
.venue-detail h2 {
  font-family: var(--m-font); font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  margin: 0 0 12px; text-transform: uppercase;
}
.venue-detail .loc {
  font-family: var(--m-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--m-mute); margin-bottom: 24px;
}
.venue-detail .desc {
  font-family: var(--m-font); font-size: 17px; line-height: 1.6;
  color: var(--m-ink); margin: 0;
}
.venue-detail .features {
  margin: 32px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
}
.venue-detail .features .f {
  font-family: var(--m-font); font-size: 14px;
  padding: 10px 0; border-top: 1px solid var(--m-line);
  color: var(--m-ink);
}
.venue-detail .features .f::before {
  content: '+ '; color: var(--m-yellow); font-weight: 800;
}

/* ===== FAMILIA-COMPACT (for sub-pages, JS-injected) ===== */
.familia-compact {
  padding: 80px 64px;
  text-align: center;
  background: var(--m-bg);
}
.familia-compact .lead {
  font-family: var(--m-font); font-weight: 800;
  font-size: 26px; letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 28px; color: var(--m-ink);
  text-transform: uppercase;
}
.familia-compact .lead .em { color: var(--m-yellow); }
.familia-compact .handles {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; max-width: 920px; margin: 0 auto;
}
.familia-compact .handle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--m-surface); color: var(--m-ink);
  border: 1px solid var(--m-line);
  padding: 12px 16px;
  font-family: var(--m-font); font-size: 13px; font-weight: 600;
  transition: all .15s;
}
.familia-compact .handle:hover {
  background: var(--m-yellow); color: var(--m-bg);
  border-color: var(--m-yellow);
}
.familia-compact .handle svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== COOKIE BANNER (matches matchday palette) ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--m-surface); color: var(--m-ink);
  border-top: 2px solid var(--m-yellow); padding: 14px 24px;
  font-family: var(--m-font);
}
#cookie-banner.cookie-banner--hidden { transform: translateY(100%); }
#cookie-banner .cookie-content {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
}
#cookie-banner p { margin: 0; font-size: 13px; opacity: 0.9; }
#cookie-banner a { color: var(--m-yellow); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
  padding: 8px 16px; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--m-line-2); font-family: var(--m-font);
}
.cookie-btn--accept { background: var(--m-yellow); color: var(--m-bg); border-color: var(--m-yellow); }
.cookie-btn--decline { background: transparent; color: var(--m-ink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { padding: 56px 24px 100px; min-height: auto; }
  .hero h1 { font-size: 36px; }
  .hero-logo { width: 240px; margin-bottom: 24px; }
  .hero-countdown .v { font-size: 56px; }
  .hero-countdown .item { min-width: 56px; }
  .hero-countdown .sep { font-size: 36px; }
  section.md { padding: 56px 24px; }
  .fixtures-row { grid-template-columns: 1fr; }
  .experience { grid-template-columns: 1fr; gap: 40px; }
  .experience .stat .v { font-size: 40px; }
  .rooms-row { grid-template-columns: 1fr; }
  .room-card { aspect-ratio: 16/10; }
  .futsal { grid-template-columns: 1fr; }
  .futsal .photo { min-height: 280px; }
  .futsal .body { padding: 40px 24px; }
  .posters-row { grid-template-columns: 1fr; }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .dj-list { grid-template-columns: 1fr; }
  .dj { padding-left: 0; border-right: 0;
    border-bottom: 1px solid var(--m-line); padding-bottom: 20px; }
  .dj:last-child { border-bottom: 0; }
  .newsletter { padding: 56px 24px; }
  footer.md { padding: 32px 24px; }
  .subhero { padding: 56px 24px 56px; min-height: auto; }
  .subhero h1 { font-size: 36px; }
  .subhero .hero-logo { width: 220px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px; }
  .partner-block { grid-template-columns: 1fr; gap: 32px; }
  .partner-block.flip > div:first-child { order: 0; }
  .timeline .row { grid-template-columns: 80px 1fr; gap: 20px; padding: 24px 0; }
  .timeline .when { font-size: 24px; }
  .timeline .who { grid-column: 1 / -1; margin-top: 8px; }
  .venue-detail { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .venue-detail.flip > div:first-child { order: 0; }
  .venue-detail .features { grid-template-columns: 1fr; }
  .legal-content h2 { font-size: 22px; }
  .familia-compact { padding: 48px 24px; }
  .familia-compact .handle { font-size: 12px; padding: 10px 14px; }
}
