/* ============================================================
   HOTELVAK Rondetafel — Hotelvastgoed & Ontwikkeling 2027
   Premium editorial: warm ivoor, diep navy, ingetogen goud.
   Typografie: Sentient (koppen/citaten) + Author (tekst/labels)
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Sentient';
  src: url('/assets/fonts/sentient-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sentient';
  src: url('/assets/fonts/sentient-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Sentient';
  src: url('/assets/fonts/sentient-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sentient';
  src: url('/assets/fonts/sentient-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Author';
  src: url('/assets/fonts/author-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Author';
  src: url('/assets/fonts/author-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Author';
  src: url('/assets/fonts/author-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --ivoor: #FAF6EE;
  --ivoor-diep: #F4EDDF;
  --kaart: #F1E9D8;
  --lijn: rgba(20, 30, 50, 0.16);
  --lijn-zacht: rgba(20, 30, 50, 0.09);

  --navy: #0A1322;
  --navy-diep: #060B14;
  --navy-vlak: #0F1B2F;
  --navy-lijn: rgba(247, 241, 229, 0.16);

  --inkt: #1B2335;
  --grijs: #50576A;
  --room: #F4EFE3;
  --room-zacht: rgba(244, 239, 227, 0.74);

  --goud: #D49648;
  --goud-licht: #E2B377;
  --goud-diep: #8A6324;
  --fout: #A93A24;
  --fout-licht: #F4A98F;

  --serif: 'Sentient', 'Iowan Old Style', Georgia, serif;
  --sans: 'Author', 'Avenir Next', 'Segoe UI', sans-serif;

  --kader: 74rem;
  --topbalk-h: 4rem;
}

/* ---------- basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbalk-h) + 1.25rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivoor);
  color: var(--inkt);
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* fijne papierkorrel over de hele pagina */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23k)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); max-width: 22ch; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }

a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--goud);
  outline-offset: 3px;
  border-radius: 2px;
}

.kader {
  width: min(var(--kader), 100% - 3rem);
  margin-inline: auto;
}

.accent-cursief {
  font-style: italic;
  font-weight: 400;
  color: var(--goud);
}
.accent-goud { color: var(--goud); }

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--navy);
  color: var(--room);
  padding: 0.6rem 1.1rem;
  border-radius: 3px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- sectielabel: klein, gespatieerd, met lijn ---------- */
.sectielabel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goud-diep);
}
.sectielabel__lijn {
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
  transform-origin: left center;
}
.sectielabel--goud { color: var(--goud-licht); }
.sectielabel--midden { justify-content: center; }
.sectielabel--midden .sectielabel__lijn:last-child { transform-origin: right center; }

/* ---------- knoppen ---------- */
.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}
.knop--goud {
  background: var(--goud);
  color: var(--navy-diep);
  padding: 0.78rem 1.5rem;
}
.knop--goud:hover, .knop--goud:focus-visible {
  background: var(--goud-licht);
  transform: translateY(-1px);
}
.knop--goud:active { transform: translateY(0); }
.knop--groot { padding: 1rem 2.1rem; font-size: 0.85rem; }

/* ---------- topbalk ---------- */
.topbalk {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lijn-zacht);
}
.topbalk__inner {
  width: min(var(--kader), 100% - 3rem);
  margin-inline: auto;
  min-height: var(--topbalk-h);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.woordmerk {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.woordmerk img {
  display: block;
  width: 115px;
  height: auto;
}
.topbalk__uitgave {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grijs);
  border-left: 1px solid var(--lijn);
  padding-left: 1.4rem;
}
.topbalk__concept {
  margin: 0;
  padding: 0.38rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--navy-diep);
  background: var(--goud);
  border-radius: 2px;
}
.topbalk__nav {
  margin-left: auto;
  display: flex;
  gap: 1.7rem;
}
.topbalk__nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--inkt);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.topbalk__nav a:hover, .topbalk__nav a:focus-visible {
  color: var(--goud-diep);
  border-bottom-color: var(--goud-diep);
}
/* CTA in de lichte topbalk: donker vlak, zoals het concept */
.topbalk .knop--goud {
  background: var(--navy);
  color: var(--room);
}
.topbalk .knop--goud:hover, .topbalk .knop--goud:focus-visible {
  background: var(--navy-vlak);
}
.topbalk__cta { flex-shrink: 0; }

