/* =========================================================
   TUSSEN TOSTI & TECHNO
   Kleuren uit het merkpakket: zwart / oranje #E77E09 / crème #E3C7A0
   ========================================================= */

:root {
  --black:       #000000;
  --ink:         #070606;
  --panel:       #100e0d;
  --panel-2:     #17140f;
  --line:        rgba(227, 199, 160, 0.16);
  --line-strong: rgba(227, 199, 160, 0.36);

  --cream:       #E3C7A0;
  --cream-soft:  #cdb79a;
  --cream-dim:   #948877;
  --orange:      #E77E09;
  --orange-hot:  #FF9A1F;
  --orange-deep: #B45F06;

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body:    "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --nav-h:  64px;
  --maxw:   1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

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

/* korrel over alles heen — geeft de nachtfoto's textuur */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   TYPOGRAFIE
   ========================================================= */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

.lede  { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--cream-soft); line-height: 1.55; }
.muted { color: var(--cream-dim); }
.accent { color: var(--orange); }

.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;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1600px; }

.section { position: relative; padding-block: clamp(66px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--panel { background: var(--ink); }

.section__head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 58px); }
.section__head h2 { font-size: clamp(2.3rem, 7vw, 4.4rem); margin-top: 12px; }
.section__head p  { margin-top: 18px; }

/* =========================================================
   KNOPPEN
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), background-color 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: #180b02; }
.btn--primary:hover { background: var(--orange-hot); box-shadow: 0 12px 34px -14px rgba(231, 126, 9, 0.95); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--cream); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn--sm { min-height: 40px; padding: 9px 18px; font-size: 0.74rem; }

/* =========================================================
   NAVIGATIE
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__brand svg { width: 25px; height: 25px; flex: none; color: var(--orange); }

.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); }

.nav__links a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: color 0.2s;
}

.nav__links a:not(.btn):hover,
.nav__links a[aria-current="page"] { color: var(--orange); }

.nav__toggle { display: none; }

@media (max-width: 940px) {
  .nav__toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
  }

  .nav__toggle span {
    width: 18px; height: 2px; background: var(--cream);
    box-shadow: 0 -6px 0 var(--cream), 0 6px 0 var(--cream);
    transition: background-color 0.2s, box-shadow 0.2s;
  }

  .nav__toggle[aria-expanded="true"] span {
    background: var(--orange);
    box-shadow: 0 -6px 0 var(--orange), 0 6px 0 var(--orange);
  }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px var(--gutter) 26px;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0.25s;
  }

  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: none; padding-top: 18px; }
  .nav__links a:not(.btn) { display: block; padding: 17px 0; font-size: 0.95rem; }
  .nav__links .btn { width: 100%; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(34px, 5vw, 60px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* zwaar verduisteren zodat de typografie leesbaar blijft */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.96) 4%, rgba(0,0,0,0.72) 34%, rgba(0,0,0,0.34) 62%, rgba(0,0,0,0.6) 100%),
    linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.15) 60%);
}

.hero__inner { position: relative; z-index: 1; width: 100%; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  margin-bottom: 22px;
  background: var(--orange);
  color: #180b02;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: #180b02;
  animation: pulse 1.9s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero h1 { margin: 0; }

/* staand logo, zoals op het affiche: verhouding ongeveer 0,91 : 1 */
.hero__logo {
  width: clamp(215px, 29vw, 400px);
  height: auto;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.85));
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  margin-top: clamp(22px, 3vw, 34px);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.1vw, 2rem);
  text-transform: uppercase;
  line-height: 1.1;
}

.hero__facts .sep { color: var(--orange); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 34px);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.credit {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.credit a { color: var(--cream-soft); text-decoration: underline; text-underline-offset: 3px; }
.credit a:hover { color: var(--orange); }

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero__bg img { object-position: 58% 40%; }

  /* op mobiel zijn beide knoppen even makkelijk te raken */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- aftelklok ---------- */
.countdown { display: flex; gap: 8px; }

.countdown__unit {
  min-width: 62px;
  padding: 9px 8px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}

.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown__lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.countdown__done {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--orange);
  text-transform: uppercase;
}

