/* ================================================================
   Quick Lions — site.css v2 (cinematic refresh)
   Less brick. More motion. Same lion.
   ================================================================ */

/* --- Print color enforcement (CLAUDE.md mandate) -------------- */
html {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  color-adjust: exact;
}
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}

/* --- Fonts ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;700;800;900&family=Archivo+Black&family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=Permanent+Marker&display=swap');

/* --- Tokens --------------------------------------------------- */
:root {
  /* Brand */
  --ql-yellow:        #FDB913;
  --ql-yellow-soft:   #FEDF7B;
  --ql-yellow-tint:   rgba(253, 185, 19, 0.12);
  --ql-orange:        #F08A1F;
  --ql-red:           #D7263D;
  --ql-ink:           #0A0A0A;
  --ql-ink-90:        #161616;
  --ql-ink-80:        #232323;
  --ql-paper:         #FBF7EE;
  --ql-cream:         #F4EFE3;
  --ql-line:          rgba(10, 10, 10, 0.07);
  --ql-line-strong:   rgba(10, 10, 10, 0.16);
  --ql-line-on-dark:  rgba(255, 255, 255, 0.10);

  --white:    #ffffff;
  --white-90: rgba(255, 255, 255, 0.92);
  --white-70: rgba(255, 255, 255, 0.72);
  --white-50: rgba(255, 255, 255, 0.50);

  /* Surfaces */
  --bg:           var(--ql-paper);
  --surface:      #ffffff;
  --surface-2:    var(--ql-cream);
  --surface-dark: var(--ql-ink);
  --fg:           var(--ql-ink);
  --fg-on-dark:   #ffffff;
  --muted:        rgba(10, 10, 10, 0.60);
  --muted-on-dark: var(--white-70);

  /* Type stacks */
  --font-display: 'Bebas Neue', 'Anton', Impact, 'Arial Narrow', sans-serif;
  --font-poster:  'Anton', 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-label:   'Archivo Black', 'Archivo', 'Inter', sans-serif;
  --font-marker:  'Permanent Marker', 'Bradley Hand', cursive;
  --font-mono:    ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;

  /* Spacing */
  --sp-1:  4px;  --sp-2:  8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-7: 32px;  --sp-8: 40px;
  --sp-9: 56px;  --sp-10: 80px; --sp-11: 120px;

  /* Radius (softer) */
  --radius-xs:    6px;
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10,10,10,0.05);
  --shadow-sm: 0 4px 10px -4px rgba(10,10,10,0.08), 0 1px 3px rgba(10,10,10,0.04);
  --shadow-md: 0 14px 30px -10px rgba(10,10,10,0.16), 0 5px 12px -6px rgba(10,10,10,0.08);
  --shadow-lg: 0 28px 60px -18px rgba(10,10,10,0.25), 0 10px 24px -8px rgba(10,10,10,0.12);
  --shadow-yellow: 0 16px 40px -12px rgba(253,185,19,0.45);

  /* Easings */
  --ease-out:   cubic-bezier(.2, .8, .2, 1);
  --ease-inout: cubic-bezier(.6, 0, .2, 1);

  /* Container */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 76px;
}