@media (max-width: 64rem) {
  .topbalk__nav { display: none; }
}
@media (max-width: 44rem) {
  .topbalk__inner { gap: 0.7rem; }
  .topbalk__uitgave { display: none; }
  .woordmerk img { width: 86px; }
  .topbalk__concept {
    margin-left: auto;
    padding: 0.28rem 0.55rem;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }
  .topbalk__cta {
    margin-left: 0;
    padding: 0.55rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.58) 0%, rgba(5, 7, 11, 0.66) 55%, rgba(4, 6, 10, 0.86) 100%),
    url('/beeld/hero-rondetafel.webp') center 38% / cover no-repeat,
    var(--navy-diep);
  color: var(--room);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 9vh, 7rem) clamp(3rem, 6vh, 5rem);
}
.hero__kop {
  font-size: clamp(2.35rem, 5.2vw, 4.1rem);
  font-weight: 500;
  margin-bottom: 1.4rem;
  max-width: none;
}
.hero__regel { display: block; }
.hero__door {
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--room-zacht);
  margin-bottom: 1.6rem;
}
.hero__door strong { color: var(--goud-licht); font-weight: 600; }
.hero__intro {
  max-width: 58ch;
  color: var(--room-zacht);
  font-size: 1.12rem;
}
.hero__intro p + p { margin-top: 0.9em; }
.hero__acties { margin-top: 2.1rem; }
.hero__meta {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--navy-lijn);
  padding-block: 1.05rem 1.25rem;
}
.hero__meta p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--room-zacht);
}
.hero__meta span { color: var(--goud); margin-inline: 0.45rem; }



/* ---------- generieke sectie ---------- */
.sectie { padding-block: clamp(4rem, 9vh, 7.5rem); }

/* ---------- 01 · aanleiding ---------- */
.sectie--aanleiding { padding-bottom: 0; }
.aanleiding__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 2.5rem;
}
.aanleiding__tekst { max-width: 54ch; padding-top: 0.4rem; }
.aanleiding__quote {
  grid-column: 1 / 2;
  margin: 0;
  align-self: start;
  border-top: 1px solid var(--lijn);
  padding-top: 1.8rem;
}
.aanleiding__quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.42;
  color: var(--navy);
}
.aanleiding__quote .accent-cursief { color: var(--goud-diep); }
.aanleiding__kern {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: var(--navy);
  color: var(--room);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 33rem;
  justify-self: end;
  margin-bottom: -4.5rem;   /* schuift de drukfactoren-band in */
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 50px -28px rgba(11, 20, 33, 0.55);
}
.aanleiding__kerntekst {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.45;
}

.drukfactoren {
  margin-top: 4.5rem;
  background: transparent;
}
.sectie--aanleiding .drukfactoren {
  width: 100%;
  max-width: none;
  background: var(--ivoor-diep);
  border-top: 1px solid var(--lijn-zacht);
}
.sectie--aanleiding .drukfactoren > * {
  width: min(var(--kader), 100% - 3rem);
  margin-inline: auto;
}
.drukfactoren { padding-block: clamp(3.5rem, 7vh, 5.5rem); }
.drukfactoren__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2.2rem;
}
.drukfactor {
  border-top: 1px solid var(--lijn);
  padding-top: 1.3rem;
  position: relative;
}
.drukfactor::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 2.2rem; height: 2px;
  background: var(--goud);
}
.drukfactor__nr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.04rem;
  color: var(--goud-diep);
  margin-bottom: 0.45rem;
}
.drukfactor h3 { font-size: 1.16rem; margin-bottom: 0.8rem; }
.drukfactor ul { list-style: none; }
.drukfactor li {
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--lijn-zacht);
  font-size: 1.03rem;
  color: var(--grijs);
}
.drukfactor li:last-child { border-bottom: 0; }

