/* ============================================================
   Tom Cools — one-pager
   Design notes:
   - Editorial layout: big type, numbered sections, ample whitespace
   - Palette: near-black bg, off-white fg, yellow accent + cream for contrast
   - Fonts: Inter Tight (display) + Inter (body) + Fraunces italic (accents)
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-alt: #111114;
  --bg-cream: #f3eee4;
  --fg: #f5f3ee;
  --fg-dim: #9a988f;
  --fg-mute: #5e5d56;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ece3d2;
  --accent-2: #c9b894;
  --max: 1280px;
  --radius: 16px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  /* Waar een sectie-LABEL landt bij anker-navigatie (afstand vanaf de
     bovenkant, nét onder de fixed nav). En de verticale sectie-padding als
     variabele zodat de scroll-offset hieronder per breakpoint blijft kloppen. */
  --nav-h: 92px;
  --section-pad-y: clamp(100px, 14vw, 180px);

  --font-sans: "Inter", "Helvetica Neue", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-serif: "Fraunces", "Times New Roman", Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 800;
}

::selection { background: var(--accent); color: #000; }

/* Zichtbare focus-indicator voor toetsenbordnavigatie (WCAG 2.4.7). Alleen
   bij :focus-visible zodat muisklikken geen ring tonen. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Op de lichte (cream) Boeken-sectie een donkere ring voor genoeg contrast. */
.section--book :focus-visible,
.book-field input:focus-visible,
.book-field textarea:focus-visible {
  outline-color: #0d0d0d;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  padding-top: max(20px, env(safe-area-inset-top));
  z-index: 50;
  /* GEEN mix-blend-mode: difference — dat dwong iOS Safari de nav per
     scroll-frame te hercompositen tegen het herschilderende hero-canvas,
     wat nav-flikkering én korte zwarte flitsen gaf. Bovenaan staat de nav
     toch alleen over de donkere hero (de glas-balk verschijnt al na 60px
     scroll), dus witte tekst met een zachte schaduw is genoeg en stabiel. */
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}

/* Glas-balk zodra je scrollt: gematteerde donkere achtergrond, fijne
   onderlijn en compactere padding — voelt als een echte, ontworpen balk
   i.p.v. zwevende tekst. */
.nav.is-stuck {
  color: var(--fg);
  text-shadow: none;
  background: rgba(11, 11, 12, 0.7);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 13px;
  padding-bottom: 13px;
}
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.nav__brand-tag {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: clamp(14px, 2vw, 28px); font-size: 14px; align-items: center; }
.nav__links a { opacity: 0.85; transition: opacity 0.25s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 999px;
  opacity: 1 !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

/* Geanimeerde onderlijn op de gewone links + markering van de actieve sectie. */
.nav__links a:not(.nav__cta) {
  position: relative;
  padding: 4px 1px;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -1px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { opacity: 1; }

/* CTA wordt een opvallende gevulde pill zodra de glas-balk actief is. */
.nav.is-stuck .nav__cta {
  background: var(--accent);
  color: #0b0b0c;
  border-color: var(--accent);
}
.nav.is-stuck .nav__cta:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
}

/* Hamburger button — minimaal, twee lijntjes die naar een X morphen.
   Verborgen op desktop, getoond ≤720px. */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  background: none;
  border: 0;
  padding: 0;
  position: relative;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, 0);
  transition: transform 0.4s var(--ease), top 0.25s var(--ease) 0.1s;
}
.nav__burger span:nth-child(1) { top: calc(50% - 5px); }
.nav__burger span:nth-child(2) { top: calc(50% + 5px); }
body.menu-open .nav__burger span {
  transition: top 0.2s var(--ease), transform 0.35s var(--ease) 0.15s;
}
body.menu-open .nav__burger span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menu-open .nav__burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .nav__brand-tag { display: none; }
}

/* ============================================================
   MOBILE MENU — full-screen overlay
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40; /* onder de nav (50) zodat de close-knop altijd zichtbaar blijft */
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(96px, 15vh, 130px) clamp(24px, 6vw, 40px)
           max(40px, env(safe-area-inset-bottom));
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}
body.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.45s var(--ease), visibility 0s linear;
}
/* Subtiele kleur-bloei: zachte vlek vanuit accent in de hoek voor
   visuele diepte i.p.v. een platte zwarte muur. */
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(236,227,210,0.08), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, rgba(236,227,210,0.05), transparent 70%);
  pointer-events: none;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.mobile-menu__nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 12vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    color 0.25s var(--ease);
}
.mobile-menu__nav a:first-child { border-top: 1px solid var(--line); }
.mobile-menu__nav a:active { color: var(--accent); }