/* =========================================================
   LOPENDE BAND
   ========================================================= */
.ticker {
  overflow: hidden;
  background: var(--orange);
  color: #180b02;
  padding-block: 12px;
  user-select: none;
}

.ticker__track {
  display: flex;
  width: max-content;
  /* de duur wordt door main.js op de breedte afgestemd, zodat de snelheid
     gelijk blijft ongeacht het aantal klonen */
  animation: slide 38s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__group { display: flex; flex: none; }

/* donker sterretje: een oranje scheidingsteken valt weg tegen de oranje balk */
.ticker__sep { color: rgba(0, 0, 0, 0.42); }

.ticker span {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-inline: 20px;
  white-space: nowrap;
}

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

/* =========================================================
   LINE-UP — opgezet als flyer, niet als teampagina
   ========================================================= */
.lineup { position: relative; background: var(--ink); overflow: hidden; }

.lineup__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

@media (max-width: 900px) { .lineup__grid { grid-template-columns: 1fr; } }

.lineup__names { border-top: 1px solid var(--line); }

.lineup__row {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 2vw, 22px);
  padding-block: clamp(14px, 2.4vw, 26px);
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), border-color 0.3s;
}

.lineup__row:hover { padding-left: 14px; border-bottom-color: var(--orange); }

.lineup__num {
  flex: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  transform: translateY(-0.35em);
}

.lineup__name {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8.2vw, 5.4rem);
  line-height: 0.86;
  text-transform: uppercase;
  transition: color 0.25s;
}

.lineup__row:hover .lineup__name { color: var(--orange); }

.lineup__poster {
  position: relative;
  transform: rotate(-2.2deg);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.95);
  transition: transform 0.5s var(--ease);
}

.lineup__poster:hover { transform: rotate(0deg) scale(1.02); }

.lineup__poster img { width: 100%; }

.lineup__poster figcaption {
  padding: 12px 14px;
  background: var(--panel);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

@media (max-width: 900px) {
  .lineup__poster { max-width: 330px; margin-inline: auto; transform: none; }
}

/* de zijkolom van de line-up: eerst het ticketkaartje, dan het affiche */
.lineup__zij { display: grid; gap: clamp(22px, 3vw, 30px); }

/* ---------- ticketkaartje ----------
   Crème vlak op de zwarte sectie, zodat het als een afgescheurd kaartje leest.
   De lichte vlakken van de QR-code hebben dezelfde crème, waardoor hij
   op het kaartje gedrukt lijkt in plaats van erop geplakt. */
.ticketkaart {
  position: relative;
  padding: clamp(26px, 3vw, 34px) clamp(22px, 2.6vw, 30px) clamp(22px, 2.6vw, 28px);
  background: var(--cream);
  color: #100E0D;
  text-align: center;
}

/* afgescheurde bovenrand */
.ticketkaart::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto 0;
  height: 9px;
  background: radial-gradient(circle at 7px 0, var(--ink) 0 6px, transparent 6.5px);
  background-size: 14px 9px;
}

.ticketkaart__boven {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7a6a52;
}

.ticketkaart__kop {
  margin-top: 6px;
  font-size: clamp(2.4rem, 5.6vw, 3.2rem);
  line-height: 0.9;
  color: #100E0D;
}