@media (max-width: 56rem) {
  .aanleiding__grid { grid-template-columns: 1fr; }
  .aanleiding__quote, .aanleiding__kern { grid-column: auto; grid-row: auto; }
  .aanleiding__kern { justify-self: stretch; margin-bottom: -4.5rem; }
  .drukfactoren__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 36rem) {
  .drukfactoren__grid { grid-template-columns: 1fr; }
}

/* ---------- 02 · onderzoeksvraag ---------- */
.sectie--vraag {
  position: relative;
  background: linear-gradient(176deg, var(--navy) 0%, var(--navy-diep) 100%);
  color: var(--room);
  overflow: hidden;
  text-align: center;
}
.vraag__ovaal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.vraag__ovaal ellipse {
  fill: none;
  stroke: var(--goud);
  stroke-width: 1;
  opacity: 0.16;
}
.vraag__inner { position: relative; max-width: 54rem; }
.vraag__kop { margin-inline: auto; }
.vraag__quote { margin: 2.2rem 0 2rem; }
.vraag__quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.38;
  font-weight: 400;
}
.vraag__toelichting {
  max-width: 58ch;
  margin-inline: auto;
  color: var(--room-zacht);
  font-size: 1.08rem;
}

/* ---------- 03 · gespreksthema's ---------- */
.themas__kop { max-width: 38rem; }
.themas__lijst {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2.5rem, 5vw, 5.5rem);
  row-gap: clamp(2.2rem, 4vh, 3.2rem);
  margin-top: 3rem;
}
.thema {
  position: relative;
  border-top: 1px solid var(--lijn);
  padding-top: 3.6rem;
}
.thema:nth-child(even) { transform: translateY(2.75rem); }
.thema__nr {
  position: absolute;
  top: 0.55rem;
  right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--goud-diep);
  opacity: 0.5;
  margin: 0;
}
.thema h3 { font-size: 1.35rem; max-width: 18ch; }
.thema p { color: var(--grijs); font-size: 1.06rem; max-width: 48ch; }

@media (max-width: 48rem) {
  .themas__lijst { grid-template-columns: 1fr; }
  .thema:nth-child(even) { transform: none; }
}

/* ---------- 04 · deelnemersveld / tafelschikking ---------- */
.sectie--deelnemers {
  background: var(--ivoor-diep);
  border-block: 1px solid var(--lijn-zacht);
}
.deelnemers__kop { max-width: 44rem; }
.deelnemers__intro { color: var(--grijs); max-width: 56ch; }