/* --- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  text-wrap: pretty;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
strong { font-weight: 700; }
::selection { background: var(--ql-yellow); color: var(--ql-ink); }

/* --- Layout helpers ------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.wrap--wide   { max-width: 1640px; }
.wrap--narrow { max-width: 980px; }

.section          { padding-block: clamp(64px, 8vw, 128px); }
.section--tight   { padding-block: clamp(40px, 5vw, 80px); }
.section--dark    { background: var(--ql-ink); color: var(--fg-on-dark); }
.section--cream   { background: var(--surface-2); }
.section--paper   { background: var(--ql-paper); }
.section--yellow  { background: var(--ql-yellow); color: var(--ql-ink); }

.grid    { display: grid; gap: var(--sp-6); }
.grid-2  { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); }
.grid-3  { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4  { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* --- Typography ----------------------------------------------- */
.display { font-family: var(--font-display); font-weight: 400; line-height: 0.86; letter-spacing: -0.005em; text-transform: uppercase; }
h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(56px, 9vw, 144px); line-height: 0.84; letter-spacing: -0.005em; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.6vw, 88px); line-height: 0.88; letter-spacing: -0.003em; text-transform: uppercase; }
h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.6vw, 38px); line-height: 0.98; letter-spacing: 0.005em; text-transform: uppercase; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: clamp(18px, 1.3vw, 21px); line-height: 1.25; letter-spacing: -0.01em; }
p { max-width: 65ch; }
.lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--muted); max-width: 56ch; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--ql-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ql-yellow);
  display: inline-block;
  flex: 0 0 7px;
  box-shadow: 0 0 0 4px var(--ql-yellow-tint);
}
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow { color: var(--ql-yellow); }
.section--dark .eyebrow::before { box-shadow: 0 0 0 4px rgba(253,185,19,0.18); }

.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); font-size: 0.85em; }

/* --- Buttons (capsule pills) --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  border: 0;
  background: var(--ql-yellow);
  color: var(--ql-ink);
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease-out), background .2s ease, color .2s ease, box-shadow .25s var(--ease-out);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover  { background: var(--ql-ink); color: var(--ql-yellow); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ql-ink); box-shadow: inset 0 0 0 1.5px rgba(10,10,10,0.18); }
.btn--ghost:hover { background: var(--ql-ink); color: var(--ql-yellow); box-shadow: var(--shadow-md); }
.btn--on-dark { background: var(--ql-yellow); color: var(--ql-ink); }
.btn--on-dark:hover { background: var(--white); color: var(--ql-ink); }
.btn--on-dark.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.28); }
.btn--on-dark.btn--ghost:hover { background: var(--white); color: var(--ql-ink); box-shadow: var(--shadow-md); }
.btn--red { background: var(--ql-red); color: #fff; }
.btn--red:hover { background: #b21f31; color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 12.5px; letter-spacing: 0.16em; }
.btn .arrow { transition: transform .25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* --- Top bar -------------------------------------------------- */
.topbar {
  background: var(--ql-ink);
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.topbar__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; gap: 24px;
}
.topbar a { color: var(--ql-yellow); }
.topbar a:hover { color: var(--white); }
.topbar__left, .topbar__right { display: inline-flex; align-items: center; gap: 24px; }
.topbar__live { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-weight: 500; }
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ql-red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(215, 38, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0); }
}
@media (max-width: 720px) {
  .topbar__left span:not(.topbar__live), .topbar__right span { display: none; }
}

/* --- Header (sticky, blurred) -------------------------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.86);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  background: var(--ql-yellow);
  border-radius: 50%;
  transition: transform .3s var(--ease-out);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.04); }
.brand__mark img { width: 34px; height: 34px; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand__name span { color: var(--ql-yellow); }

.nav { display: inline-flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--white-70);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav a.is-active { color: var(--ql-yellow); background: rgba(253,185,19,0.10); }
.nav .btn { margin-left: 12px; padding: 11px 20px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--ql-yellow);
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; color: var(--ql-ink); }
@media (max-width: 1100px) {
  .nav a { padding: 10px 11px; font-size: 13px; }
}
@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ql-ink);
    padding: 18px var(--gutter) 28px;
    flex-direction: column; align-items: stretch; gap: 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav a { width: 100%; padding: 14px 16px; font-size: 15px; border-radius: 12px; }
  .nav.is-open { display: flex; }
  .nav .btn { width: 100%; justify-content: center; margin: 8px 0 0; }
  .menu-toggle { display: inline-flex; }
}

/* --- Hero (cinematic) ---------------------------------------- */
.hero {
  position: relative;
  background: var(--ql-ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(620px, 86vh, 940px);
  display: flex;
  align-items: center;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
  opacity: 0.85;
  transform: scale(1.03);
}
.hero__poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  opacity: 0.85;
  filter: contrast(1.05) saturate(0.85);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.20) 30%, rgba(10,10,10,0.55) 75%, rgba(10,10,10,0.95) 100%),
    linear-gradient(95deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.10) 55%, rgba(10,10,10,0) 100%),
    radial-gradient(60% 50% at 14% 70%, rgba(253,185,19,0.18) 0%, rgba(253,185,19,0) 65%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
.hero__content {
  position: relative; z-index: 2;
  padding-block: clamp(80px, 14vw, 160px) clamp(80px, 9vw, 140px);
  width: 100%;
}
.hero__kicker {
  font-family: var(--font-label);
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ql-yellow);
  font-size: 11.5px;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  padding: 8px 18px;
  background: rgba(253, 185, 19, 0.10);
  border: 1px solid rgba(253, 185, 19, 0.22);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero__kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ql-yellow);
  display: inline-block; flex: 0 0 7px;
  box-shadow: 0 0 0 4px rgba(253,185,19,0.22);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 11.5vw, 200px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero__title .accent { color: var(--ql-yellow); }
.hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
}
.hero__lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--white-70);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero chips - floating data capsules */
.hero__chips {
  position: relative; z-index: 2;
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 44px;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-90);
  transition: background .2s ease, border-color .2s ease, transform .25s var(--ease-out);
}
.hero__chip:hover { background: rgba(255,255,255,0.10); border-color: rgba(253,185,19,0.3); transform: translateY(-2px); }
.hero__chip b { color: var(--ql-yellow); font-weight: 700; }
.hero__chip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ql-yellow);
  display: inline-block;
}

.hero__scout {
  position: absolute; z-index: 2;
  right: var(--gutter); bottom: clamp(28px, 4vw, 56px);
  font-family: var(--font-label);
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 10.5px;
  color: var(--white-70);
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.hero__scout::after {
  content: "";
  width: 1px; height: 64px;
  background: linear-gradient(180deg, var(--white-70), transparent);
  animation: scoutPulse 2.4s var(--ease-inout) infinite;
  transform-origin: top;
}
@keyframes scoutPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
@media (max-width: 720px) { .hero__scout { display: none; } }

/* --- Scoreboard strip — dark continuation -------------------- */
.scoreboard {
  background: var(--ql-ink);
  color: #fff;
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.scoreboard__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.scoreboard__cell {
  padding: 30px clamp(20px, 2.2vw, 36px);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .25s ease;
}
.scoreboard__cell:hover { background: rgba(255,255,255,0.025); }
.scoreboard__cell:last-child { border-right: 0; }
.scoreboard__label {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-yellow);
}
.scoreboard__value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: #fff;
}
.scoreboard__sub {
  font-size: 13.5px; line-height: 1.5;
  color: var(--white-70);
}
@media (max-width: 960px) {
  .scoreboard__row { grid-template-columns: repeat(2, 1fr); }
  .scoreboard__cell:nth-child(2n) { border-right: 0; }
  .scoreboard__cell:nth-child(1), .scoreboard__cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 520px) {
  .scoreboard__row { grid-template-columns: 1fr; }
  .scoreboard__cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .scoreboard__cell:last-child { border-bottom: 0; }
}

/* --- Section header ------------------------------------------ */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px;
  margin-bottom: clamp(40px, 4vw, 64px);
  flex-wrap: wrap;
}
.section-head__title { max-width: 22ch; }
.section-head__lead  { max-width: 42ch; color: var(--muted); font-size: 16px; line-height: 1.6; }
.section--dark .section-head__lead { color: var(--muted-on-dark); }