.ticketkaart__sub {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.ticketkaart__qr {
  display: block;
  margin: clamp(18px, 2.4vw, 24px) auto;
  transition: transform 0.3s var(--ease);
}

.ticketkaart__qr:hover { transform: scale(1.03); }

/* de maat hoort op de afbeelding zelf */
.ticketkaart__qr img { width: min(240px, 100%); height: auto; }

.ticketkaart__tekst {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4a4038;
  margin-bottom: 18px;
}

.ticketkaart__knop {
  width: 100%;
  background: #100E0D;
  color: var(--cream);
}

.ticketkaart__knop:hover { background: #2a2520; box-shadow: none; }

.ticketkaart__voet {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(16, 14, 13, 0.28);
  font-size: 0.83rem;
  color: #5c5145;
}

.ticketkaart__voet a { color: #100E0D; text-decoration: underline; text-underline-offset: 3px; }
.ticketkaart__voet a:hover { color: var(--orange-deep); }

@media (max-width: 900px) {
  .lineup__zij { max-width: 400px; margin-inline: auto; }
}

/* losse tekstlink binnen lopende tekst */
.tekstlink { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.tekstlink:hover { color: var(--orange-hot); }

/* =========================================================
   VERHAAL
   ========================================================= */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 880px) { .story__grid { grid-template-columns: 1fr; } }

.story__text p + p { margin-top: 16px; }

.story__quote {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 3px solid var(--orange);
  background: var(--panel);
}

.story__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.story__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.story__pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.story__pics img { width: 100%; height: 100%; object-fit: cover; }

.story__pics figure { overflow: hidden; }
.story__pics figure:first-child { aspect-ratio: 3 / 4; }
.story__pics figure:last-child  { aspect-ratio: 3 / 4; margin-top: clamp(24px, 5vw, 56px); }

.story__pics img { transition: transform 0.8s var(--ease); }
.story__pics figure:hover img { transform: scale(1.05); }

/* ---------- cijfers ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 6vw, 76px);
  background: var(--line);
  border: 1px solid var(--line);
}

.facts div { padding: 26px 24px; background: var(--ink); }

.facts dt {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  color: var(--orange);
  line-height: 1;
}

.facts dd { margin-top: 8px; font-size: 0.92rem; color: var(--cream-dim); }

/* =========================================================
   SFEERGALERIJ
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery figure { position: relative; overflow: hidden; background: var(--panel); }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: saturate(0.92);
}

.gallery figure:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* Ritme over zes kolommen: 4+2 / 2+2+2 / 3+3 / 2+4.
   Zo krijgt elke rij een ander formaat en blijft het raster levendig. */
.gallery figure:nth-child(1) { grid-column: span 4; aspect-ratio: 16 / 9; }
.gallery figure:nth-child(2) { grid-column: span 2; aspect-ratio: 4 / 5; }
.gallery figure:nth-child(3) { grid-column: span 2; aspect-ratio: 1; }
.gallery figure:nth-child(4) { grid-column: span 2; aspect-ratio: 1; }
.gallery figure:nth-child(5) { grid-column: span 2; aspect-ratio: 1; }
.gallery figure:nth-child(6) { grid-column: span 3; aspect-ratio: 3 / 2; }
.gallery figure:nth-child(7) { grid-column: span 3; aspect-ratio: 3 / 2; }
.gallery figure:nth-child(8) { grid-column: span 2; aspect-ratio: 4 / 5; }
.gallery figure:nth-child(9) { grid-column: span 4; aspect-ratio: 16 / 9; }

@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  /* breed beginnen, breed eindigen, en daartussen nette paren */
  .gallery figure:nth-child(n) { grid-column: span 1; aspect-ratio: 1; }
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(9) { grid-column: span 2; aspect-ratio: 16 / 10; }
}

/* =========================================================
   WACHTLIJST
   ========================================================= */
.waitlist { position: relative; overflow: hidden; }

.waitlist__bg { position: absolute; inset: 0; z-index: 0; }

.waitlist__bg img { width: 100%; height: 100%; object-fit: cover; }

.waitlist__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.94) 30%, rgba(0,0,0,0.72));
}

.waitlist__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

@media (max-width: 900px) { .waitlist__grid { grid-template-columns: 1fr; } }

.waitlist h2 { font-size: clamp(2.4rem, 7.6vw, 4.6rem); }

.perks { margin-top: 26px; }

.perks li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--cream-soft); }

.perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 13px; height: 13px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
}