.deelnemers__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.tafelschikking__rollen { align-self: center; }
.tafelschikking__figuur { margin: 0; }
.tafel { width: 100%; height: auto; overflow: visible; }
.tafel__blad {
  fill: var(--navy);
  stroke: var(--goud);
  stroke-width: 1.2;
}
.tafel__lijn {
  fill: none;
  stroke: rgba(247, 241, 229, 0.22);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.tafel__stoel { cursor: pointer; }
.tafel__raakvlak { fill: transparent; }
.tafel__leuning {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  opacity: 0.5;
  transition: stroke 0.25s, opacity 0.25s;
}
.tafel__zitting {
  fill: var(--ivoor);
  stroke: var(--navy);
  stroke-width: 1.4;
  transition: fill 0.25s, stroke 0.25s, transform 0.25s;
}
.tafel__stoel:hover .tafel__zitting { fill: var(--goud-licht); }
.tafel__stoel.actief .tafel__zitting { fill: var(--goud); stroke: var(--goud-diep); }
.tafel__stoel.actief .tafel__leuning { stroke: var(--goud-diep); opacity: 1; }
.tafel__index {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  fill: var(--goud-licht);
  text-anchor: middle;
  text-transform: uppercase;
}
.tafel__rol {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  fill: var(--room);
  text-anchor: middle;
}
.tafelschikking__caption {
  margin-top: 1.4rem;
  font-size: 0.98rem;
  color: var(--grijs);
  max-width: 44ch;
}

.tafelschikking__rollen {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--lijn);
}
.rolknop {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--lijn-zacht);
  font: inherit;
  font-size: 1.05rem;
  text-align: left;
  padding: 0.52rem 0.4rem;
  cursor: pointer;
  color: var(--inkt);
  transition: background-color 0.2s, color 0.2s, padding-left 0.25s;
}
.rolknop__nr {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--goud-diep);
}
.rolknop:hover { background: rgba(212, 150, 72, 0.10); }
.rolknop[aria-pressed='true'] {
  background: var(--navy);
  color: var(--room);
  padding-left: 0.9rem;
}
.rolknop[aria-pressed='true'] .rolknop__nr { color: var(--goud-licht); }

@media (max-width: 56rem) {
  .deelnemers__grid { grid-template-columns: 1fr; }
  .tafelschikking__rollen { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.5rem; }
}
@media (max-width: 36rem) {
  .tafelschikking__rollen { grid-template-columns: 1fr; }
}

/* ---------- beeldband: full-bleed beeldmoment ---------- */
.beeldband {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}
.beeldband img {
  display: block;
  width: 100%;
  height: clamp(20rem, 52vh, 32rem);
  object-fit: cover;
}
.beeldband::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 20, 33, 0.38) 0%, rgba(11, 20, 33, 0.06) 36%, rgba(11, 20, 33, 0.06) 60%, rgba(11, 20, 33, 0.55) 100%);
}
.beeldband__label {
  position: absolute;
  z-index: 1;
  left: max(1.5rem, calc((100% - var(--kader)) / 2));
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--room);
}

/* ---------- 05 · positie ---------- */
.positie__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.positie__quote { margin: 1.6rem 0; }
.positie__quote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--navy);
  border-left: 2px solid var(--goud);
  padding-left: 1.4rem;
}
.positie__toelichting { color: var(--grijs); max-width: 46ch; }
.positie__punten { list-style: none; border-top: 1px solid var(--lijn); }
.positie__punten li {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  padding: 0.85rem 0.2rem;
  border-bottom: 1px solid var(--lijn-zacht);
  font-size: 1.06rem;
}
.positie__nr {
  font-family: var(--serif);
  font-style: italic;
  color: var(--goud-diep);
  font-size: 1.1rem;
  min-width: 1.6rem;
}

@media (max-width: 52rem) {
  .positie__grid { grid-template-columns: 1fr; }
}

/* ---------- 07 · aanbod ---------- */
.sectie--aanbod { padding-block: 0 clamp(4rem, 9vh, 7.5rem); }
.aanbod__paneel {
  background: linear-gradient(160deg, var(--navy-vlak), var(--navy) 60%);
  color: var(--room);
  padding: clamp(2.2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}
.aanbod__kop p:not(.sectielabel) { color: var(--room-zacht); font-size: 1.06rem; max-width: 40ch; }
.aanbod__lijst {
  list-style: none;
  columns: 2;
  column-gap: 2.5rem;
  border-top: 1px solid var(--navy-lijn);
}
.aanbod__item {
  break-inside: avoid;
  padding: 0.68rem 0.2rem;
  border-bottom: 1px solid var(--navy-lijn);
  font-size: 1.04rem;
  color: var(--room-zacht);
}
.aanbod__item--eerste {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--goud-licht);
  column-span: all;
}

