/* ── GSAP neemt deze animaties over (als GSAP geladen is) ── */
html.gsap .nav__bg,
html.gsap .nav__link,
html.gsap .nav__logo,
html.gsap .nav__tickets,
html.gsap .hero__logo,
html.gsap .hero__date { animation: none !important; }
html.gsap .reveal { transition: none; }
html.gsap .marquee__track { animation: none; }   /* GSAP-loop neemt het over (scroll-reactief) */
html.gsap .lineup__card { animation: none; }      /* GSAP/Flip stuurt de kaart-entree aan */

/* ── DISPLAY FONT 'Sink' (echte huisstijl-letter) ── */
@font-face {
  font-family: 'Sink';
  src: url('../assets/fonts/sink-font.ttf') format('truetype');
  font-weight: 100 900;        /* variabel/één gewicht → dekt alle gebruiken */
  font-style: normal;
  font-display: swap;          /* tekst direct zichtbaar, font wisselt zodra geladen */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: var(--cn-pink,#F50044);
  --yellow: var(--cn-yellow,#FFEE00);
  --purple: var(--cn-purple,#58069E);
}

html {
  overflow-x: hidden;          /* vangnet tegen horizontale scroll op alle breedtes */
}

body {
  font-family: 'Sink', sans-serif;
  background: var(--cn-dark,#1a0a2e);
  color: #fff;
  overflow-x: hidden;
}

/* ── TOEGANKELIJKHEID ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 2000;
  background: var(--cn-yellow,#FFEE00);
  color: var(--cn-dark,#1a0a2e);
  font-family: 'Sink', sans-serif;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 12px; }

/* zichtbare focus voor toetsenbordgebruikers */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cn-yellow,#FFEE00);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  pointer-events: none;
}

.nav__bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Inner container — locked to the Figma 1440px frame, centered.
   All child %/calc positions resolve against THIS 1440px width,
   so the menu never spreads apart on wider viewports. */
.nav__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 112px; /* Figma total height incl. logo overflow */
}

/* ── MENU LINKS — absolute positioned per Figma ── */
.nav__link {
  position: absolute;
  top: 31.45px;
  left: var(--nav-left);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: normal;

  /* hover underline */
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav__link:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.nav__link:hover::after {
  width: 100%;
  left: 0;
}

/* ── LOGO — centered per Figma ── */
.nav__logo {
  position: absolute;
  left: calc(50% - 85.628px); /* center = 50% - width/2 */
  top: 12.76px;
  width: 171.256px;
  height: 98.827px;
}

.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* hover schaalt de IMG (niet de <a>) → conflicteert niet met de entree-animatie */
.nav__logo:hover img {
  transform: scale(1.07);
}

/* ── TICKETS — per Figma: left calc(66.67%+164px) ── */
.nav__tickets {
  position: absolute;
  top: 0;
  left: calc(66.67% + 164px);
  width: 315.501px;
  height: 93.449px;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}

.nav__tickets-shape {
  position: absolute;
  inset: 0;
  transition: filter 0.3s ease;
}

.nav__tickets-shape svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav__tickets-text {
  position: relative;
  z-index: 1;
  font-size: 64px;
  color: var(--purple);
  letter-spacing: 2px;
  padding-left: 54px; /* matches Figma: 218-164 = 54px offset from shape start */
  transition: transform 0.3s ease;
  white-space: nowrap;
  line-height: normal;
}

.nav__tickets:hover .nav__tickets-text {
  transform: scale(1.05);
}

.nav__tickets:hover .nav__tickets-shape {
  filter: brightness(1.08);
}

/* ── ENTRANCE ANIMATIONS ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.5) translateX(-50%); }
  80%  { transform: scale(1.05) translateX(-50%); }
  100% { opacity: 1; transform: scale(1) translateX(-50%); }
}

.nav__bg { animation: fadeIn 0.5s ease forwards; }

.nav__link {
  opacity: 0;
  animation: slideDown 0.45s ease forwards;
}

/* stagger each link by its DOM order */
.nav__link:nth-of-type(1) { animation-delay: 0.08s; }
.nav__link:nth-of-type(2) { animation-delay: 0.16s; }
.nav__link:nth-of-type(3) { animation-delay: 0.24s; }
.nav__link:nth-of-type(4) { animation-delay: 0.32s; }
.nav__link:nth-of-type(5) { animation-delay: 0.40s; }

/* Logo uses its own transform origin — redefine popIn without translateX */
.nav__logo {
  opacity: 0;
  animation: none;
}

@keyframes popInLogo {
  0%   { opacity: 0; transform: scale(0.5); }
  80%  { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

.nav__logo {
  transform-origin: center center;
  animation: popInLogo 0.65s ease forwards;
  animation-delay: 0.25s;
}

/* (hover-effect staat nu op .nav__logo img — zie boven; geen animation-toggle meer) */

.nav__tickets {
  opacity: 0;
  animation: slideInRight 0.55s ease forwards;
  animation-delay: 0.45s;
}

/* ── SCROLL SHADOW ── */
.nav.scrolled .nav__bg {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 733;   /* keep Figma proportions across widths */
  overflow: hidden;
  background: var(--cn-dark,#1a0a2e);
  /* inhoud (logo + datum + knoppen) als gecentreerde stapel → past op élke breedte
     en de onderband (padding) houdt alles boven de omhooggetrokken tickets-rand. */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;     /* inhoud onderin → niet hoog/zwevend op brede schermen */
  gap: clamp(10px, 1.6vw, 24px);
  padding: 3vw 4vw 11vw;
  text-align: center;
}

/* Background photo */
.hero__photo {
  position: absolute;
  inset: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Aftermovie-video over de foto. Begint onzichtbaar en fade-t in zodra hij
   daadwerkelijk speelt (.is-playing via js) → geen lege flash, en bij een
   laad-/afspeelfout blijft de foto eronder zichtbaar als fallback. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;       /* nooit interactief — geen controls */
  background: transparent;
}

.hero__video.is-playing { opacity: 1; }

/* Big logo — Figma: 483×278 */
.hero__logo {
  position: relative;
  width: 33.54%;               /* 483 / 1440 */
  max-width: 483px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

/* Date / location text */
.hero__date {
  position: relative;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  line-height: 1.05;
  text-shadow: 0.35vw 0.49vw 0 #000;   /* scales like 5px/7px @1440 */
  font-size: clamp(26px, 4.44vw, 64px);
  letter-spacing: 1px;
}

.hero__date p { margin: 0; }

/* Hero-knoppen — gecentreerd onder de datum, elk een eigen merkkleur.
   Volledige-breedte gecentreerde balk + niet-krimpende knoppen met margins
   → kunnen elkaar nooit overlappen (ook niet zonder flex-gap-support). */
.hero__cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 6;
}

.hero__btn {
  flex: 0 0 auto;                                  /* nooit krimpen → tekst kan niet overlappen */
  margin: 6px clamp(8px, 0.9vw, 13px);             /* spatie tussen/rond de knoppen (geen flex-gap nodig) */
  font-family: 'Sink', sans-serif;
  font-size: clamp(14px, 1.65vw, 24px);
  letter-spacing: 0.5px;
  line-height: 1;
  padding: clamp(10px, 1vw, 15px) clamp(18px, 2.3vw, 38px);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  filter: brightness(1.04);
}
.hero__btn:active { transform: translateY(-1px) scale(0.99); }

.hero__btn--tickets { background: var(--yellow); color: #3a0a63; }   /* knal-geel */
.hero__btn--lineup  { background: var(--pink);   color: #fff; }      /* roze */

/* ── DAG TICKETS SECTIE (node 10:247) ──
   Exacte Figma-techniek: 3 overlappende panelen (594px) die hetzelfde
   scheurmasker (Rectangle 7, 1978×207) op een andere mask-position tonen.
   Alle px omgerekend naar vw (1440px frame = 100vw) zodat het schaalt. */
.tickets {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 15.139vw;            /* 218px */
  margin-top: -8.333vw;        /* -120px → panel-top valt op frame y613 (overlapt de foto) */
  overflow: hidden;            /* gemaskeerde panelen lopen ~7vw rechts uit → clippen, anders horizontale scroll */
}

/* De drie gemaskeerde kleur-panelen */
.tickets__panels { position: absolute; inset: 0; }

.tickets__panel {
  position: absolute;
  top: 0;
  width: 41.25vw;             /* 594px */
  height: 15.139vw;           /* 218px */
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1978 207' preserveAspectRatio='none'><path fill='%23fff' d='M0 69V200.988V207L34.1146 138.573L397.145 156.037L525.879 148.88L730.566 156.037L967.437 148.88L1068.49 156.037L1355.57 148.88L1504.9 156.037L1934.23 139.718L1978 185.527V69H0Z'/><path fill='%23fff' d='M1978 138L1978 6.01244L1978 0L1943.89 68.4274L1580.86 50.9627L1452.12 58.1204L1247.43 50.9627L1010.56 58.1204L909.507 50.9627L622.43 58.1204L473.098 50.9628L43.7695 67.2823L0 21.4732L0 138L1978 138Z'/></svg>");
          mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1978 207' preserveAspectRatio='none'><path fill='%23fff' d='M0 69V200.988V207L34.1146 138.573L397.145 156.037L525.879 148.88L730.566 156.037L967.437 148.88L1068.49 156.037L1355.57 148.88L1504.9 156.037L1934.23 139.718L1978 185.527V69H0Z'/><path fill='%23fff' d='M1978 138L1978 6.01244L1978 0L1943.89 68.4274L1580.86 50.9627L1452.12 58.1204L1247.43 50.9627L1010.56 58.1204L909.507 50.9627L622.43 58.1204L473.098 50.9628L43.7695 67.2823L0 21.4732L0 138L1978 138Z'/></svg>");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 137.361vw 14.375vw;   /* 1978 × 207 */
          mask-size: 137.361vw 14.375vw;
}

.tickets__panel--do {           /* donderdag — blauw */
  left: 0;
  background: var(--cn-blue,#03b9f7);
  -webkit-mask-position: -18.681vw -1.111vw;   /* -269px -16px */
          mask-position: -18.681vw -1.111vw;
}

.tickets__panel--vr {           /* vrijdag — oranje */
  left: 33.194vw;               /* 478px */
  background: var(--cn-orange,#ff8400);
  -webkit-mask-position: -51.875vw -1.111vw;   /* -747px -16px */
          mask-position: -51.875vw -1.111vw;
}

.tickets__panel--za {           /* zaterdag — roze */
  left: 66.389vw;               /* 956px */
  background: var(--cn-pink,#f50044);
  -webkit-mask-position: -85.069vw -1.111vw;   /* -1225px -16px */
          mask-position: -85.069vw -1.111vw;
}

/* Tekst-overlay (los van het masker, zoals in Figma) */
.tickets__labels {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 84%;                 /* centreert labels op de kleur-strook i.p.v. het hele paneel */
  display: flex;
  z-index: 1;
}

.tickets__cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: clamp(18px, 2.78vw, 40px);
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
}

.tickets__cell span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              letter-spacing 0.3s ease,
              text-shadow 0.3s ease;
}

/* Hover: tekst poppt op, krijgt een glow + lichte trillende beweging */
.tickets__cell:hover span,
.tickets__cell:focus-visible span {
  transform: scale(1.1) translateY(-3px);
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.65),
               0 4px 12px rgba(0, 0, 0, 0.25);
  animation: ticketWiggle 0.6s ease;
}

@keyframes ticketWiggle {
  0%, 100% { rotate: 0deg; }
  25%      { rotate: -1.5deg; }
  75%      { rotate: 1.5deg; }
}

/* Bijbehorend gekleurd paneel licht op (klasse via JS gekoppeld) */
.tickets__panel {
  transition: filter 0.3s ease;
}
.tickets__panel.is-hover {
  filter: brightness(1.12) saturate(1.15)
          drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

@media (prefers-reduced-motion: reduce) {
  .tickets__cell:hover span,
  .tickets__cell:focus-visible span { animation: none; }
}

/* ── INSTRUMENT MARQUEE (horizontale scroll + parallax drums) ── */
.marquee {
  position: relative;
  z-index: 3;
  background: var(--cn-red,#FF0026);          /* zelfde rood als over + line-up → naadloos */
  overflow: visible;            /* drums mogen boven/onder de band uitsteken */
  padding: clamp(16px, 2.4vw, 34px) 0;
}

.marquee__viewport {
  overflow: hidden;            /* klipt alleen de horizontaal scrollende track */
  width: 100%;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
  padding-left: clamp(18px, 2.6vw, 44px);
}

.marquee__group span {
  font-family: 'Sink', 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--cn-yellow,#FFEE00);
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee__dot {
  font-style: normal;
  font-size: clamp(10px, 1.1vw, 16px);
  color: #fff;
  opacity: 0.85;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }

/* De parallax-drum die langzaam omhoog komt tijdens het scrollen.
   Grootte & positie uit Figma (node 64:232): 335px breed op het 1440-frame
   → 23.26vw; linkerrand op x=-131px → -9.1vw (hangt links uit beeld). */
.marquee__drum {
  position: absolute;
  z-index: 4;
  left: -9.1vw;
  bottom: -190%;
  width: 23.26vw;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
  will-change: transform;
}

@media (max-width: 700px) {
  .marquee__drum { width: 38vw; left: -10vw; bottom: -45%; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroLogoPop {
  0%   { opacity: 0; transform: scale(0.7); }
  80%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes heroDateUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__logo {
  opacity: 0;
  animation: heroLogoPop 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero__date {
  opacity: 0;
  animation: heroDateUp 0.7s ease forwards;
  animation-delay: 0.5s;
}

@keyframes heroCtaUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__cta {
  opacity: 0;
  animation: heroCtaUp 0.7s ease forwards;
  animation-delay: 0.72s;
}

/* ── REVEAL ON SCROLL (algemeen) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.tickets__cell:nth-child(1) .reveal { transition-delay: 0.05s; }
.tickets__cell:nth-child(2) .reveal { transition-delay: 0.15s; }
.tickets__cell:nth-child(3) .reveal { transition-delay: 0.25s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO — MOBILE ── */
@media (max-width: 700px) {
  .hero {
    aspect-ratio: auto;
    min-height: 90vh;
    justify-content: center;     /* op mobiel weer gecentreerd i.p.v. onderin */
    gap: 22px;
    padding: 110px 20px 40px;
  }

  .hero__logo { width: 80%; }

  .hero__date {
    white-space: normal;
    font-size: clamp(24px, 7vw, 42px);
    text-shadow: 3px 4px 0 #000;
  }

  .hero__btn {
    font-size: clamp(15px, 4.4vw, 20px);
    padding: 14px 28px;        /* lekker grote tikdoelen op telefoon */
  }

  .tickets {
    height: auto;
    margin-top: 0;
  }

  .tickets__panels { display: none; }   /* geen masker-truc op mobiel */

  .tickets__labels {
    position: static;
    height: auto;
    flex-direction: column;
  }

  .tickets__cell {
    height: auto;
    padding: 30px 20px;        /* meer ruimte tussen tekst en de rand van de balk */
    font-size: 26px;
    line-height: 1.1;
  }

  .tickets__cell:nth-child(1) { background: var(--cn-blue,#03b9f7); }
  .tickets__cell:nth-child(2) { background: var(--cn-orange,#ff8400); }
  .tickets__cell:nth-child(3) { background: var(--cn-pink,#f50044); }
}

/* ── OVER SECTIE (node 18:28) ── */
.over {
  position: relative;
  z-index: 1;                 /* onder de tickets-band (z2) → torn-bottom toont dit paars */
  margin-top: -7vw;           /* schuift onder de gescheurde onderrand van de tickets-band */
  padding-bottom: 7vw;        /* ruimte zodat de knop niet door overflow:hidden wordt afgekapt */
  background: var(--cn-red,#FF0026);        /* rood — de diagonale snede onthult de line-up eronder */
  overflow: hidden;
}

/* Paarse diagonale vorm (Rectangle 11 / Group 21) over de donkere basis */
.over__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55.2vw;             /* 795px */
  background: var(--cn-purple,#58069E);
  clip-path: polygon(0 0, 100% 0, 73.96% 69.5%, 0 100%);
  z-index: 0;
}

/* 1440×820 content-stage, gecentreerd, schaalt mee */
.over__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 5vw auto 0;         /* bovenruimte verkleind → content schuift omhoog */
  aspect-ratio: 1440 / 820;
}

/* Linker kolom — normale flow, zodat de knop nooit over de tekst valt */
.over__content {
  position: absolute;
  left: 7.57%;
  top: 3%;
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2.4vw, 34px);
}

/* Slogan — Figma: x109 y786 w750 */
.over__slogan {
  display: block;
  width: 100%;
  height: auto;
}

/* Tekst — Figma: x120 y986 w506, Poppins Medium 24px */
.over__text {
  width: 67%;                 /* stopt vóór de foto-collage, schaalt mee */
  max-width: 506px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: clamp(13px, 1.667vw, 24px);
  line-height: 1.5;
}

/* Knop — Figma: x109 y1361, var(--cn-orange,#ff8400) pill, Poppins Black 24px */
.over__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cn-orange,#ff8400);
  border-radius: 100px;
  padding: clamp(13px, 1.35vw, 19px) clamp(28px, 3vw, 46px);
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 1.667vw, 24px);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.over__btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

/* Foto-collage — box rond Figma x657-1320 / y864-1596 */
.over__photos {
  position: absolute;
  left: 45.625%;
  top: 9.5%;
  width: 46.04%;
  height: 89.3%;
}

.over__photo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  transform: translate(-50%, -50%);
}

.over__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(10px, 1.4vw, 22px);
  transform: rotate(var(--rot));
  animation: floatY var(--dur) ease-in-out var(--delay) infinite;
}

/* drie foto's met eigen positie/rotatie + zwevende beweging */
.over__photo--1 { --x: 68.3%; --y: 39.2%; --w: 64.3%; --rot:  5.85deg; --dur: 6s;   --delay: 0s;   z-index: 1; }
.over__photo--2 { --x: 26.7%; --y: 56.1%; --w: 52.5%; --rot: -0.86deg; --dur: 7s;   --delay: 0.6s; z-index: 2; }
.over__photo--3 { --x: 69.4%; --y: 76.4%; --w: 38.9%; --rot:  6.07deg; --dur: 6.5s; --delay: 1.1s; z-index: 3; }

@keyframes floatY {
  0%, 100% { transform: translateY(0)     rotate(var(--rot)); }
  50%      { transform: translateY(-16px) rotate(var(--rot)); }
}

/* ── OVER — MOBIEL / TABLET-PORTRAIT ── */
@media (max-width: 1100px) {
  .over { margin-top: -8vw; padding-bottom: 0; background: var(--cn-purple,#58069E); }
  .over__shape { display: none; }

  .over__inner {
    margin-top: 0;
    aspect-ratio: auto;
    padding: 16vw 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .over__content {
    position: static;
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 22px;
  }

  .over__slogan { max-width: 460px; }
  .over__text { font-size: 16px; text-align: center; max-width: 520px; }

  .over__btn {
    align-self: center;
    padding: 16px 36px;
    font-size: 18px;
  }

  /* foto-collage als eigen blok onder de tekst */
  .over__photos {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    margin-top: 12px;
  }
}

/* ── LINE UP SECTIE (node 33:157) ── */
.lineup {
  position: relative;
  background: var(--cn-red,#FF0026);        /* Rectangle 16 — standaard (alle artiesten) */
  overflow: hidden;
  /* ruime onderband zodat de papegaai er volledig in past zónder kaarten te raken */
  padding: 2vw 0 clamp(175px, 26vw, 360px);
  transition: background-color 0.6s ease;   /* zachte kleurwissel bij dag-filter */
}

/* Achtergrond kleurt mee met de gekozen dag (zelfde kleuren als de ticketbanden) */
.lineup[data-day="do"] { background: var(--cn-blue,#03b9f7); }   /* donderdag — blauw */
.lineup[data-day="vr"] { background: var(--cn-orange,#ff8400); }   /* vrijdag — oranje */
.lineup[data-day="za"] { background: var(--cn-pink,#f50044); }   /* zaterdag — roze */

.lineup__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 50px);
}

/* Titel — LINE UP op witte schuine banners, paarse tekst */
.lineup__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px 0 44px;
}

.lineup__title-word {
  font-family: 'Sink', sans-serif;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.82;
  color: #760cd2;
  background: #fff;
  padding: 8px 20px 4px;
}

.lineup__title-word--1 { transform: rotate(-3deg); }
.lineup__title-word--2 { transform: rotate(4deg); margin-left: -4px; }

/* Filters */
.lineup__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 4vw, 58px);
  margin-bottom: 48px;
}

.lineup__filter {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: 'Sink', sans-serif;
  font-size: clamp(17px, 1.9vw, 28px);
  line-height: 0.92;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.lineup__filter small { font-size: 1em; }

.lineup__filter:hover { opacity: 1; transform: translateY(-2px); }

.lineup__filter.is-active {
  opacity: 1;
  background: #000;
  transform: rotate(-2.5deg);   /* schuine zwarte tab (Rectangle 14) */
  border-radius: 3px;
}

/* ── Weergave-toggle: mét foto's / alleen namen ── */
.lineup__viewrow {
  display: flex;
  justify-content: center;
  margin: -18px 0 42px;
}

.lineup__view {
  position: relative;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 5px;
  gap: 0;
}

/* schuivende witte pil achter de actieve knop */
.lineup__view-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  width: calc(50% - 5px);
  background: #fff;
  border-radius: 100px;
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.5, 1);
  z-index: 0;
}
.lineup__view.is-list .lineup__view-slider { transform: translateX(100%); }

.lineup__view-btn {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  font-family: 'Sink', sans-serif;
  font-size: clamp(14px, 1.5vw, 21px);
  line-height: 1;
  padding: 11px 26px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.28s ease;
}
.lineup__view-btn svg { transition: transform 0.28s ease; }
.lineup__view-btn.is-active { color: #5a0aa6; }
.lineup__view-btn:not(.is-active):hover { color: var(--yellow); }
.lineup__view-btn:not(.is-active):hover svg { transform: scale(1.12); }

/* Grid van artiest-kaarten */
.lineup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 28px;
}

/* ── Weergave 2: alleen namen (zonder foto's) — compact responsive grid ── */
.lineup__grid.is-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);          /* mobiel: 2 kolommen */
  gap: clamp(8px, 1.4vw, 20px) clamp(12px, 2vw, 32px);
  align-items: stretch;
  justify-items: stretch;
  max-width: 1180px;
  margin-inline: auto;
}
@media (min-width: 560px)  { .lineup__grid.is-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .lineup__grid.is-list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .lineup__grid.is-list { grid-template-columns: repeat(5, 1fr); } }

.lineup__name {
  position: relative;
  isolation: isolate;
  min-width: 0;                         /* gelijke 1fr-kolommen → geen overflow/afkapping */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  /* beter leesbaar dan het display-font, ook bij onbekende artiestennamen */
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 24px);
  line-height: 1.18;
  letter-spacing: 0.2px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);
  text-align: center;
  padding: 9px 8px;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.28s ease;
  animation: cardIn 0.5s ease both;
}

.lineup__name-text {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;              /* lange namen breken netjes af i.p.v. afgekapt te worden */
}
html.gsap .lineup__name { animation: none; }

/* gele highlight achter de naam bij hover (zoals de titel-tabs) */
.lineup__name::before {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: 3px;
  bottom: 3px;
  background: var(--yellow);
  border-radius: 6px;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
  z-index: -1;
}
.lineup__name:hover {
  color: #5a0aa6;
  text-shadow: none;
  transform: scale(1.04);
}
.lineup__name:hover::before { transform: scale(1); opacity: 1; }

/* datum verschijnt subtiel ónder de naam bij hover (absoluut → geen layout-shift) */
.lineup__name-date {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 1px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(10px, 0.95vw, 13px);
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.lineup__name:hover .lineup__name-date { opacity: 0.95; transform: translateY(0); }

.lineup__card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  animation: cardIn 0.5s ease both;
  /* tilt: transform wordt via js gezet; vloeiende terugkeer + 3D-context */
  transform-style: preserve-3d;
  transition: transform 0.18s ease;
  will-change: transform;
}

/* entree is opacity-only zodat de js-tilt-transform niet wordt overschreven */
@keyframes cardIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Artiest zonder foto → nette naam-tegel (zelfde vierkant als de foto-kaarten) */
.lineup__card--noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}
.lineup__card-noname {
  font-family: 'Sink', sans-serif;
  font-size: clamp(18px, 2.5vw, 36px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  overflow-wrap: anywhere;
}
.lineup__card--noimg:hover { background: rgba(0, 0, 0, 0.24); }

.lineup__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* foto vervaagt onderaan naar het rood (Rectangle 18 gradient) */
  -webkit-mask: linear-gradient(to bottom, #000 42%, transparent 92%);
          mask: linear-gradient(to bottom, #000 42%, transparent 92%);
  transition: transform 0.3s ease;
}

.lineup__card:hover img { transform: scale(1.04); }

/* Naam + datum in één balk onderaan → de naam krijgt de ruimte links (breekt af
   indien lang), de datum staat vast rechts. Zo overlappen ze nooit. */
.lineup__card-cap {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 10%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  pointer-events: none;
}

.lineup__card-name {
  min-width: 0;
  font-family: 'Sink', sans-serif;
  font-size: clamp(18px, 2.4vw, 34px);
  line-height: 1.02;
  color: #fff;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;        /* lange namen breken netjes af i.p.v. over de datum heen */
}

.lineup__card-date {
  flex: 0 0 auto;
  font-family: 'Sink', sans-serif;
  font-size: clamp(11px, 1.3vw, 18px);
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* Meer laden */
.lineup__more {
  display: block;
  margin: 46px auto 0;
  background: none;
  border: 2px solid #fff;
  border-radius: 100px;
  color: #fff;
  font-family: 'Sink', sans-serif;
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 1px;
  padding: 14px 44px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.lineup__more:hover { background: #fff; color: var(--cn-red,#FF0026); }
.lineup__more.is-hidden { display: none; }

/* Decoratieve papegaai (Figma node 66:233): 394px breed op het 1440-frame
   → 27.36vw; rechterrand 95px voorbij de framerand → right: -6.6vw.
   Hangt rechtsonder in de line-up en komt langzaam tevoorschijn bij scrollen.
   Opacity/translateY worden in js per scroll-frame gezet. */
.lineup__parrot {
  position: absolute;
  /* in de lege band ónder het grid, hangend van de rechterrand af → volledig
     zichtbaar zonder ook maar iets te overlappen, en schaalt mee met vw. */
  left: auto;
  right: -2vw;
  bottom: 1.5vw;
  /* schaalt mee met vw zodat hij op élke breedte volledig in de onderband past */
  width: clamp(150px, 22vw, 300px);
  height: auto;
  z-index: 4;
  pointer-events: none;
  opacity: 0;                 /* js neemt het over (ook bij reduced-motion) */
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
  will-change: transform, opacity;
}

@media (max-width: 700px) {
  /* op telefoon hangt de papegaai iets verder in de hoek; maat + onderband
     worden door de basis-clamps geregeld → geen overlap met namen/kaarten/knop. */
  .lineup__parrot { right: -5vw; bottom: 2vw; }
}

/* Responsive grid */
@media (max-width: 950px) {
  .lineup__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .lineup__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .lineup__filters { gap: 14px 22px; }
}

/* ── HOSTING PARTNERS (node 56:153) ── */
.partners {
  position: relative;
  z-index: 1;
  margin-top: -6vw;          /* overlapt het line-up-rood → torn top toont het rood */
  background: transparent;   /* de gescheurde top van de foto onthult het rood eronder */
  overflow: hidden;
  padding: 9vw 0 6vw;
}

/* Brug-achtergrond (Vector 3) — de foto heeft de gescheurde rand in z'n alpha */
.partners__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
}

.partners__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 50px);
}

.partners__title {
  text-align: center;
  font-family: 'Sink', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 5px 7px 0 #000;
  margin: 0 0 clamp(36px, 5vw, 60px);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 72px) 30px;
  align-items: center;
  justify-items: center;
}

.partners__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__logo img {
  max-width: 92%;
  max-height: clamp(110px, 14.5vw, 200px);
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partners__logo:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

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

/* ── FAQ (node 48:310) ── */
.faq {
  position: relative;
  z-index: 2;
  margin-top: -2vw;          /* gescheurde oranje top overlapt de partners */
  background: var(--cn-orange,#FF8400);       /* Rectangle 20 */
  padding: 7vw 0 6vw;
  /* gescheurde bovenrand (Vector 7) */
  clip-path: polygon(
    0 2vw, 12% 0.5vw, 22% 2vw, 38% 0.3vw, 52% 1.8vw, 60% 0, 72% 1.6vw, 86% 0.4vw, 100% 1.9vw,
    100% 100%, 0 100%
  );
}

.faq__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.faq__title {
  text-align: center;
  font-family: 'Sink', sans-serif;
  font-size: clamp(54px, 9vw, 96px);
  line-height: 1;
  color: #fff;
  text-shadow: 4px 6px 0 rgba(0, 0, 0, 0.25);
  margin: 0 0 clamp(30px, 5vw, 54px);
}

.faq__cat {
  font-family: 'Sink', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.5px;
  color: #2a0f00;
  margin: 30px 0 14px;
}

.faq__cat:first-of-type { margin-top: 0; }

.faq__item {
  background: #1c0d07;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.faq__item[open] { background: #26130b; }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(15px, 2vw, 22px) clamp(18px, 2.4vw, 28px);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 20px);
  color: #fff;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cn-yellow,#FFEE00); }

/* + / − icoon */
.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--cn-yellow,#FFEE00);
  border-radius: 2px;
}

.faq__icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  transform: translateY(-50%);
}

.faq__icon::after {
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }

.faq__a {
  padding: 0 clamp(18px, 2.4vw, 28px) clamp(18px, 2.2vw, 24px);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  animation: faqOpen 0.3s ease;
}

.faq__a p { margin: 0; }
.faq__a p + p { margin-top: 10px; }
.faq__a a { color: var(--cn-yellow,#FFEE00); text-decoration: underline; }
.faq__a ul { margin: 10px 0 0; padding-left: 1.3em; }
.faq__a li { margin: 4px 0; }
.faq__a li::marker { color: var(--cn-yellow,#FFEE00); }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER (node 56:158) ── */
.footer {
  position: relative;
  z-index: 4;                /* boven de contact-sectie (z3) → scheur-top onthult het paars */
  margin-top: -6vw;          /* overlap groter dan de torn-diepte (4.17vw) → geen donkere naad */
  background: var(--cn-red,#FF0026);       /* Union / Rectangle 22 */
  /* hoekige gescheurde bovenrand (Union): grote piek ~37%, kleine notch ~59% */
  clip-path: polygon(
    0 4.17vw, 15.66% 4.17vw, 37.18% 0, 58.58% 2.08vw, 60.03% 4.17vw, 100% 4.17vw,
    100% 100%, 0 100%
  );
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5vw clamp(20px, 4vw, 58px) 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
}

/* "Pushed by" credit — klein, naast de copyright, linkt naar localpromotors.com */
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__credit:hover { opacity: 0.75; }
.footer__credit-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__credit:hover .footer__credit-text { color: #fff; }
.footer__credit-logo {
  height: clamp(18px, 1.7vw, 24px);
  width: auto;
  display: block;
}

.footer__copy {
  font-family: 'Sink', sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.5px;
  color: #fff;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.footer__terms {
  font-family: 'Sink', sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__terms:hover { color: var(--cn-yellow,#FFEE00); }

.footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__social a {
  display: inline-flex;
  color: #fff;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer__social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer__social a:hover {
  transform: translateY(-3px);
  color: var(--cn-yellow,#FFEE00);
}

/* Footer mobiel */
@media (max-width: 700px) {
  .footer { margin-top: -7vw; }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 12vw;
    gap: 18px;
  }
  .footer__right { flex-direction: column; gap: 16px; }
}

/* ── PAGE SECTIONS ── */
.section { min-height: 100vh; padding: 120px 40px; }

/* ── HAMBURGER (hidden on desktop) ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
  background: none;
  border: none;
  position: absolute;
  left: 18px;
  top: 20px;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── MOBILE OVERLAY ── */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 46, 0.97);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav__mobile-overlay.open {
  display: flex;
  opacity: 1;
}

.nav__mobile-link {
  color: #fff;
  text-decoration: none;
  font-size: 36px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.25s ease;
}

.nav__mobile-link--tickets { color: var(--yellow); }

.nav__mobile-overlay.open .nav__mobile-link { opacity: 1; transform: translateY(0); }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(1) { transition-delay: 0.08s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(2) { transition-delay: 0.13s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(3) { transition-delay: 0.18s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(4) { transition-delay: 0.23s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(5) { transition-delay: 0.28s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(6) { transition-delay: 0.33s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(7) { transition-delay: 0.38s; }
.nav__mobile-link:hover { color: var(--yellow); }

/* ── RESPONSIVE ── */
/* Desktop-nav schaalt lineair mee tussen de hamburger-breakpoint en 1440px.
   De volledige 1440px Figma-nav wordt via transform: scale() exact in de
   viewport gepast → identieke verhoudingen, nooit overlap of afkappen.
   --nav-scale (= viewport / 1440) wordt in js gezet. */
@media (min-width: 901px) and (max-width: 1439px) {
  .nav__inner {
    width: 1440px;
    max-width: none;
    margin: 0;
    transform-origin: top left;
    transform: scale(var(--nav-scale, 1));
  }
}

@media (max-width: 900px) {
  .nav__link,
  .nav__tickets { display: none; }

  .nav__hamburger { display: flex; }

  .nav__logo {
    left: 50%;
    top: 4px;
    width: 130px;
    height: 75px;
    transform: translateX(-50%);
    animation: none;
    opacity: 1;
  }

  .nav__logo:hover img { transform: scale(1.06); }

  .nav__inner { height: 78px; }
}

/* ══════════════════════════════════════════════════════════════
   EXTRA POLISH: selectie, afteltimer, sticky CTA, scroll-balk, grain
   ══════════════════════════════════════════════════════════════ */

/* Tekstselectie in merkkleur */
::selection { background: var(--cn-pink,#F50044); color: #fff; }
::-moz-selection { background: var(--cn-pink,#F50044); color: #fff; }

/* ── AFTELTIMER ── */
.countdown {
  display: flex;
  gap: clamp(8px, 1.1vw, 16px);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(54px, 5.6vw, 82px);
  padding: clamp(8px, 0.9vw, 13px) clamp(8px, 1vw, 16px);
  background: var(--cn-yellow,#FFEE00);          /* knallende gele vulling i.p.v. transparant */
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.countdown__num {
  font-family: 'Sink', sans-serif;
  font-size: clamp(26px, 3.3vw, 46px);
  line-height: 1;
  color: var(--cn-purple,#58069E);              /* paars → hoog contrast op geel */
  font-variant-numeric: tabular-nums;
}

.countdown__lbl {
  margin-top: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(9px, 0.85vw, 12px);
  letter-spacing: 1.5px;
  color: var(--cn-purple,#58069E);
}

/* ── SCROLL-VOORTGANGSBALK ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1100;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--cn-yellow,#FFEE00), var(--cn-orange,#FF8400), var(--cn-pink,#F50044), var(--cn-purple,#58069E));
  pointer-events: none;
}

/* ── MEESCROLLENDE TICKETS-KNOP ── */
.sticky-cta {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--cn-yellow,#FFEE00);
  color: var(--cn-purple,#58069E);
  font-family: 'Sink', sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, background 0.2s ease;
}

.sticky-cta.show { opacity: 1; transform: translateY(0); }
.sticky-cta:hover { background: #fff; transform: translateY(-3px); }

.sticky-cta__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cn-pink,#F50044);
  box-shadow: 0 0 0 0 rgba(245, 0, 68, 0.6);
  animation: ctaPulse 1.8s ease-out infinite;
}

@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 0, 68, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 0, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 0, 68, 0); }
}

/* ── HERO FILM-GRAIN ── */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta__pulse { animation: none; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACTFORMULIER + RESULTAAT-POPUP
   ══════════════════════════════════════════════════════════════ */
.contact {
  position: relative;
  z-index: 3;                  /* boven de FAQ (z2), onder de footer (z4) */
  margin-top: -2vw;            /* schuift over de FAQ → gescheurde top toont het oranje */
  background: var(--cn-purple,#58069E);         /* paars — duidelijk onderscheid van FAQ (oranje) & footer (rood) */
  padding: 7vw 0 9vw;          /* ruimte voor de scheur-top + footer overlapt onderrand (-6vw) */
  /* gescheurde bovenrand, zelfde stijl als de FAQ */
  clip-path: polygon(
    0 2vw, 12% 0.5vw, 22% 2vw, 38% 0.3vw, 52% 1.8vw, 60% 0, 72% 1.6vw, 86% 0.4vw, 100% 1.9vw,
    100% 100%, 0 100%
  );
}

.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.contact__title {
  text-align: center;
  font-family: 'Sink', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: #fff;
  text-shadow: 4px 6px 0 rgba(0, 0, 0, 0.25);
  margin: 0 0 10px;
}

.contact__intro {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 clamp(24px, 3vw, 38px);
}

.contact__form { display: flex; flex-direction: column; gap: 16px; }
.contact__row { display: flex; gap: 16px; }
.contact__row .contact__field { flex: 1; }
.contact__field { display: flex; flex-direction: column; gap: 7px; }

.contact__field > span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.3px;
}
.contact__field small { font-weight: 500; opacity: 0.65; }

.contact__field input,
.contact__field textarea {
  width: 100%;
  background: #1c0d07;          /* zelfde donker als de FAQ-items */
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;             /* 16px voorkomt auto-zoom op iOS */
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact__field textarea { resize: vertical; min-height: 120px; }

.contact__field input::placeholder,
.contact__field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--cn-yellow,#FFEE00);
  background: #26130b;
}
.contact__field input:user-invalid,
.contact__field textarea:user-invalid { border-color: var(--cn-pink,#F50044); }

/* Honeypot — verborgen voor mensen, zichtbaar/invulbaar voor bots */
.contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__submit {
  align-self: center;
  margin-top: 6px;
  background: var(--cn-pink,#F50044);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: 'Sink', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 1px;
  padding: 15px 46px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact__submit:hover {
  background: var(--cn-purple,#58069E);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.contact__submit:disabled { opacity: 0.6; cursor: progress; transform: none; }

@media (max-width: 560px) {
  .contact__row { flex-direction: column; }
}

/* ── RESULTAAT-POPUP ── */
.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 6, 30, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.popup[hidden] { display: none; }
.popup.show { opacity: 1; }

.popup__card {
  background: #fff;
  border-radius: 20px;
  padding: 38px 34px 30px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup.show .popup__card { transform: scale(1); }

.popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  position: relative;
}
.popup__icon::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
}
.popup--success .popup__icon { background: #1bbf6b; }
.popup--success .popup__icon::after { content: '✓'; }
.popup--error .popup__icon { background: var(--cn-pink,#F50044); }
.popup--error .popup__icon::after { content: '✕'; }

.popup__title {
  font-family: 'Sink', sans-serif;
  font-size: 30px;
  color: var(--cn-dark,#1a0a2e);
  margin: 0 0 8px;
}
.popup__msg {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
  margin: 0 0 22px;
}
.popup__close {
  background: var(--cn-dark,#1a0a2e);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Sink', sans-serif;
  font-size: 18px;
  padding: 11px 34px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup__close:hover { background: var(--cn-purple,#58069E); }

/* ══════════════════════════════════════════════════════════════
   FASE 3 — CTA shine-sweep + urgente countdown
   ══════════════════════════════════════════════════════════════ */
.over__btn, .lineup__more, .contact__submit { position: relative; overflow: hidden; }

.over__btn::after,
.lineup__more::after,
.contact__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.over__btn:hover::after,
.lineup__more:hover::after,
.contact__submit:hover::after { animation: ctaShine 0.7s ease; }

@keyframes ctaShine { from { left: -130%; } to { left: 130%; } }

/* Countdown — urgente stijl (≤ 3 dagen): rood + pulserend */
.countdown--urgent .countdown__unit {
  background: var(--cn-pink,#F50044);
  animation: cdPulse 1s ease-in-out infinite;
}
.countdown--urgent .countdown__num,
.countdown--urgent .countdown__lbl { color: #fff; }

@keyframes cdPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

@media (prefers-reduced-motion: reduce) {
  .over__btn::after, .lineup__more::after, .contact__submit::after { display: none; }
  .countdown--urgent .countdown__unit { animation: none; }
}

/* ── COOKIE-TOESTEMMINGSBANNER ── */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  flex-wrap: wrap;
  padding: 16px clamp(16px, 4vw, 40px);
  background: var(--cn-dark,#1a0a2e);
  border-top: 3px solid var(--cn-pink,#F50044);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.consent.show { transform: translateY(0); }

.consent__text {
  margin: 0;
  flex: 1 1 420px;
  max-width: 760px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.consent__text strong { color: #fff; }

.consent__btns { display: flex; gap: 12px; flex-shrink: 0; }
.consent__btn {
  border: none;
  border-radius: 100px;
  font-family: 'Sink', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 11px 26px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.consent__btn--no {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.consent__btn--no:hover { color: #fff; border-color: #fff; }
.consent__btn--yes { background: var(--cn-yellow,#FFEE00); color: var(--cn-purple,#58069E); }
.consent__btn--yes:hover { background: #fff; transform: translateY(-2px); }

@media (max-width: 600px) {
  .consent { flex-direction: column; text-align: center; gap: 12px; padding: 14px 18px; }
  .consent__text { flex: 0 1 auto; max-width: none; font-size: 13px; line-height: 1.45; }
  .consent__btns { width: 100%; }
  .consent__btn { flex: 1; }
}

/* ════════════════════════════════════════════════════════════════
   SEO-tekstsectie (onderaan de homepage) + losse SEO-pagina's
   ════════════════════════════════════════════════════════════════ */
/* SEO-tekstsectie: NIET zichtbaar voor bezoekers (past niet bij het ontwerp),
   maar blijft in de HTML staan voor zoekmachines/toegankelijkheid.
   De zware, veilige SEO-winst (event + volledige line-up) zit in de JSON-LD. */
.seo-section {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.seo-section__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.seo-section__title {
  font-family: 'Sink', sans-serif;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.seo-section__sub {
  font-family: 'Sink', sans-serif;
  color: var(--cn-yellow, #FFEE00);
  font-size: clamp(18px, 2.2vw, 28px);
  margin: 26px 0 12px;
}
.seo-section p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.7;
  margin: 0 0 14px;
}
.seo-lineup { color: rgba(255, 255, 255, 0.78); }
.seo-lineup strong { color: #fff; }
.seo-section a { color: var(--cn-yellow, #FFEE00); }

/* Losse pagina's (/line-up, /tickets) */
.seo-page {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(120px, 15vw, 180px) clamp(20px, 5vw, 40px) clamp(50px, 8vw, 90px);
  color: rgba(255, 255, 255, 0.88);
  min-height: 62vh;
}
.seo-page h1 {
  font-family: 'Sink', sans-serif;
  color: #fff;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.02;
  margin: 0 0 20px;
}
.seo-page h2 {
  font-family: 'Sink', sans-serif;
  color: var(--cn-yellow, #FFEE00);
  font-size: clamp(20px, 2.6vw, 34px);
  margin: 28px 0 10px;
}
.seo-page p { font-family: 'Poppins', sans-serif; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.7; margin: 0 0 14px; }
.seo-page ul { padding-left: 1.3em; margin: 8px 0 0; }
.seo-page li { font-family: 'Poppins', sans-serif; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6; margin: 5px 0; }
.seo-page a { color: var(--cn-yellow, #FFEE00); }
.seo-page .seo-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--cn-yellow, #FFEE00);
  color: #3a0a63;
  font-family: 'Sink', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  padding: 13px 32px;
  border-radius: 100px;
  text-decoration: none;
}
.seo-page .seo-cta:hover { filter: brightness(1.05); }