body.menu-open .mobile-menu__nav a {
  opacity: 1;
  transform: translateY(0);
}
body.menu-open .mobile-menu__nav a:nth-child(1) { transition-delay: 0.10s; }
body.menu-open .mobile-menu__nav a:nth-child(2) { transition-delay: 0.18s; }
body.menu-open .mobile-menu__nav a:nth-child(3) { transition-delay: 0.26s; }

.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
body.menu-open .mobile-menu__foot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 26px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.mobile-menu__cta:active {
  transform: scale(0.98);
  background: var(--accent-2);
}

/* Body scroll-lock wanneer menu of modal open */
body.menu-open,
body.modal-open { overflow: hidden; }

/* ============================================================
   HERO (scroll-scrub video)
   ============================================================ */
.hero {
  position: relative;
  height: 350vh;
  background: var(--bg);
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
/* Canvas vervangt de oude <video>: JS tekent het juiste frame per
   scroll-positie uit een vooraf geladen image-array. Geen object-fit
   nodig — JS doet cover-cropping zelf via drawImage source-rect. */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
  /* Eigen compositor-layer + isoleren van de pagina-layout zodat de
     per-frame canvas-paint tijdens het scrubben niet de rest van de
     pagina laat herberekenen. */
  contain: layout paint;
  will-change: transform;
}
/* Hi-res start-frame als <img>-overlay over het canvas. Native browser-
   rendering ≠ canvas-interpolatie, dus dit is altijd de scherpst mogelijke
   weergave voor het allereerste frame. Fadet snel weg zodra scroll begint. */
.hero__start {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  will-change: opacity;
  opacity: 1;
  /* --t wordt al door de JS-lerp gedempt; houd hier maar een minimale
     transition om harde snaps (resize) te verzachten, anders ijlt de
     overlay-fade ~150ms achter de canvas-scrub aan. */
  transition: opacity 0.08s linear;
}
.hero[data-progress] .hero__start {
  /* Volledig weg rond 8% scroll-progress — geeft het canvas een vloeiend
     overdracht-moment in plaats van een harde cut. */
  opacity: calc(1 - var(--t, 0) * 14);
}
/* Fotoscherpe Tom-cutout (uit show.jpg, de originele foto van de shoot),
   in frame-coördinaten (1916×1080) en met dezelfde center-crop-cover als
   canvas en start-overlay → op elk schermformaat pixelvast uitgelijnd.
   Ligt permanent bovenop start-overlay én canvas: Tom is altijd foto-
   kwaliteit, ook bij de allereerste paint. De cutout bevat geen ski's of
   attributen, dus de weg-animatie eronder blijft volledig zichtbaar. */