@media (max-width: 56rem) {
  .aanbod__paneel { grid-template-columns: 1fr; }
  .aanbod__lijst { columns: 1; }
}

/* ---------- 08 · praktisch ---------- */
.sectie--praktisch { padding-bottom: 0; }
.praktisch__feiten {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem 2.4rem;
  margin: 2.8rem 0 0;
}
.praktisch__feit {
  border-top: 1px solid var(--lijn);
  padding-top: 0.85rem;
}
.praktisch__feit dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--goud-diep);
  margin-bottom: 0.35rem;
}
.praktisch__feit dd { margin: 0; font-size: 1.08rem; }

.locatie { margin-top: 4rem; }
.locatie__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: stretch;
  margin-top: 1.6rem;
}
.locatie__grid--breed { grid-template-columns: 1fr; }
.locatie__pand {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.locatie__pand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  display: block;
}
.locatie__pand figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.8rem 1.4rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(11, 20, 33, 0.82));
  color: var(--room);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.locatie__zalen {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}
.opstelling {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  align-items: center;
  gap: 1.3rem;
  background: var(--kaart);
  border: 1px solid var(--lijn-zacht);
  padding: 0.85rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.opstelling:hover {
  border-color: var(--goud);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -22px rgba(11, 20, 33, 0.4);
}
.opstelling img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.opstelling figcaption {
  margin: 0;
  padding-right: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--grijs);
}

.bijdrage {
  margin-top: 4rem;
  margin-bottom: -5.5rem;   /* overlapt de navy deelname-sectie */
  position: relative;
  z-index: 2;
  background: var(--ivoor);
  border: 1px solid var(--lijn);
  border-top: 3px solid var(--goud);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 30px 60px -30px rgba(11, 20, 33, 0.5);
  max-width: 46rem;
}
.bijdrage .sectielabel { color: var(--goud-diep); }
.bijdrage__bedrag {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0.4rem 0 1rem;
}
.bijdrage__euro { color: var(--goud-diep); font-size: 0.6em; vertical-align: 0.35em; }
.bijdrage__excl {
  display: block;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grijs);
  margin-top: 0.6rem;
}
.bijdrage__inclusief { color: var(--grijs); font-size: 1.04rem; max-width: 52ch; }

@media (max-width: 56rem) {
  .praktisch__feiten { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .locatie__grid { grid-template-columns: 1fr; }
  .locatie__pand img { height: auto; aspect-ratio: 4 / 5; }
}
@media (max-width: 36rem) {
  .opstelling { grid-template-columns: 1fr; gap: 0.85rem; align-items: start; }
  .opstelling figcaption { padding: 0 0.3rem 0.3rem; }
}

/* ---------- 09 · deelname ---------- */
.sectie--deelname {
  background:
    radial-gradient(90% 110% at 12% 8%, rgba(212, 150, 72, 0.08), transparent 50%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy-diep) 100%);
  color: var(--room);
  padding-top: clamp(9rem, 16vh, 12rem);  /* ruimte voor het overlappende bijdrage-blok */
}
.deelname__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.deelname__kop h2 { max-width: 18ch; }
.deelname__kop p:not(.sectielabel) { color: var(--room-zacht); max-width: 44ch; }
.deelname__fallback { color: var(--room-zacht); }

