/* ==========================================================================
   DISTRICT 44 — website
   Merk: zwart + champagnegoud + chroom. Dunne kaders, brede letterspatie,
   warme zonsondergang als enige kleuraccent.
   ========================================================================== */

:root {
  --gold: #c9a961;
  --gold-hot: #f0d79a;
  --gold-deep: #8c6f32;
  --amber: #e8a24b;
  --ink: #09090a;
  --ink-2: #0f0f11;
  --ink-3: #17171a;
  --ivory: #f4f1ea;
  --line: rgba(255, 255, 255, .10);
  --line-gold: rgba(201, 169, 97, .42);
  --white: #fff;
  --muted: rgba(255, 255, 255, .62);

  --chrome: linear-gradient(172deg, #fff 0%, #e9ebee 20%, #a9aeb5 40%, #fbfbfc 50%, #c3c8ce 62%, #8f949b 80%, #f4f5f7 100%);

  --f-display: "Montserrat", "Century Gothic", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 4px;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ink); color: var(--white);
  font: 400 16px/1.65 var(--f-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
svg .fill { fill: currentColor; stroke: none; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
:focus-visible { outline: 2px solid var(--gold-hot); outline-offset: 3px; border-radius: 2px; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 2px; font-weight: 600; }
.skip:focus { top: 12px; }

/* ---------------- Woordmerk ---------------- */
.wm { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; font-family: var(--f-display); font-weight: 300; }
.wm b, .wm i, .wm em {
  font-style: normal; font-weight: 300; display: block;
  background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .55));
}
.wm b { letter-spacing: .14em; text-indent: .14em; }
.wm i { letter-spacing: .1em; text-indent: .1em; }
.wm em { font-weight: 400; letter-spacing: .3em; text-indent: .3em; }
.wm em span { color: var(--gold); -webkit-text-fill-color: var(--gold); margin-inline: .2em; }

/* in de header */
.wm-inline { flex-direction: row; align-items: baseline; gap: .5em; font-size: 1.05rem; }
.wm-inline i { font-size: .95em; }

/* in de hero: het volledige lockup met gouden kader */
.wm-hero { position: relative; margin: 0; padding: clamp(26px, 4.4vw, 54px) clamp(10px, 4vw, 40px) clamp(22px, 3.4vw, 44px); width: 100%; }
.wm-hero .wm-frame {
  position: absolute; inset: 0 12% 0 12%; border: 1px solid var(--line-gold);
  box-shadow: 0 0 90px -20px rgba(201, 169, 97, .35) inset, 0 0 120px -40px rgba(0, 0, 0, .9) inset;
  animation: frame-in 1.1s var(--ease) both;
}
.wm-hero b { font-size: clamp(2.5rem, 11.4vw, 9.5rem); animation: fade-up .9s .15s var(--ease) both; }
.wm-hero i { font-size: clamp(1.5rem, 6.4vw, 5.2rem); margin-top: .12em; animation: fade-up .9s .3s var(--ease) both; }
.wm-hero em { font-size: clamp(.62rem, 1.7vw, 1.15rem); margin-top: clamp(14px, 2vw, 26px); animation: fade-up .9s .45s var(--ease) both; }
@keyframes frame-in { from { opacity: 0; transform: scaleY(.7); } to { opacity: 1; transform: none; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* in de footer */
.wm-foot { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 18px; }
.wm-foot i { font-size: .7em; margin-top: .15em; }

/* ---------------- Buttons ---------------- */
.btn {
  --bg: transparent; --fg: var(--white); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: .75em 1.6em; border-radius: 2px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font: 600 .82rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { font-size: 1.3em; stroke-width: 2; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { min-height: 40px; padding: .55em 1.1em; font-size: .72rem; }
.btn-lg { min-height: 58px; padding: .9em 2em; font-size: .9rem; }
.btn-gold { --bg: var(--gold); --fg: #17130a; --bd: var(--gold); box-shadow: 0 8px 28px -12px rgba(201, 169, 97, .9); }
.btn-gold:hover { --bg: var(--gold-hot); --bd: var(--gold-hot); box-shadow: 0 12px 36px -12px rgba(240, 215, 154, .9); }
.btn-black { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn-black:hover { --bd: var(--gold); --fg: var(--gold-hot); }
.btn-ghost { --bd: rgba(255, 255, 255, .3); --bg: rgba(255, 255, 255, .04); backdrop-filter: blur(6px); }
.btn-ghost:hover { --bd: var(--gold); --fg: var(--gold-hot); }
.btn-outline { --bd: var(--line-gold); --fg: var(--gold-hot); }
.btn-outline:hover { --bd: var(--gold); --bg: rgba(201, 169, 97, .12); }
.btn-outline.is-disabled, .btn-outline:disabled { --bd: rgba(255, 255, 255, .14); --fg: rgba(255, 255, 255, .35); cursor: not-allowed; }
.btn-outline:disabled:hover { transform: none; --bg: transparent; }
.btn-text { padding-inline: .6em; border: 0; letter-spacing: .12em; color: var(--muted); }
.btn-text:hover { transform: none; color: var(--gold-hot); }
.btn-spotify { --bg: #1ed760; --fg: #09090a; --bd: #1ed760; }
.btn-spotify:hover { --bg: #3be477; --bd: #3be477; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.linklike { background: none; border: 0; padding: 0; cursor: pointer; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid { background: rgba(9, 9, 10, .86); backdrop-filter: blur(14px) saturate(1.3); border-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { text-decoration: none; opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s var(--ease); }
.site-header.is-solid .brand { opacity: 1; transform: none; }
.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a { position: relative; padding: 8px 14px; text-decoration: none; font: 500 .76rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }
.nav a:hover { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-link { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-size: 1.15rem; color: rgba(255, 255, 255, .75); transition: background .2s, color .2s; }
.icon-link:hover { background: rgba(255, 255, 255, .08); color: var(--gold-hot); }
.menu-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 1px; background: #fff; transition: transform .3s var(--ease), top .3s; }
.menu-toggle span:first-child { top: 18px; } .menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; left: 0; right: 0; height: calc(100svh - var(--header-h)); overflow-y: auto; background: var(--ink); border-top: 1px solid var(--line); display: flex; flex-direction: column; padding: 28px var(--gutter); gap: 2px; }
.mobile-menu a { font: 300 clamp(1.7rem, 8vw, 2.6rem)/1.5 var(--f-display); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: clamp(640px, 100svh, 1040px); display: flex; flex-direction: column; justify-content: center;
  isolation: isolate; overflow: hidden; background: var(--ink); text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.sunrise {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 8% 68%, rgba(232, 162, 75, .55) 0%, rgba(232, 162, 75, .16) 34%, transparent 66%),
    radial-gradient(70% 55% at 88% 12%, rgba(201, 169, 97, .14) 0%, transparent 70%),
    linear-gradient(180deg, #121215 0%, #0b0b0d 48%, #09090a 100%);
}
.horizon { position: absolute; left: 0; right: 0; bottom: 0; }
.horizon img { width: 100%; height: clamp(120px, 22vh, 260px); object-fit: cover; object-position: 50% 40%; opacity: .95; }
.horizon::after { content: ""; position: absolute; inset: -60px 0 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(9, 9, 10, .72) 34%, rgba(9, 9, 10, .1) 62%, rgba(9, 9, 10, .55) 100%); }
.beams { position: absolute; inset: 0; mix-blend-mode: screen; pointer-events: none; }
.beams i {
  position: absolute; left: 6%; top: 74%; width: 120vmax; height: 1px; transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(255, 228, 176, .8), rgba(232, 162, 75, .22) 26%, transparent 62%);
  filter: blur(.4px) drop-shadow(0 0 10px rgba(232, 162, 75, .7));
  opacity: 0; animation: beam 11s var(--ease) infinite;
}
.beams i:nth-child(1) { --a: -28deg; --b: -14deg; animation-delay: 0s; }
.beams i:nth-child(2) { --a: -44deg; --b: -30deg; animation-delay: 3.6s; }
.beams i:nth-child(3) { --a: -8deg; --b: -2deg; animation-delay: 7.2s; }
@keyframes beam {
  0% { transform: rotate(var(--a)); opacity: 0; }
  18% { opacity: .55; }
  55% { transform: rotate(var(--b)); opacity: .35; }
  72%, 100% { transform: rotate(var(--b)); opacity: 0; }
}
.grain { position: absolute; inset: -50%; opacity: .07; pointer-events: none;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.4s steps(6) infinite; }
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-3%,2%)} 40%{transform:translate(2%,-3%)} 60%{transform:translate(-2%,-1%)} 80%{transform:translate(3%,3%)} 100%{transform:translate(0,0)} }

.hero-content { position: relative; display: flex; flex-direction: column; align-items: center; padding-top: calc(var(--header-h) + 18px); padding-bottom: clamp(90px, 16vh, 180px); }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .4em 1em; margin: 0 0 clamp(14px, 2.4vh, 26px);
  font: 500 clamp(.66rem, 1.5vw, .82rem)/1.4 var(--f-body); letter-spacing: .24em; text-transform: uppercase; color: rgba(255, 255, 255, .78);
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-tagline {
  margin: clamp(22px, 3.4vh, 38px) 0 0; font: 300 clamp(.78rem, 1.9vw, 1.05rem)/1.6 var(--f-display);
  letter-spacing: .26em; text-transform: uppercase; color: rgba(255, 255, 255, .72); max-width: 48ch;
  animation: fade-up .9s .6s var(--ease) both;
}
.hero-bottom { display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3.2vh, 34px); margin-top: clamp(28px, 5vh, 54px); animation: fade-up .9s .75s var(--ease) both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.countdown { display: flex; gap: 6px; }
.countdown div { border: 1px solid var(--line-gold); background: rgba(9, 9, 10, .55); backdrop-filter: blur(6px); min-width: 78px; padding: 12px 10px 9px; text-align: center; }
.countdown b { display: block; font: 300 2.2rem/1 var(--f-display); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.countdown span { font: 500 .6rem/1 var(--f-body); text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }
.countdown.is-live b { color: var(--gold-hot); }
.countdown .cd-live { min-width: auto; padding-inline: 22px; }

/* Twee identieke groepen i.p.v. één zeer brede strook: iOS Safari rendert te brede lagen zwart */
.marquee { position: absolute; left: 0; right: 0; bottom: 0; display: flex; overflow: hidden; padding: 13px 0 11px; background: rgba(9, 9, 10, .72); backdrop-filter: blur(8px); border-top: 1px solid var(--line-gold); }
.marquee-track { display: flex; flex: none; animation: marquee 42s linear infinite; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.marquee-track span { font: 400 clamp(.7rem, 1.3vw, .86rem)/1 var(--f-display); letter-spacing: .28em; text-transform: uppercase; padding-inline: 20px; white-space: nowrap; display: flex; align-items: center; gap: 40px; color: rgba(255, 255, 255, .8); }
.marquee-track span::after { content: ""; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-100%, 0, 0); } }

/* ---------------- Sections ---------------- */
.section { position: relative; padding-block: clamp(72px, 11vw, 140px); isolation: isolate; }
.section-dark { background: var(--ink); }
.section-ink { background: var(--ink-2); }
.section-gold { background: var(--ink); overflow: hidden; }
.section-gold .texture {
  position: absolute; inset: 0; z-index: -1;
  background: url("../img/brand/glow-1400.webp") center 30% / cover; opacity: .34;
}
.section-gold .texture::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 9, 10, .88), rgba(9, 9, 10, .62) 42%, rgba(9, 9, 10, .95)); }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.eyebrow { margin: 0 0 14px; font: 500 .72rem/1.4 var(--f-body); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.title { margin: 0; font: 200 clamp(2.4rem, 6.4vw, 4.6rem)/1.05 var(--f-display); letter-spacing: .1em; text-transform: uppercase; }
.lead { margin: 18px 0 0; font-size: clamp(1rem, 1.35vw, 1.12rem); color: var(--muted); max-width: 62ch; }

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

/* ---------------- Line-up ---------------- */
.lineup { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(8px, 1.2vw, 14px); }
.artist {
  position: relative; overflow: hidden; background: var(--ink-3);
  grid-column: span 2; aspect-ratio: 4 / 3.6; isolation: isolate; cursor: pointer;
}
.artist.tier-1 { grid-column: span 3; aspect-ratio: 16 / 10; }
.artist.tier-2 { grid-column: span 3; aspect-ratio: 16 / 8.5; }
.artist .pics { position: absolute; inset: 0; }
.artist .pics img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; filter: saturate(.78) contrast(1.04); transition: transform 1.2s var(--ease), filter .6s; }
.artist:hover .pics img { transform: scale(1.05); filter: saturate(.95) contrast(1.06); }
.artist::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9,9,10,.1) 0%, transparent 34%, rgba(9,9,10,.5) 66%, rgba(9,9,10,.95) 100%); }
.artist::before { content: ""; position: absolute; inset: 0; z-index: 2; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); transition: box-shadow .3s; pointer-events: none; }
.artist:hover::before { box-shadow: inset 0 0 0 1px var(--gold); }
.artist-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(14px, 2vw, 26px); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.artist h3 { margin: 0; font: 300 clamp(1.05rem, 2vw, 1.7rem)/1.15 var(--f-display); letter-spacing: .14em; text-transform: uppercase; text-wrap: balance; }
.artist.tier-1 h3 { font-size: clamp(1.4rem, 3vw, 2.6rem); }
.artist.tier-2 h3 { font-size: clamp(1.2rem, 2.4vw, 2.1rem); }
.chip { flex: none; font: 500 .6rem/1.3 var(--f-body); letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; border: 1px solid var(--line-gold); color: var(--gold-hot); background: rgba(9,9,10,.5); backdrop-filter: blur(6px); max-width: 45%; text-align: right; }
.artist .more { position: absolute; top: 14px; right: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px;
  background: rgba(9,9,10,.7); backdrop-filter: blur(6px); border: 1px solid var(--line-gold); font: 500 .62rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s var(--ease); }