.hero__cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2; /* zelfde laag als .hero__start; wint door DOM-volgorde */
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px clamp(48px, 7vh, 96px);
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.35) 100%);
}
.hero__title {
  font-size: clamp(40px, 7.5vw, 110px);
  line-height: 0.95;
  font-weight: 900;
  display: flex;
  flex-direction: row;
  gap: 0.22ch;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero__title span:nth-child(2) {
  color: var(--accent);
}
.hero__tagline {
  margin-top: 14px;
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero__scrollcue {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  right: clamp(24px, 5vw, 64px);
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  pointer-events: auto;
  display: grid;
  place-items: start center;
  padding-top: 6px;
}
.hero__scrollcue span {
  display: block;
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}
/* Reverse fade: title hidden at start of scroll, fades in once Tom is
   revealed in the dark (around 55% progress), fully visible by ~80%. */
.hero__title,
.hero__tagline {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}
.hero[data-progress] .hero__title,
.hero[data-progress] .hero__tagline {
  opacity: clamp(0, calc((var(--t, 0) - 0.55) * 4), 1);
  transform: translateY(calc((1 - clamp(0, calc((var(--t, 0) - 0.55) * 4), 1)) * 20px));
}

/* Scroll cue: only useful before scrolling, fade it out as user starts */
.hero[data-progress] .hero__scrollcue {
  opacity: clamp(0, calc(1 - var(--t, 0) * 6), 1);
}

/* ============================================================
   MODAL — bevestiging boekingsaanvraag
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 9, 0.66);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.modal__dialog {
  position: relative;
  width: min(420px, 100%);
  background: var(--bg-cream);
  color: #1c1b16;
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(14px) scale(0.96);
  transition: transform 0.28s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; }
.modal__check {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1f7a4d;
  color: #fff;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.modal__text {
  color: #514f47;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 26px;
}
.modal__btn { min-width: 150px; justify-content: center; }

/* ============================================================
   PRIVACY-/COOKIEMELDING
   ============================================================ */
.cookiebar {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 28px);
  transform: translate(-50%, 160%);
  z-index: 110;
  width: min(700px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(17, 17, 20, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.cookiebar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookiebar__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.cookiebar__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookiebar__btn {
  flex: 0 0 auto;
  padding: 10px 22px;
  font-size: 14px;
  justify-content: center;
  background: var(--accent);
  color: #0b0b0c;
  border-color: var(--accent);
}
.cookiebar__btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
@media (max-width: 560px) {
  .cookiebar { flex-direction: column; align-items: stretch; text-align: left; gap: 12px; }
  .cookiebar__btn { width: 100%; }
}

/* ============================================================
   TERUG-NAAR-BOVEN
   ============================================================ */
.to-top {
  position: fixed;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(18, 18, 18, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  /* verborgen tot body.show-totop (zie script.js) */
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
}
body.show-totop .to-top {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.to-top:hover {
  color: #fff;
  border-color: var(--accent-2);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  user-select: none;
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span:nth-child(even) {
  color: var(--accent);
  font-size: 0.6em;
  align-self: center;
}
.marquee__track span:nth-child(4n + 1) {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}
/* Onzichtbaar voor het oog, wél leesbaar voor Google/screenreaders. Gebruikt
   voor de sectiekop "Over Tom Cools" zodat de pagina een nette H2-structuur
   heeft zonder de visuele opmaak te veranderen. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
/* Anker-navigatie (#over/#show/#speellijst/#boeken): laat het sectie-LABEL
   netjes op ~--nav-h onder de bovenkant landen i.p.v. ~180px lager door de
   grote top-padding. We trekken die top-padding van de scroll-stop af met een
   negatieve scroll-margin; bij gewoon scrollen blijft de luchtige spacing. */
.section[id] {
  scroll-margin-top: calc(var(--nav-h) - var(--section-pad-y));
}

.section__label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 56px;
  font-weight: 600;
}
.section__label > span:first-child {
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 4px 10px;
}
.section__label--light { color: rgba(0,0,0,0.4); }
.section__label--light > span:first-child {
  color: #000;
  border-color: rgba(0,0,0,0.5);
}

.section__title {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 64px;
  max-width: 18ch;
}
.section__title em {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-dim);
}

/* Scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   OVER
   ============================================================ */
.section--about { background: var(--bg); }

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
/* tekstblok verticaal gecentreerd t.o.v. de foto: laatste alinea geen
   ondermarge, anders trekt die het blok visueel omhoog */
.about__text .copy:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  margin: 0 0 36px;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.kicker em {
  color: var(--accent);
  font-style: italic;
}

.copy {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--fg-dim);
  margin: 0 0 48px;
  max-width: 56ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 28px 20px 0 0;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.stat span {
  color: var(--fg-mute);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
  display: block;
}

.about__media figure { margin: 0; }
.about__media img {
  width: 100%;
  /* height:auto verplicht: anders wint het height="..."-attribuut (tegen
     layout-shift) en rendert de foto op vaste hoogte. Geen aspect-ratio/
     object-fit: de foto behoudt overal zijn originele verhouding,
     onbijgesneden (expliciete wens). */
  height: auto;
  border-radius: var(--radius);
  filter: saturate(0.95);
}
.about__media figcaption {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 14px;
}

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

/* ============================================================
   PERS
   ============================================================ */
.section--press {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.press {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.press blockquote {
  margin: 0;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.press blockquote:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 63, 0.4);
}
.press p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.3;
  margin: 0 0 28px;
}
.press p::before { content: "“"; color: var(--accent); margin-right: 4px; }
.press p::after  { content: "”"; color: var(--accent); margin-left: 4px; }
.press footer {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-family: var(--font-display);
  font-weight: 500;
}

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

/* ============================================================
   SHOWS
   ============================================================ */
.section--shows {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.shows {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.shows li {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.35s var(--ease);
}
.shows li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
  border-radius: 0;
}
.shows li:hover { padding-left: 24px; padding-right: 24px; }
.shows li:hover::before { transform: scaleX(1); }
.shows li:hover * { color: #000 !important; }
.shows li > * { position: relative; z-index: 1; transition: color 0.35s var(--ease); }

.shows time {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.shows time strong {
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.shows time span {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--fg-mute);
  margin-top: 6px;
}
.shows__main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shows__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.015em;
}
.shows__venue {
  color: var(--fg-dim);
  font-size: 14px;
}
.shows__status {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}
.shows li:hover .shows__status {
  border-color: #000;
}
.shows__cta {
  font-size: 24px;
  font-family: var(--font-display);
  color: var(--fg);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

@media (max-width: 720px) {
  .shows li {
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
  }
  .shows__status { display: none; }
}

/* ============================================================
   VIDEO
   ============================================================ */
.section--video {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  display: block;
  transition: transform 0.4s var(--ease);
}
.video-card__img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.9);
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.video-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}
.video-card__play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 12px;
  padding-left: 2px;
  transition: transform 0.35s var(--ease);
}
.video-card:hover { transform: translateY(-6px); }
.video-card:hover .video-card__img { transform: scale(1.05); filter: saturate(1.1); }
.video-card:hover .video-card__play { transform: scale(1.1); }

@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card { aspect-ratio: 16 / 10; }
}

/* ============================================================
   BOEKEN
   ============================================================ */
.section--book {
  background: var(--bg-cream);
  color: #0d0d0d;
}
.section--book .section__label { color: rgba(0,0,0,0.4); }
.book__title {
  font-size: clamp(40px, 7.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin-bottom: 36px;
}
.book__title em {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: rgba(0,0,0,0.55);
}
.book__lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(0,0,0,0.6);
  max-width: 52ch;
  margin: 0 0 48px;
  line-height: 1.5;
}
.book__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: #0d0d0d; color: var(--bg-cream); }
.btn--primary:hover { background: #1f1f1f; transform: translateY(-2px); }
.btn--ghost-dark { border-color: rgba(0,0,0,0.25); color: #0d0d0d; }
.btn--ghost-dark:hover { background: #0d0d0d; color: var(--bg-cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 110px) 0 26px;
  color: var(--fg-dim);
  overflow: hidden;
}

/* Boven: pitch + CTA links, navigatie/contact/socials-kolommen rechts. */
.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  padding-bottom: clamp(44px, 6vw, 76px);
}
.footer__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 600;
  margin: 0 0 18px;
}
.footer__pitch {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0 0 28px;
  max-width: 15ch;
}
.footer__pitch em {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
}
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.footer__cta:hover {
  background: var(--accent);
  color: #0b0b0c;
  border-color: var(--accent);
  gap: 16px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 600;
  margin: 0 0 4px;
}
.footer__col a {
  font-size: 15px;
  color: var(--fg-dim);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__legal { color: var(--fg-dim); text-decoration: underline; text-underline-offset: 2px; }
.footer__legal:hover { color: var(--fg); }
.footer__bottom {
  margin-top: clamp(8px, 3vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-mute);
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.footer__credit img { height: 18px; width: auto; opacity: 0.6; transition: opacity 0.25s var(--ease); }
.footer__credit:hover { color: var(--fg); }
.footer__credit:hover img { opacity: 1; }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE — uitgebreide responsive verfijning
   Doel: het editorial-design behouden, maar op telefoon ademende
   ruimte geven (kortere hero-scrub, gestapelde stats, compactere
   shows-rij, full-width CTA-knoppen).
   ============================================================ */

/* Tablet & kleinere laptops */
@media (max-width: 960px) {
  :root { --section-pad-y: clamp(72px, 12vw, 140px); }
  .section__label { margin-bottom: 40px; }
  .section__title { margin-bottom: 48px; }
}

/* Telefoon */
@media (max-width: 720px) {
  /* Hero: 350vh is te lang op een telefoon — scrub in 250vh. */
  .hero { height: 250vh; }
  /* Titel naar boven i.p.v. midden/onder: portret-crop op telefoon
     plaatst Toms hoofd in het midden, dus titel boven zijn hoofd
     leest beter dan eroverheen. */
  .hero__overlay {
    justify-content: flex-start;
    padding: clamp(90px, 16vh, 130px) 20px 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 35%);
  }
  .hero__title { gap: 0.15ch; letter-spacing: -0.04em; }
  .hero__tagline {
    margin-top: 12px;
    font-size: 14px;
    max-width: 90%;
    padding: 0 8px;
  }
  /* Scroll-cue gecentreerd onderaan i.p.v. rechts — geeft minder
     visuele competitie met de titel op smal scherm. Bottom-offset
     ruim genoeg dat de browser-chrome (Safari adresbalk, notch) het
     niet overlapt. */
  .hero__scrollcue {
    right: 50%;
    transform: translateX(50%);
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 64px));
  }

  /* Marquee compacter */
  .marquee { padding: 16px 0; }
  .marquee__track { gap: 24px; }

  /* Sections: minder verticale lucht */
  :root { --section-pad-y: 72px; }
  .section__label { margin-bottom: 28px; gap: 10px; font-size: 11px; }
  .section__title { margin-bottom: 32px; }

  /* OVER */
  .kicker { font-size: clamp(22px, 5.4vw, 30px); margin-bottom: 24px; }
  .copy { font-size: 15px; margin-bottom: 32px; }

  /* Stats: stack als horizontale rijen (cijfer ↔ label) */
  .stats { grid-template-columns: 1fr; }
  .stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child { border-bottom: 0; }
  .stat strong { font-size: 36px; }
  .stat span { margin-top: 0; font-size: 11px; }

  /* PERS */
  .press { gap: 16px; }
  .press blockquote {
    padding: 28px 22px;
    min-height: auto;
  }
  .press p { font-size: 18px; line-height: 1.35; margin-bottom: 20px; }

  /* SHOWS — compactere rij */
  .shows li {
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    padding: 22px 0;
  }
  /* Hover-padding uit op touch: geen muis, alleen visuele drift. */
  .shows li:hover { padding-left: 0; padding-right: 0; }
  .shows time strong { font-size: 32px; }
  .shows time span { font-size: 10px; letter-spacing: 0.18em; margin-top: 4px; }
  .shows__title { font-size: 16px; }
  .shows__venue { font-size: 13px; }
  .shows__cta { width: 40px; height: 40px; font-size: 20px; }

  /* VIDEO */
  .video-grid { gap: 16px; }
  .video-card__meta { padding: 16px; font-size: 13px; }

  /* BOEKEN */
  .book__title { margin-bottom: 24px; }
  .book__lead { margin-bottom: 32px; font-size: 16px; }
  .book__cta { flex-direction: column; gap: 12px; }
  .book__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }

  /* FOOTER iets ademender op telefoon */
  .footer { padding: 56px 0 24px; }
}

/* Smalle telefoons (≤380px: iPhone SE/mini) */
@media (max-width: 380px) {
  .nav__brand-name { font-size: 14px; }
  .nav__cta { padding: 6px 12px; font-size: 13px; }
  .hero__title { font-size: 38px; }
  .marquee__track { font-size: 24px; gap: 20px; }
  .shows li { grid-template-columns: 56px 1fr auto; gap: 10px; }
  .shows time strong { font-size: 28px; }
  .kicker { font-size: 21px; }
}

/* ============================================================
   SITE FOOTER — "Made by Ebo Digital" credit
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 5;
  background: var(--bg);
  padding: 32px 24px max(32px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
}
.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.site-footer__credit:hover { color: var(--fg); }
.site-footer__credit img {
  height: 20px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.25s var(--ease);
}
.site-footer__credit:hover img { opacity: 1; }

/* ============================================================
   LOADING SCREEN — Rolex/Apple-stijl preload-overlay
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s var(--ease), visibility 0s linear 0.7s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.loader__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5.5vw, 52px);
  letter-spacing: -0.035em;
  color: var(--fg);
  white-space: nowrap;
  /* Subtiele fade-in zodat het niet alleen verschijnt als de font binnen is */
  animation: loader-brand-in 0.8s var(--ease) both;
}
@keyframes loader-brand-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.loader__bar {
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.25s var(--ease);
}
.loader__status {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* Scroll-lock zolang loader actief */
body.is-loading {
  overflow: hidden;
  overscroll-behavior: contain;
}

/* Hero al deze sessie gezien → loader compleet skippen, geen flits,
   geen scroll-lock. Frames zitten in browser-cache, dus de pagina is
   instant interactief. JS preload draait stil op de achtergrond. */
html.hero-cached .loader { display: none; }
html.hero-cached body.is-loading {
  overflow: auto;
  overscroll-behavior: auto;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { height: 100vh; }
  .marquee__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .loader__brand { animation: none; }
}

/* ============================================================
   OVER — tags (vervangt de oude fake stats; flexibel voor tekst)
   ============================================================ */
.tags {
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
}
.tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
}

/* ============================================================
   DE SHOW — 'Het Bewogen Jaar 2026'
   ============================================================ */
.section--show {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.show {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 88px);
  /* foto verticaal gecentreerd t.o.v. de (lange) show-tekst */
  align-items: center;
}
.show__media figure { margin: 0; }
.show__media img {
  width: 100%;
  height: auto; /* zie .about__media img — attribuut-hoogte mag niet winnen */
  border-radius: var(--radius);
  filter: saturate(0.95);
}
.show__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
}
.show__title {
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.show__title em {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
}
.show__lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--fg);
  margin: 0 0 22px;
  max-width: 56ch;
}
.show__copy {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--fg-dim);
  margin: 0 0 32px;
  max-width: 56ch;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}