/* formulier */
.formulier { border-top: 1px solid var(--navy-lijn); padding-top: 1.8rem; }
.veld-rij {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
}
.veld { margin-bottom: 1.5rem; border: 0; padding: 0; min-inline-size: 0; }
.veld > label, .veld legend {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--goud-licht);
  margin-bottom: 0.45rem;
}
.verplicht { color: var(--goud); }
.veld input[type='text'],
.veld input[type='email'],
.veld input[type='tel'],
.veld textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--navy-lijn);
  color: var(--room);
  font: inherit;
  font-size: 1.08rem;
  padding: 0.45rem 0.1rem 0.6rem;
  border-radius: 0;
  transition: border-color 0.25s, background-color 0.25s;
}
.veld textarea { resize: vertical; min-height: 6.5rem; }
.veld input:hover, .veld textarea:hover { border-bottom-color: rgba(247, 241, 229, 0.4); }
.veld input:focus, .veld textarea:focus {
  outline: none;
  border-bottom-color: var(--goud);
  background: rgba(212, 150, 72, 0.05);
}
.veld input:focus-visible, .veld textarea:focus-visible { outline: none; }
.veld.veld--ongeldig input, .veld.veld--ongeldig textarea { border-bottom-color: var(--fout-licht); }
.veld__fout {
  margin: 0.5rem 0 0;
  font-size: 0.83rem;
  color: var(--fout-licht);
}

/* radiogroep deelname */
.veld--keuze { margin-top: 0.6rem; }
.keuze { display: grid; gap: 0.7rem; margin-top: 0.7rem; }
.keuze__optie {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.06rem;
  color: var(--room);
  cursor: pointer;
  border: 1px solid var(--navy-lijn);
  padding: 0.85rem 1.1rem;
  transition: border-color 0.22s, background-color 0.22s;
}
.keuze__optie:hover { border-color: rgba(247, 241, 229, 0.4); }
.keuze__optie input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.keuze__stip {
  flex-shrink: 0;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  border: 1px solid var(--goud-licht);
  position: relative;
  transition: border-color 0.2s;
}
.keuze__stip::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--goud);
  transform: scale(0);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.keuze__optie input:checked ~ .keuze__stip::after { transform: scale(1); }
.keuze__optie:has(input:checked) {
  border-color: var(--goud);
  background: rgba(212, 150, 72, 0.08);
}
.keuze__optie input:focus-visible ~ .keuze__stip {
  outline: 2px solid var(--goud);
  outline-offset: 3px;
}

.form-status {
  padding: 0.9rem 1.1rem;
  font-size: 1.04rem;
  margin-bottom: 1.4rem;
}
.form-status--fout {
  background: rgba(169, 58, 36, 0.18);
  border-left: 2px solid var(--fout-licht);
  color: var(--fout-licht);
}
.formulier__actie { margin-top: 0.6rem; }