/* ---------- formulier ---------- */
.form {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  background: var(--panel);
  color: var(--cream);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.field input::placeholder { color: #6b6357; }
.field input:focus { outline: none; border-color: var(--orange); background: var(--panel-2); }
.field input[aria-invalid="true"] { border-color: #c2472c; }

.field--check { display: flex; align-items: flex-start; gap: 11px; }

.field--check input {
  margin-top: 4px;
  width: 18px; height: 18px;
  flex: none;
  accent-color: var(--orange);
}

.field--check label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* honeypot: onzichtbaar voor mensen, zichtbaar voor bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form .btn { width: 100%; }

.form__msg { margin-top: 16px; padding: 13px 16px; font-size: 0.93rem; display: none; }
.form__msg.is-ok   { display: block; background: rgba(231, 126, 9, 0.14); border: 1px solid var(--orange); color: var(--cream); }
.form__msg.is-fail { display: block; background: rgba(190, 60, 40, 0.16); border: 1px solid #b8452c; color: #f2cbc1; }

/* =========================================================
   PRAKTISCHE PAGINA
   ========================================================= */
.page-head {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(50px, 7vw, 90px));
  padding-bottom: clamp(38px, 5vw, 62px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-head__bg { position: absolute; inset: 0; z-index: 0; }
.page-head__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.page-head__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
}

.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.6rem, 9vw, 5.4rem); margin-top: 12px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.info-card { padding: 26px 24px; background: var(--ink); }

.info-card h3 { font-size: 1.24rem; margin-bottom: 10px; color: var(--orange); }
.info-card p  { font-size: 0.97rem; color: var(--cream-soft); }
.info-card a  { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.info-card a:hover { color: var(--orange); }

.map { margin-top: 26px; border: 1px solid var(--line); overflow: hidden; line-height: 0; }
.map iframe {
  width: 100%;
  height: clamp(280px, 45vw, 420px);
  border: 0;
  /* de kaart iets dempen zodat hij niet uit de donkere pagina knalt */
  filter: grayscale(0.35) brightness(0.86) contrast(1.05);
}

/* ---------- veelgestelde vragen ---------- */
.faq { max-width: 840px; }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.38rem);
  text-transform: uppercase;
  transition: color 0.2s;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange); }

.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary { color: var(--orange); }
.faq details[open] summary::after { transform: rotate(45deg); }

.faq__body { padding: 0 2px 24px; color: var(--cream-dim); max-width: 68ch; }
.faq__body p + p { margin-top: 12px; }
.faq__body a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- huisregels ---------- */
.rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rules li { padding: 22px 22px; background: var(--ink); font-size: 0.95rem; color: var(--cream-soft); }

.rules strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
}

/* =========================================================
   VOETTEKST
   ========================================================= */
.footer { padding-block: clamp(48px, 6vw, 72px) 32px; border-top: 1px solid var(--line); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

.footer__brand img { width: 230px; max-width: 100%; margin-bottom: 16px; }
.footer__brand p { color: var(--cream-dim); font-size: 0.94rem; max-width: 34ch; }

.footer h2 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.footer li { margin-bottom: 9px; font-size: 0.94rem; color: var(--cream-dim); }
.footer li a { transition: color 0.2s; }
.footer li a:hover { color: var(--orange); }

.footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b6357;
}

/* =========================================================
   SCROLL-ONTHULLING
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   OVERIG
   ========================================================= */
.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--orange);
  color: #180b02;
  font-weight: 700;
  transition: top 0.2s;
}

.skip:focus { top: 12px; }

/* nette plaatshouder zolang een foto nog ontbreekt */
.ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  padding: 16px;
  background-color: var(--panel-2);
  background-image: repeating-linear-gradient(45deg, rgba(240,112,32,0.07) 0 12px, transparent 12px 24px);
}

.ph__mark { font-family: var(--font-display); font-size: 1.8rem; color: rgba(231, 126, 9, 0.5); }
.ph__txt  { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); word-break: break-all; }