.text-link:hover { gap: 16px; }

@media (max-width: 860px) {
  .show { grid-template-columns: 1fr; gap: 28px; }
  .show__media { order: -1; }
}

/* ============================================================
   SPEELLIJST — achtergrond-override + lege staat
   ============================================================ */
.section--speellijst { background: var(--bg); }
.shows__empty {
  color: var(--fg-dim);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  padding-top: 36px;
  max-width: 60ch;
}
.shows__empty em { font-family: var(--font-serif); font-style: italic; color: var(--fg); }
.shows__empty a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobiel menu — extra stagger voor het 4e item */
body.menu-open .mobile-menu__nav a:nth-child(4) { transition-delay: 0.34s; }

/* ============================================================
   BOEKEN — contactformulier + direct contact/socials
   (cream sectie, dus donkere tekst/velden)
   ============================================================ */
.book__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.book-form { display: flex; flex-direction: column; gap: 18px; }
.book-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-field { display: flex; flex-direction: column; gap: 8px; }
.book-field > span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}
.book-field > span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.4);
}
.book-field input,
.book-field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #0d0d0d;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.book-field textarea { resize: vertical; min-height: 130px; }
.book-field input::placeholder,
.book-field textarea::placeholder { color: rgba(0, 0, 0, 0.35); }
.book-field input:focus,
.book-field textarea:focus {
  outline: none;
  border-color: #0d0d0d;
  background: rgba(0, 0, 0, 0.06);
}
.book-form .btn { align-self: flex-start; margin-top: 4px; border: 0; }
.book-form__status {
  font-size: 14px;
  line-height: 1.4;
  margin: 4px 0 0;
  min-height: 1.2em;
  color: rgba(0, 0, 0, 0.6);
}
.book-form__status.is-ok { color: #1a7f37; font-weight: 500; }
.book-form__status.is-err { color: #b3261e; font-weight: 500; }
.book-form__privacy {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
}
.book-form__privacy a { color: rgba(0, 0, 0, 0.7); text-decoration: underline; text-underline-offset: 2px; }
.book-form__privacy a:hover { color: #0d0d0d; }

.book-contact__intro {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 28px;
}
.book-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.book-contact__list li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  padding: 18px 0;
}
.book-contact__list li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.14); }
.book-contact__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 600;
}
.book-contact__list a {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0d0d0d;
  transition: color 0.2s var(--ease);
  width: fit-content;
}
.book-contact__list a:hover { color: rgba(0, 0, 0, 0.55); }

@media (max-width: 860px) {
  .book__grid { grid-template-columns: 1fr; gap: 40px; }
  .book-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOTO-REEL — automatisch lopende, sleepbare fotostrip
   ============================================================ */
.reel-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 6vw, 84px) 0;
  overflow: hidden;
}
.reel {
  overflow: hidden;
  cursor: grab;
  /* Verticaal scrollen blijft mogelijk; horizontaal slepen vangen wij op. */
  touch-action: pan-y;
}
.reel.is-dragging { cursor: grabbing; }
.reel__track {
  display: flex;
  gap: 0;                 /* foto's tegen elkaar — doorlopende filmstrip */
  width: max-content;
  padding: 0;
  will-change: transform;
}
.reel__item {
  flex: 0 0 auto;
  margin: 0;              /* reset de standaard <figure>-marge → echt tegen elkaar */
  height: clamp(220px, 30vw, 380px);
  border-radius: 0;       /* geen ronding zodat ze naadloos aansluiten */
  overflow: hidden;
  background: #000;
}
.reel__link { display: block; height: 100%; }
.reel__item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.97);
  -webkit-user-drag: none;
  user-select: none;
  /* zodat het slepen op de container werkt i.p.v. de afbeelding zelf */
  pointer-events: none;
}