/* bevestigingsstaat */
.bevestiging {
  border: 1px solid var(--goud);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.bevestiging__merk {
  width: 5.4rem;
  height: auto;
  margin-bottom: 1.2rem;
}
.bevestiging__merk ellipse { stroke: var(--goud); stroke-width: 1.4; }
.bevestiging__merk path { stroke: var(--room); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.bevestiging h3 { font-size: 1.7rem; }
.bevestiging p { color: var(--room-zacht); max-width: 40ch; margin-inline: auto; }

@media (max-width: 56rem) {
  .deelname__grid { grid-template-columns: 1fr; }
  .veld-rij { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- voet ---------- */
.voet {
  background: var(--navy-diep);
  color: var(--room-zacht);
  border-top: 1px solid var(--navy-lijn);
}
.voet__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.6rem;
  font-size: 0.85rem;
}
.voet__label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--goud-licht);
}
.voet p { margin: 0; }

/* ---------- 404 ---------- */
.nietgevonden {
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(212, 150, 72, 0.08), transparent 55%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy-diep) 100%);
  color: var(--room);
  min-height: calc(100vh - var(--topbalk-h) - 5rem);
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 4rem;
}
.nietgevonden__inner { max-width: 44rem; }
.nietgevonden__tafel {
  width: min(20rem, 70vw);
  height: auto;
  margin-bottom: 2rem;
}
.nietgevonden__tafel ellipse { fill: none; stroke: var(--goud); stroke-width: 1.2; }
.nietgevonden__tafel ellipse + ellipse { stroke: var(--navy-lijn); stroke-dasharray: 3 5; }
.nietgevonden__tafel circle { fill: var(--room); opacity: 0.85; }
.nietgevonden__tafel circle.leeg {
  fill: none;
  stroke: var(--fout-licht);
  stroke-dasharray: 3 3;
}
.nietgevonden h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-inline: auto; }
.nietgevonden__tekst { color: var(--room-zacht); max-width: 44ch; margin-inline: auto; }
.nietgevonden__acties {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.nietgevonden__link {
  color: var(--goud-licht);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration-color: rgba(226, 179, 119, 0.5);
  text-underline-offset: 0.3em;
}

/* ---------- motion ---------- */
/* hero-laadchoreografie: gefaseerd, alleen mét JS */
.js-klaar .hero__label { animation: hero-in 0.7s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__label .sectielabel__lijn { animation: lijn-in 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__regel:nth-child(1) { animation: hero-in 0.85s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__regel:nth-child(2) { animation: hero-in 0.85s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__door { animation: hero-in 0.7s 0.46s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__intro { animation: hero-in 0.7s 0.56s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__acties { animation: hero-in 0.7s 0.68s cubic-bezier(0.22, 1, 0.36, 1) both; }
.js-klaar .hero__meta { animation: zacht-in 0.9s 0.85s ease both; }
.js-klaar .hero__beeld { animation: zacht-in 1.4s 0.35s ease both; }
.js-klaar .hero__beeld img { animation: beeld-in 2.2s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: none; }
}
@keyframes zacht-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lijn-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes beeld-in { from { transform: scale(1.045); } to { transform: none; } }

/* scroll-reveals: per variant een eigen beweging */
.js-klaar .reveal { opacity: 0; transform: translateY(1.6rem); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.js-klaar .reveal--links { transform: translateX(-1.6rem); }
.js-klaar .reveal--zoom { transform: scale(0.97); }
.js-klaar .reveal.zichtbaar { opacity: 1; transform: none; }
.js-klaar .reveal-rij > * {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-klaar .reveal-rij.zichtbaar > * { opacity: 1; transform: none; }
.js-klaar .reveal-rij.zichtbaar > *:nth-child(1) { transition-delay: 0s; }
.js-klaar .reveal-rij.zichtbaar > *:nth-child(2) { transition-delay: 0.08s; }
.js-klaar .reveal-rij.zichtbaar > *:nth-child(3) { transition-delay: 0.16s; }
.js-klaar .reveal-rij.zichtbaar > *:nth-child(4) { transition-delay: 0.24s; }
.js-klaar .reveal-rij.zichtbaar > *:nth-child(5) { transition-delay: 0.32s; }
.js-klaar .reveal-rij.zichtbaar > *:nth-child(6) { transition-delay: 0.4s; }

/* thema's behouden hun verticale offset na de reveal */
.js-klaar .themas__lijst.reveal-rij > li:nth-child(even) { transform: translateY(3.9rem); }
.js-klaar .themas__lijst.reveal-rij.zichtbaar > li:nth-child(even) { transform: translateY(2.75rem); }
@media (max-width: 48rem) {
  .js-klaar .themas__lijst.reveal-rij > li:nth-child(even) { transform: translateY(1.2rem); }
  .js-klaar .themas__lijst.reveal-rij.zichtbaar > li:nth-child(even) { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-klaar .hero__label, .js-klaar .hero__label .sectielabel__lijn,
  .js-klaar .hero__regel:nth-child(1), .js-klaar .hero__regel:nth-child(2),
  .js-klaar .hero__door, .js-klaar .hero__intro, .js-klaar .hero__acties,
  .js-klaar .hero__meta, .js-klaar .hero__beeld,
  .js-klaar .hero__beeld img { animation: none; opacity: 1; }
  .js-klaar .reveal, .js-klaar .reveal-rij > * { opacity: 1; transform: none; transition: none; }
  .js-klaar .themas__lijst.reveal-rij > li:nth-child(even) { transform: translateY(2.75rem); }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