/* --- Tile / USP cards (soft elevation) ----------------------- */
.tile {
  background: #fff;
  border: 1px solid var(--ql-line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s ease;
  box-shadow: var(--shadow-xs);
}
.tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(140% 90% at 0% 0%, rgba(253,185,19,0.10), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(10,10,10,0.16); }
.tile:hover::before { opacity: 1; }
.tile > * { position: relative; z-index: 1; }
.tile__no {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-orange);
  display: inline-flex; align-items: center; gap: 8px;
}
.tile__no::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ql-orange); }
.tile__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.tile__body { color: var(--muted); font-size: 15px; line-height: 1.6; }
.tile__more {
  margin-top: auto;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ql-ink);
  padding-top: 8px;
}
.tile__more .arrow { transition: transform .25s var(--ease-out); }
.tile__more:hover { color: var(--ql-orange); }
.tile__more:hover .arrow { transform: translateX(4px); }

/* --- Match cards (smooth row) -------------------------------- */
.match {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--ql-line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s ease;
  position: relative; overflow: hidden;
}
.match::before {
  content: ""; position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 4px; border-radius: 4px;
  background: var(--ql-yellow);
}
.match + .match { margin-top: 12px; }
.match:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(10,10,10,0.12); }
.match__date {
  font-family: var(--font-display);
  text-transform: uppercase; line-height: 0.95;
  text-align: center;
  padding-left: 8px;
  border-right: 1px solid var(--ql-line);
  padding-right: 24px;
}
.match__date b {
  display: block;
  font-size: 40px;
  color: var(--ql-ink);
  font-weight: 400;
}
.match__date span {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-family: var(--font-label);
  color: var(--muted);
  margin-top: 4px;
  display: inline-block;
}
.match__teams { display: flex; flex-direction: column; gap: 4px; }
.match__teams b {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.match__teams span { color: var(--muted); font-size: 13.5px; }
.match__meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  text-align: right;
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.match__meta b {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ql-ink);
  font-weight: 400;
}
.match[data-state="thuis"]::before { background: var(--ql-yellow); }
.match[data-state="uit"]::before   { background: var(--ql-ink); }
.match[data-state="live"]::before  { background: var(--ql-red); }
.match[data-state="live"] .match__meta b { color: var(--ql-red); }
@media (max-width: 560px) {
  .match { grid-template-columns: 1fr; gap: 12px; padding: 18px 22px; }
  .match__date { text-align: left; border-right: 0; padding-right: 0; padding-bottom: 12px; padding-left: 12px; border-bottom: 1px solid var(--ql-line); }
  .match__date b { font-size: 28px; display: inline-block; margin-right: 10px; }
  .match__meta { align-items: flex-start; text-align: left; }
}

/* --- News card ---------------------------------------------- */
.news-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--ql-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s ease;
  box-shadow: var(--shadow-xs);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(10,10,10,0.12); }
.news-card__img {
  aspect-ratio: 16 / 10;
  background: var(--ql-cream);
  background-size: cover; background-position: center;
  position: relative;
  transition: transform .6s var(--ease-out);
}
.news-card:hover .news-card__img { transform: scale(1.04); }
.news-card__tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ql-yellow);
  padding: 6px 14px;
  font-family: var(--font-label);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-pill);
}
.news-card__body {
  padding: 26px 28px 30px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.news-card__date {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ql-orange);
}
.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.news-card__excerpt { color: var(--muted); font-size: 15px; line-height: 1.55; }
.news-card__more {
  margin-top: 6px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ql-ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.news-card__more:hover { color: var(--ql-orange); }

/* --- Stats (gradient numerals) ------------------------------ */
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(64px, 7.5vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  font-weight: 400;
  background: linear-gradient(180deg, #fff 0%, var(--ql-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--ql-yellow);
}
.stat__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-90);
}
.stat__note {
  font-size: 14px; color: var(--white-50);
  margin-top: 4px; max-width: 28ch; line-height: 1.5;
}