.artist .more svg { font-size: .9rem; color: var(--gold-hot); }
.artist:hover .more, .artist:focus-within .more { opacity: 1; transform: none; }
@media (hover: none) { .artist .more { opacity: 1; transform: none; } }
.artist-btn { position: absolute; inset: 0; z-index: 4; background: none; border: 0; padding: 0; cursor: pointer; }
.artist-btn:focus-visible { outline-offset: -4px; }

.timetable-note { margin-top: 28px; display: flex; gap: 16px; align-items: center; padding: 18px 22px; border: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.timetable-note svg { font-size: 1.6rem; color: var(--gold); }
.timetable-note p { margin: 0; }
.timetable-note strong { color: #fff; font-weight: 600; }

.listen { margin-top: 28px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: center; background: var(--ink-3); border: 1px solid var(--line); padding: 24px; }
.listen h3 { margin: 0 0 6px; font: 300 1.6rem/1 var(--f-display); letter-spacing: .1em; text-transform: uppercase; }
.listen p { margin: 0; color: var(--muted); }

/* ---------------- Het concept ---------------- */
.about-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-text .lead + .lead { margin-top: 14px; }
.about-facts { list-style: none; margin: clamp(28px, 4vw, 44px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-facts li { background: var(--ink-2); padding: 18px 10px; text-align: center; }
.about-facts b { display: block; font: 200 clamp(1.8rem, 3.4vw, 2.6rem)/1 var(--f-display); color: var(--gold-hot); letter-spacing: .04em; }
.about-facts span { display: block; margin-top: 8px; font: 500 .6rem/1.3 var(--f-body); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.about-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 3vw, 34px); }
.affiche { margin: 0; position: relative; }
.affiche img { width: 100%; height: auto; border: 1px solid var(--line-gold); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .95), 0 0 70px -30px rgba(201, 169, 97, .35); }

/* ---------------- Tickets ---------------- */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); align-items: stretch; }
.ticket {
  position: relative; display: flex; flex-direction: column; background: var(--ivory); color: var(--ink);
  padding: 28px 26px 24px; border-top: 2px solid var(--gold);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, .9);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ticket:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 1); }