/* --- FAQ ---------------------------------------------------- */
.faq { border-top: 1px solid var(--ql-line); }
.faq__item { border-bottom: 1px solid var(--ql-line); padding: 24px 0; }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  text-transform: uppercase;
  line-height: 1.05;
  cursor: pointer; width: 100%;
  text-align: left; gap: 16px;
  letter-spacing: 0.005em;
}
.faq__q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ql-orange);
  line-height: 1;
  transition: transform .25s var(--ease-out);
}
.faq__item[open] .faq__q::after { content: "−"; transform: rotate(180deg); }
.faq__a { padding-top: 14px; color: var(--muted); max-width: 65ch; line-height: 1.65; }

/* --- Forms -------------------------------------------------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-label);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ql-ink);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--ql-line-strong);
  background: #fff;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: var(--radius-xs);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ql-ink);
  box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.30);
}
.field textarea { min-height: 120px; resize: vertical; }
.field__hint { font-size: 12.5px; color: var(--muted); }
.checkbox-row {
  display: inline-flex; align-items: flex-start; gap: 12px;
  font-size: 14px; cursor: pointer; line-height: 1.5;
}
.checkbox-row input { width: 20px; height: 20px; accent-color: var(--ql-orange); margin-top: 2px; }

/* --- Pricing ------------------------------------------------ */
.pricing { display: grid; gap: var(--sp-6); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .pricing { grid-template-columns: 1fr; } }
.price {
  border: 1px solid var(--ql-line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price[data-featured="true"] {
  background: var(--ql-ink); color: #fff;
  border-color: var(--ql-ink);
  box-shadow: var(--shadow-yellow);
}
.price[data-featured="true"] .price__name { color: var(--ql-yellow); }
.price[data-featured="true"] .price__cat  { color: var(--ql-yellow); }
.price__cat {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ql-orange);
}
.price__name {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.4vw, 38px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.price__amount {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.price__amount sup { font-size: 0.35em; vertical-align: top; opacity: 0.6; margin-left: 4px; font-family: var(--font-label); }
.price__per { font-family: var(--font-label); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.65; }
.price__list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.price__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.price__list li::before {
  content: ""; flex: 0 0 14px; width: 14px; height: 14px; margin-top: 5px;
  border-radius: 50%;
  background: var(--ql-yellow);
}
.price[data-featured="true"] .price__list li::before { background: var(--ql-yellow); }
.price .btn { margin-top: auto; }

/* --- Footer ------------------------------------------------- */
.footer {
  background: var(--ql-ink);
  color: var(--white-70);
  padding-block: clamp(64px, 8vw, 112px) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "LIONS";
  position: absolute;
  left: -2vw; bottom: -10vw;
  font-family: var(--font-display);
  font-size: clamp(280px, 32vw, 540px);
  color: rgba(253,185,19,0.04);
  line-height: 0.8;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.footer__top {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer h5 {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-yellow);
  margin-bottom: 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a:hover { color: var(--ql-yellow); }

.footer__brand .brand__name { color: #fff; font-size: 34px; }
.footer__brand .brand__mark { width: 52px; height: 52px; }
.footer__brand .brand__mark img { width: 40px; height: 40px; }
.footer__tag { margin-top: 16px; max-width: 32ch; color: var(--white-70); font-size: 14px; line-height: 1.6; }
.footer__bot {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px; color: var(--white-50);
  gap: 18px; flex-wrap: wrap;
}

.socials { display: inline-flex; gap: 8px; }
.socials a {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.socials a:hover { background: var(--ql-yellow); color: var(--ql-ink); border-color: var(--ql-yellow); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* --- Page header (sub-pages) -------------------------------- */
.page-head {
  background: var(--ql-ink);
  color: #fff;
  padding-block: clamp(96px, 11vw, 160px) clamp(64px, 7vw, 112px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.32;
  filter: contrast(1.05) saturate(0.85);
  z-index: 0;
  transform: scale(1.03);
}
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.7) 100%),
    radial-gradient(60% 40% at 20% 80%, rgba(253,185,19,0.15) 0%, rgba(253,185,19,0) 60%);
}
.page-head__row {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.page-head__breadcrumb {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-yellow);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(253, 185, 19, 0.10);
  border: 1px solid rgba(253, 185, 19, 0.22);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.page-head__breadcrumb span:not(:last-child)::after {
  content: "/"; margin-left: 10px; color: rgba(253,185,19,0.4);
}
.page-head__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.page-head__title span { color: var(--ql-yellow); }
.page-head__lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  color: var(--white-70);
  max-width: 56ch;
}

/* --- Court line divider (slimmer) --------------------------- */
.court-divider {
  height: 8px;
  background:
    repeating-linear-gradient(90deg,
      var(--ql-ink) 0 32px,
      transparent 32px 48px
    );
  opacity: 0.92;
}

/* --- Quote -------------------------------------------------- */
.quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 720px) { .quote { grid-template-columns: 1fr; gap: 16px; } }
.quote__mark {
  font-family: var(--font-display);
  font-size: clamp(120px, 12vw, 200px);
  line-height: 0.7;
  color: var(--ql-yellow);
  letter-spacing: -0.04em;
}
.quote__body {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.003em;
}
.quote__by {
  margin-top: 18px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .quote__by { color: var(--muted-on-dark); }

/* --- Sponsor strip ----------------------------------------- */
.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--ql-line);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ql-line);
}
@media (max-width: 960px) { .sponsor-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .sponsor-strip { grid-template-columns: repeat(2, 1fr); } }
.sponsor-strip__cell {
  padding: 28px 18px;
  background: #fff;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ql-ink);
  min-height: 110px;
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
}
.sponsor-strip__cell:hover { background: var(--ql-yellow); color: var(--ql-ink); }

/* --- Ages grid --------------------------------------------- */
.ages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 960px) { .ages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ages { grid-template-columns: 1fr; } }
.age {
  padding: 30px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease-out);
  position: relative; overflow: hidden;
}
.age::before {
  content: ""; position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 100% 0%, rgba(253,185,19,0.18), transparent 70%);
  pointer-events: none;
}
.age:hover { background: rgba(255,255,255,0.06); border-color: rgba(253,185,19,0.3); transform: translateY(-4px); }
.age__no {
  font-family: var(--font-display);
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 0.85;
  color: var(--ql-yellow);
  font-weight: 400;
  letter-spacing: -0.005em;
  position: relative; z-index: 1;
}
.age__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: #fff;
}
.section:not(.section--dark) .age__title { color: var(--ql-ink); }
.section:not(.section--dark) .age { background: rgba(10,10,10,0.03); border-color: var(--ql-line); }
.section:not(.section--dark) .age:hover { background: #fff; border-color: var(--ql-line-strong); }
.section:not(.section--dark) .age__meta,
.section:not(.section--dark) .age__list { color: var(--muted); }
.age__meta {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.age__list {
  font-size: 13.5px;
  color: var(--muted-on-dark);
  line-height: 1.6;
  display: flex; flex-direction: column; gap: 6px;
}

/* --- Schedule table --------------------------------------- */
.schedule {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--ql-line);
  border-radius: var(--radius);
  font-size: 14px;
  overflow: hidden;
}
.schedule th, .schedule td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ql-line);
}
.schedule thead th {
  background: var(--ql-ink);
  color: var(--ql-yellow);
  font-family: var(--font-label);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 0;
}
.schedule tbody tr:last-child td { border-bottom: 0; }
.schedule tbody tr:hover { background: var(--ql-cream); }
.schedule td b {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.schedule .tag {
  display: inline-block;
  padding: 3px 9px;
  background: var(--ql-yellow);
  border-radius: var(--radius-pill);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* --- Marquee ribbon --------------------------------------- */
.ribbon {
  background: var(--ql-yellow);
  color: var(--ql-ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  position: relative;
}
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.ribbon::before { left: 0;  background: linear-gradient(90deg,  var(--ql-yellow), transparent); }
.ribbon::after  { right: 0; background: linear-gradient(-90deg, var(--ql-yellow), transparent); }
.ribbon__track {
  display: inline-flex; gap: 56px;
  animation: marquee 42s linear infinite;
}
.ribbon span {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 56px;
}
.ribbon span::after {
  content: "●";
  color: var(--ql-ink);
  font-size: 0.35em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --- CTA band -------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--ql-ink-90) 0%, var(--ql-ink) 50%, #1a1a1a 100%);
  color: #fff;
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -10%; top: -10%;
  width: 70%; height: 130%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(253,185,19,0.20) 0%, rgba(253,185,19,0) 70%);
  pointer-events: none;
}
.cta-band::after {
  content: "QL";
  position: absolute;
  right: -3vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(320px, 36vw, 580px);
  color: rgba(253,185,19,0.05);
  line-height: 0.8;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-band__row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.5fr auto;
  align-items: center; gap: 40px;
}
@media (max-width: 720px) { .cta-band__row { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band h2 span { color: var(--ql-yellow); }

/* --- Spotlight (full-bleed cinematic) -------------------- */
.spotlight {
  position: relative;
  min-height: clamp(420px, 56vw, 660px);
  display: flex; align-items: flex-end;
  padding-block: clamp(48px, 6vw, 96px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ql-ink);
}
.spotlight__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.85;
  transform: scale(1.04);
  filter: contrast(1.05) saturate(0.92);
}
.spotlight__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.20) 0%, rgba(10,10,10,0.40) 50%, rgba(10,10,10,0.90) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.70) 0%, rgba(10,10,10,0.10) 60%, rgba(10,10,10,0) 100%);
}
.spotlight__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr auto;
  align-items: flex-end; gap: 32px;
  width: 100%;
}
.spotlight__kicker {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ql-yellow);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(215, 38, 61, 0.18);
  border: 1px solid rgba(215, 38, 61, 0.42);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
}
.spotlight__kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ql-red);
  animation: pulse 1.8s infinite;
}
.spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.8vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  max-width: 18ch;
  margin-bottom: 16px;
}
.spotlight__title span { color: var(--ql-yellow); }
.spotlight__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--white-70);
  max-width: 48ch;
  margin-bottom: 28px;
}
.spotlight__meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 28px;
  padding-bottom: 6px;
}
.spotlight__meta div { display: flex; flex-direction: column; gap: 4px; }
.spotlight__meta b {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 0.9;
  font-weight: 400;
  color: #fff;
}
.spotlight__meta span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-yellow);
}
@media (max-width: 720px) {
  .spotlight__content { grid-template-columns: 1fr; gap: 24px; }
  .spotlight__meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* --- Gallery strip --------------------------------------- */
.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  height: clamp(360px, 40vw, 520px);
}
@media (max-width: 720px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; gap: 12px; }
  .gallery-strip > *:first-child { grid-column: 1 / -1; height: 280px; }
  .gallery-strip > * { height: 200px; }
}
.gallery-strip__img {
  position: relative;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease-out);
}
.gallery-strip__img:hover { transform: scale(1.015); }
.gallery-strip__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.65));
  pointer-events: none;
}
.gallery-strip__caption {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.gallery-strip__caption b {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.gallery-strip__caption span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-yellow);
}

/* --- Utility --------------------------------------------- */
.stack-4 { display: flex; flex-direction: column; gap: var(--sp-4); }
.stack-5 { display: flex; flex-direction: column; gap: var(--sp-5); }
.stack-6 { display: flex; flex-direction: column; gap: var(--sp-6); }
.stack-7 { display: flex; flex-direction: column; gap: var(--sp-7); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.on-dark { color: var(--muted-on-dark); }
.on-dark.muted { color: var(--white-50); }
hr.rule { border: 0; border-top: 1px solid var(--ql-line); margin-block: var(--sp-8); }
hr.rule--on-dark { border-color: rgba(255,255,255,0.10); }

/* --- Focus visible -------------------------------------- */
:focus-visible {
  outline: 2px solid var(--ql-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* --- Reduced motion ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .ribbon__track { animation: none; }
  .hero__video  { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