.ticket-name { margin: 0; font: 300 1.5rem/1.1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; }
.ticket-note { margin: 8px 0 0; font-size: .92rem; color: rgba(9, 9, 10, .62); }
.ticket-price { margin-top: auto; padding-top: 26px; font: 200 3.4rem/.95 var(--f-display); letter-spacing: .01em; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.ticket-price small { font: 500 .8rem/1.2 var(--f-body); color: rgba(9, 9, 10, .55); letter-spacing: .04em; }
.ticket-qty { margin: 8px 0 0; font: 500 .7rem/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.ticket-cut { height: 0; border-top: 1px dashed rgba(9, 9, 10, .2); margin: 20px -26px; }
.ticket .btn { width: 100%; }
.ticket.is-highlight { background: var(--ink-2); color: #fff; border-top-color: var(--gold-hot); box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 1), 0 0 0 1px rgba(201, 169, 97, .35); }
.ticket.is-highlight .ticket-note { color: var(--muted); }
.ticket.is-highlight .ticket-price { color: var(--gold-hot); }
.ticket.is-highlight .ticket-price small { color: rgba(255, 255, 255, .55); }
.ticket.is-highlight .ticket-cut { border-color: rgba(255, 255, 255, .18); }
.ticket .flag { align-self: flex-start; margin: -6px 0 14px; font: 600 .62rem/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; padding: 6px 10px; background: var(--gold); color: #17130a; display: inline-flex; align-items: center; gap: 7px; }
.ticket .flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #17130a; animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .2; } }
.ticket.is-soldout .ticket-name, .ticket.is-soldout .ticket-price, .ticket.is-soldout .ticket-note { opacity: .4; }
.ticket.is-soldout .ticket-price { text-decoration: line-through; }
.stamp { position: absolute; top: 22px; right: 18px; transform: rotate(8deg); font: 300 1.2rem/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); border: 2px solid var(--gold-deep); padding: .2em .5em; }
.ticket.is-upcoming { background: rgba(244, 241, 234, .06); color: #fff; border-top-color: rgba(201, 169, 97, .4); }
.ticket.is-upcoming .ticket-note { color: var(--muted); }
.ticket.is-upcoming .ticket-price { font-size: 2.2rem; color: rgba(255, 255, 255, .5); }
.ticket.is-upcoming .ticket-cut { border-color: rgba(255, 255, 255, .18); }

.ticket-facts { list-style: none; padding: 0; margin: clamp(32px, 4vw, 48px) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ticket-facts li { display: flex; gap: 10px; align-items: flex-start; background: rgba(9, 9, 10, .82); padding: 16px 18px; font-size: .9rem; line-height: 1.45; }
.ticket-facts svg { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.ticket-facts strong { font-weight: 600; }
.ticket-help { margin: 22px 0 0; font-size: .88rem; color: var(--muted); max-width: 90ch; }
.ticket-help strong { color: #fff; }
.ticket-help a { color: var(--gold-hot); }

/* ---------------- Info ---------------- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-card { background: var(--ink); padding: 26px 24px; transition: background .25s; }
.info-card:hover { background: var(--ink-3); }
.info-card > svg { font-size: 1.7rem; color: var(--gold); margin-bottom: 16px; }
.info-card h3 { margin: 0 0 8px; font: 600 .78rem/1.4 var(--f-body); letter-spacing: .16em; text-transform: uppercase; }
.info-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.info-card-lg { grid-column: span 2; grid-row: span 2; position: relative; overflow: hidden; background: linear-gradient(150deg, rgba(232, 162, 75, .16) 0%, rgba(9, 9, 10, 1) 58%); }
.info-card-lg:hover { background: linear-gradient(150deg, rgba(232, 162, 75, .22) 0%, rgba(9, 9, 10, 1) 58%); }
.info-card-lg h3 { color: var(--gold); margin-bottom: 18px; }
.info-card-lg .big { font: 200 clamp(2.2rem, 4.6vw, 3.6rem)/1 var(--f-display); letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.info-card-lg p, .info-card-lg address { color: rgba(255, 255, 255, .82); }
.info-card-lg address { font-style: normal; font-size: 1.02rem; line-height: 1.6; margin: 20px 0 24px; color: #fff; }
.info-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.faq { margin-top: clamp(48px, 6vw, 84px); max-width: 880px; }
.faq-title { font: 200 clamp(1.7rem, 3.4vw, 2.6rem)/1.1 var(--f-display); letter-spacing: .1em; text-transform: uppercase; margin: 0 0 20px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; font-weight: 500; font-size: 1.02rem; position: relative; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 10px; top: 50%; width: 10px; height: 10px; margin-top: -7px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: rotate(45deg); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--gold-hot); }
.faq details p { margin: 0 0 22px; color: var(--muted); max-width: 70ch; }
.faq details a { color: var(--gold-hot); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink-2); padding-block: 62px calc(40px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.tagline { margin: 0 0 28px; font: 300 .72rem/1.6 var(--f-display); letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-bottom: 22px; font-size: .86rem; }
.footer-nav a, .footer-nav .linklike { text-decoration: none; color: var(--muted); font-size: .86rem; }
.footer-nav a:hover, .footer-nav .linklike:hover { color: var(--gold-hot); }
.copy { margin: 0; font-size: .76rem; color: rgba(255, 255, 255, .32); letter-spacing: .06em; }

/* ---------------- Sticky CTA ---------------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(9, 9, 10, .94); backdrop-filter: blur(14px); border: 1px solid var(--line-gold); padding: 10px 10px 10px 18px;
  transform: translateY(160%); transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta strong { display: block; font: 400 .9rem/1.3 var(--f-display); letter-spacing: .14em; text-transform: uppercase; }
.sticky-cta span { font-size: .76rem; color: var(--muted); }

/* ---------------- Drawer ---------------- */
.drawer { position: fixed; inset: 0; z-index: 100; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(4, 4, 5, .74); backdrop-filter: blur(4px); animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(560px, 100%); background: #fcfcfc; color: var(--ink); display: flex; flex-direction: column; animation: slide-in .45s var(--ease); box-shadow: -30px 0 80px rgba(0, 0, 0, .6); }
@keyframes slide-in { from { transform: translateX(100%); } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 20px; background: var(--ink); color: #fff; border-bottom: 1px solid var(--line-gold); }
.drawer-head .eyebrow { margin: 0 0 6px; font-size: .62rem; }
.drawer-head h2 { margin: 0; font: 300 1.25rem/1.2 var(--f-display); letter-spacing: .12em; text-transform: uppercase; }
.drawer-close { background: rgba(255, 255, 255, .08); border: 0; width: 42px; height: 42px; display: grid; place-items: center; font-size: 1.2rem; cursor: pointer; transition: background .2s; }
.drawer-close:hover { background: var(--gold); color: #17130a; }
.drawer-body { position: relative; flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; background: #fcfcfc; }
.st-store { position: relative; min-height: 100%; }
.st-store iframe { background: #fcfcfc; }
.drawer-loading { position: absolute; inset: 0; z-index: 2; background: #fcfcfc; display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center; font-weight: 500; color: rgba(9, 9, 10, .6); }
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(201, 169, 97, .25); border-top-color: var(--gold-deep); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.drawer-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 20px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(0, 0, 0, .08); font-size: .82rem; color: rgba(9, 9, 10, .62); }
.drawer-foot span { display: flex; align-items: center; gap: 6px; }
.drawer-foot a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
body.is-locked { overflow: hidden; }

/* ---------------- Artiest-modal ---------------- */
.artist-modal { position: fixed; inset: 0; z-index: 105; display: grid; place-items: center; padding: 16px; }
.am-backdrop { position: absolute; inset: 0; background: rgba(4, 4, 5, .86); backdrop-filter: blur(6px); animation: fade .25s; }
.am-panel { position: relative; width: min(960px, 100%); max-height: calc(100svh - 32px); overflow: auto; overscroll-behavior: contain; background: var(--ink-2);
  border: 1px solid var(--line-gold); box-shadow: 0 40px 120px rgba(0, 0, 0, .8); animation: pop .4s var(--ease); display: flex; flex-direction: column; }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.98); } }
.am-close { position: sticky; top: 12px; margin: 12px 12px -54px auto; z-index: 3; width: 42px; height: 42px; border: 1px solid var(--line); background: rgba(9, 9, 10, .78); backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 1.2rem; cursor: pointer; flex: none; transition: background .2s, color .2s; }
.am-close:hover { background: var(--gold); color: #17130a; }
.am-hero { position: relative; aspect-ratio: 21 / 9; background: var(--ink-3); flex: none; overflow: hidden; }
.am-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(.85); }
.am-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, var(--ink-2) 100%); }
.am-body { padding: 0 clamp(20px, 4vw, 44px) 26px; margin-top: -30px; position: relative; z-index: 1; }
.am-body h2 { margin: 0; font: 200 clamp(1.8rem, 4.6vw, 3.2rem)/1.1 var(--f-display); letter-spacing: .1em; text-transform: uppercase; }
.am-bio { white-space: pre-line; margin: 20px 0 0; font-size: 1rem; line-height: 1.75; color: rgba(255, 255, 255, .8); max-width: 66ch; }
.am-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.am-links:empty { display: none; }
.am-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.am-media:empty { display: none; }
.am-media .media-spotify { grid-column: 1 / -1; }
.media { position: relative; overflow: hidden; background: var(--ink-3); border: 1px solid var(--line); }
.media iframe { display: block; width: 100%; border: 0; }
.media-yt { aspect-ratio: 16 / 9; }
.media-yt iframe { height: 100%; }
.media-load { position: absolute; inset: 0; width: 100%; border: 0; padding: 16px; cursor: pointer; color: #fff; text-align: left;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; background: linear-gradient(160deg, rgba(60, 46, 20, .95), rgba(9, 9, 10, .92)); }
.media-load .ml-icon { position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: rgba(9, 9, 10, .85); border: 1px solid var(--line-gold); font-size: 1.5rem; transition: transform .25s var(--ease), background .2s, color .2s; }
.media-load:hover .ml-icon { transform: translate(-50%, -50%) scale(1.1); background: var(--gold); color: #17130a; }
.media-load strong { font-size: .92rem; line-height: 1.35; position: relative; font-weight: 600; }
.media-load small { color: rgba(255, 255, 255, .7); position: relative; }
.media-spotify { min-height: 152px; }
.media-spotify .media-load { background: linear-gradient(120deg, #0f3d22, #1db954 150%); flex-direction: row; align-items: center; gap: 14px; justify-content: flex-start; }
.media-spotify .media-load .ml-icon { position: static; transform: none; background: #1ed760; color: #09090a; border-color: #1ed760; flex: none; }
.media-spotify .media-load:hover .ml-icon { transform: scale(1.08); }
.media-thumb { background: #000; }
.media-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .3s; opacity: .85; }
.media-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,10,0) 35%, rgba(9,9,10,.9) 100%); }
.media-thumb:hover img { transform: scale(1.05); opacity: 1; }
.media-thumb .ml-icon { z-index: 1; }
.media-thumb strong, .media-thumb small { z-index: 1; text-shadow: 0 1px 8px rgba(0, 0, 0, .7); }
.am-nav { display: flex; justify-content: space-between; gap: 10px; padding: 14px clamp(12px, 3vw, 32px) 18px; border-top: 1px solid var(--line); margin-top: 8px; }
.am-nav button { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0; cursor: pointer; font: 400 .78rem/1 var(--f-display); letter-spacing: .14em; color: var(--muted); padding: 10px 8px; text-transform: uppercase; transition: color .2s; }
.am-nav button:hover { color: #fff; }
.am-nav svg { color: var(--gold); }

/* ---------------- Consent ---------------- */
.consent {
  position: fixed; z-index: 110; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); width: min(460px, calc(100% - 32px));
  background: var(--ink-3); color: #fff; border: 1px solid var(--line); border-top: 2px solid var(--gold); padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7); animation: fade-up .5s var(--ease);
}
.consent h2 { margin: 0 0 8px; font: 300 1.15rem/1.2 var(--f-display); letter-spacing: .16em; text-transform: uppercase; }
.consent p { margin: 0 0 16px; font-size: .86rem; color: var(--muted); }
.consent a { color: var(--gold-hot); }
.consent-options { display: none; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; font-size: .86rem; }
.consent-options label { display: flex; gap: 6px; align-items: center; }
.consent-options input { accent-color: var(--gold); width: 15px; height: 15px; }
.consent.is-expanded .consent-options { display: flex; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.consent-save { display: none; }
.consent.is-expanded .consent-save { display: inline-flex; }
.consent.is-expanded .consent-more { display: none; }

.debug-panel { position: fixed; right: 12px; top: 84px; z-index: 300; width: min(420px, calc(100% - 24px)); max-height: 40vh; overflow: auto; background: rgba(0, 0, 0, .92); color: #7CFFB2; font: 12px/1.45 ui-monospace, Consolas, monospace; padding: 10px 12px; border: 1px solid #7CFFB2; }
.debug-panel strong { color: #fff; display: block; margin-bottom: 6px; }

/* ---------------- Taalkeuze ---------------- */
.lang-switch { display: flex; gap: 2px; padding: 2px; margin-right: 6px; border: 1px solid var(--line); background: rgba(9, 9, 10, .4); }
.lang-switch button { background: none; border: 0; cursor: pointer; font: 600 .66rem/1 var(--f-body); letter-spacing: .12em; padding: 8px 9px; color: rgba(255, 255, 255, .7); transition: background .2s, color .2s; }
.lang-switch button:hover { color: #fff; }
.lang-switch button[aria-pressed="true"] { background: var(--gold); color: #17130a; }
.lang-switch-lg { align-self: flex-start; margin: 30px 0 0; }
.lang-switch-lg button { font-size: .86rem; padding: 12px 18px; }
.lang-switch-foot { width: max-content; max-width: 100%; margin: 0 auto 22px; border: 0; background: none; flex-wrap: wrap; justify-content: center; }
.lang-switch-foot button { font-weight: 400; font-size: .8rem; letter-spacing: .06em; padding: 8px 12px; color: var(--muted); }
.lang-switch-foot button[aria-pressed="true"] { background: none; color: var(--gold-hot); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .affiche { max-width: 460px; margin-inline: auto; order: -1; }
}
@media (max-width: 900px) {
  :root { --header-h: 62px; }
  .nav, .header-actions .icon-link { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .brand { opacity: 1; transform: none; }
  .tickets { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .ticket.is-highlight { order: -1; }
  .lineup { grid-template-columns: repeat(2, 1fr); }
  .artist, .artist.tier-2 { grid-column: span 1; aspect-ratio: 4 / 4.4; }
  .artist.tier-1 { grid-column: span 2; aspect-ratio: 16 / 10; }
  .artist.tier-3:last-child { grid-column: span 2; aspect-ratio: 16 / 9; }
  .sticky-cta { display: flex; }
  .consent { bottom: calc(92px + env(safe-area-inset-bottom)); }
  .wm-hero .wm-frame { inset: 0 4% 0 4%; }
  .listen { grid-template-columns: 1fr; }
  .header-actions .lang-switch { display: none; }
}
@media (max-width: 700px) {
  .am-media { grid-template-columns: 1fr; }
  .am-hero { aspect-ratio: 16 / 10; }
  .artist-modal { padding: 0; }
  .am-panel { max-height: 100svh; height: 100svh; border: 0; }
  .am-nav span { max-width: 32vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
@media (max-width: 560px) {
  .hero-meta { gap: .3em .7em; letter-spacing: .18em; }
  .hero-cta .btn { flex: 1 1 100%; }
  .countdown { width: 100%; gap: 4px; }
  .countdown div { flex: 1; min-width: 0; padding-inline: 4px; }
  .countdown b { font-size: 1.7rem; }
  .artist, .artist.tier-2, .artist.tier-3:last-child { grid-column: span 2; aspect-ratio: 16 / 11; }
  .ticket-facts, .about-facts { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card-lg { grid-column: auto; grid-row: auto; }
  .consent-actions .btn { flex: 1; }
  .wm-hero { padding-inline: 0; }
  .wm-hero .wm-frame { inset: 0 0 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .beams, .grain { display: none; }
  .reveal { opacity: 1; transform: none; }
}
