@charset "utf-8";

/* =============================================================================
   Poppelaars Houtontwerp — demo 2 "Buitenleven"
   Filmisch en ingetogen. Poppins als huisletter — cursief voor de koppen —
   met Cormorant voor de payoff. Wit papier, inktzwart, goud en leisteenblauw.
   ========================================================================== */

/* ------------------------------------------------------------- lettertypen -- */

@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-300i.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-500i.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-600i.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant var';
  src: url('fonts/cormorant-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant var';
  src: url('fonts/cormorant-var-i.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ------------------------------------------------------------------ tokens -- */

:root {
  /* papier */
  --creme: #ffffff;          /* de gewone paginagrond */
  --ivoor: #ffffff;          /* kaarten en panelen    */
  --bleek: #f4f2ee;          /* rustige tussenband    */

  /* inkt */
  --espresso: #1b1e20;       /* bijna zwart, koel     */
  --espresso-2: #262b2e;
  --zacht: #5d6c74;          /* lopende tekst, gedempt */

  /* leisteenblauw — de tweede stem */
  --leisteen: #37505d;
  --leisteen-licht: #6a838e;

  /* goud */
  --goud: #856a2b;           /* goud op wit           */
  --goud-diep: #6d5620;
  --goud-licht: #d7ba7e;     /* goud op donker        */
  --goud-zacht: #c9a86a;

  --lijn: #e3dfd8;
  --lijn-zacht: #efece7;
  --lijn-donker: rgba(255, 255, 255, .16);

  --kop-schrift: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --schrift: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --payoff-schrift: 'Cormorant var', 'Cormorant Garamond', Georgia, serif;

  --breed: 1240px;
  --smal: 760px;
  --marge: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 6px;
  --pil: 999px;
  --duur: .55s;
  --soepel: cubic-bezier(.22, .61, .36, 1);
  --schaduw: 0 18px 44px -30px rgba(27, 30, 32, .45);
  --schaduw-op: 0 30px 66px -34px rgba(27, 30, 32, .55);
  --kop-hoogte: 84px;
}

/* -------------------------------------------------------------------- basis -- */

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

[hidden] { display: none !important; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--kop-hoogte) + 1rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--creme);
  color: var(--espresso);
  font-family: var(--schrift);
  font-size: .97rem;
  line-height: 1.78;
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

img,
video { max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--kop-schrift);
  font-style: italic;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.012em;
  /* Geen automatisch afbreken: liever een lang woord op de volgende regel
     dan "afmetin-gen" midden in een kop. */
  overflow-wrap: break-word;
  hyphens: manual;
  font-variant-numeric: lining-nums;
}

/* Binnen een kop zet <em> juist het accentwoord in goud — niet nóg schuiner. */
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--goud); }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

table { border-collapse: collapse; width: 100%; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

input, select, textarea { font: inherit; color: inherit; }

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

::selection { background: var(--goud-licht); color: var(--espresso); }

/* ---------------------------------------------------------------- hulpstuk -- */

.omhulsel {
  width: 100%;
  max-width: var(--breed);
  margin-inline: auto;
  padding-inline: var(--marge);
}
.omhulsel--smal { max-width: calc(var(--smal) + 2 * 2.75rem); }

.visueel-verborgen {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skiplink {
  position: absolute;
  top: -100px;
  left: var(--marge);
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--espresso);
  color: var(--creme);
  text-decoration: none;
  transition: top .2s var(--soepel);
}
.skiplink:focus { top: .7rem; }

.icoon { width: 1.15em; height: 1.15em; flex: none; }

.honingpot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------- typografie -- */

.opschrift {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.05rem;
  font-size: .68rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--goud);
}
.opschrift > span {
  width: 2.1rem;
  height: 1px;
  background: currentColor;
  flex: none;
}
.opschrift--licht { color: var(--goud-licht); }

.titel {
  font-size: clamp(1.85rem, 1.15rem + 2.9vw, 3.25rem);
  font-weight: 500;
  margin-bottom: .5em;
  max-width: 21ch;
}
.titel--klein { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem); }
.titel--licht { color: #fff; }
.titel--licht em { color: var(--goud-licht); }

/* De kopstelling uit het voorbeeld: gouden regel, leisteenblauwe onderregel. */
.manifest { text-align: center; }
.manifest__kop {
  font-size: clamp(1.7rem, .95rem + 3.1vw, 3.15rem);
  font-weight: 600;
  color: var(--goud);
  line-height: 1.18;
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}
.manifest__onder {
  margin: .7em auto 0;
  font-size: clamp(1.02rem, .9rem + .55vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--leisteen);
  letter-spacing: -.01em;
}

.lead {
  font-size: clamp(1rem, .96rem + .22vw, 1.1rem);
  color: var(--zacht);
  line-height: 1.75;
}
.blok--donker .lead,
.blok--donker p { color: rgba(255, 255, 255, .74); }

.notitie {
  margin: 2.4rem 0 0;
  font-size: .85rem;
  color: var(--zacht);
  text-align: center;
  font-style: italic;
}
.notitie--links { text-align: left; margin-top: 1.4rem; }

/* -------------------------------------------------------------------- knop -- */

/* Pilvormig, zoals in het voorbeeld: rustig, met veel lucht binnen de rand. */
.knop {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .82rem 1.7rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--pil);
  transition: background .28s var(--soepel), color .28s var(--soepel),
              border-color .28s var(--soepel), transform .28s var(--soepel);
}
.knop .icoon { width: .95rem; height: .95rem; transition: transform .3s var(--soepel); }
.knop:hover .icoon { transform: translateX(4px); }

.knop--vol { background: var(--espresso); color: #fff; }
.knop--vol:hover { background: #000; }

.knop--rand { border-color: var(--goud); color: var(--goud); }
.knop--rand:hover { background: var(--goud); color: #fff; }

.knop--licht { border-color: rgba(255, 255, 255, .62); color: #fff; }
.knop--licht:hover { background: rgba(255, 255, 255, .13); border-color: #fff; }

.knop--klein { padding: .58rem 1.25rem; font-size: .72rem; }
.knop--breed { width: 100%; justify-content: center; }

.knoppen { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.knoppen--midden { justify-content: center; margin-top: 2.8rem; }

/* ------------------------------------------------------------------ blokken -- */

.blok { padding-block: clamp(3.6rem, 7.5vw, 7rem); }
.blok--strak { padding-block: clamp(2.4rem, 4.5vw, 4rem); }
.blok--bleek { background: var(--bleek); }
.blok--donker { background: var(--espresso); color: var(--creme); }
.blok--leeg { padding-block: clamp(4.5rem, 10vw, 8rem); }

.sectiekop {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 3.6rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem);
}
.sectiekop > div { min-width: 0; }
.sectiekop .titel { margin-bottom: 0; }
.sectiekop__tekst {
  margin: 0;
  color: var(--zacht);
  font-size: .96rem;
  max-width: 44ch;
}

.middenblok { text-align: center; }
.middenblok .opschrift { justify-content: center; }
.middenblok .titel { max-width: none; }

/* ------------------------------------------------------------------- kaders -- */

.kader {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--lijn-zacht);
}
.kader > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kader--breed { aspect-ratio: 3 / 2; }
.kader--hoog { aspect-ratio: 4 / 5; }
.kader--vierkant { aspect-ratio: 1 / 1; }
.kader--band { aspect-ratio: 21 / 9; }

/* ================================================================== kopregel == */

/* De balk is altijd donker. Boven een held ligt hij transparant over het beeld
   en wordt hij pas dekkend zodra er gescrold wordt. */
.kop {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--espresso);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--soepel), background .3s var(--soepel);
}
.kop.is-geplakt { border-bottom-color: rgba(255, 255, 255, .12); }

body.heeft-held .kop {
  position: fixed;
  inset-inline: 0;
  background: linear-gradient(to bottom, rgba(15, 17, 19, .72), rgba(15, 17, 19, 0));
}
body.heeft-held .kop.is-geplakt {
  background: rgba(20, 23, 25, .92);
  backdrop-filter: blur(12px);
}

.kop__rij {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.5vw, 2.4rem);
  min-height: var(--kop-hoogte);
  padding-inline: var(--marge);
}

.merk {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: inherit;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}
.beeldmerk { display: block; flex: none; }
.beeldmerk--kop { width: 46px; height: 46px; }
.beeldmerk--voet { width: 52px; height: 52px; }

.merk__tekst {
  display: flex;
  flex-direction: column;
  gap: .16em;
  min-width: 0;
  overflow: hidden;
}
/* Woordmerk zoals op het bord: twee regels kapitalen, onder elkaar uitgevuld. */
.merk__naam {
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--goud-licht);
}
.merk__onder {
  font-size: .62rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .258em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kop__acties {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-left: auto;
}

/* De offerteknop in de balk: witte omlijning, zoals in het voorbeeld. */
.kop__knop {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  letter-spacing: .05em;
  text-transform: none;
}
.kop__knop:hover { background: #fff; border-color: #fff; color: var(--espresso); }

/* --- navigatie --- */

.nav__lijst {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 1.6vw, 1.8rem);
}
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .1rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, .82);
  position: relative;
  transition: color .25s var(--soepel);
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: '';
  position: absolute;
  left: .1rem;
  right: .1rem;
  bottom: .28rem;
  height: 1px;
  background: var(--goud-licht);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--soepel);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--goud-licht); }

.nav__chevron {
  width: .38rem;
  height: .38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .3s var(--soepel);
}
.nav__link--groep[aria-expanded="true"] .nav__chevron { transform: rotate(-135deg) translate(-2px, -2px); }

.submenu {
  position: absolute;
  top: calc(100% + .55rem);
  left: -1rem;
  width: 22rem;
  max-width: calc(100vw - 2 * var(--marge));
  padding: .6rem;
  background: var(--ivoor);
  color: var(--espresso);
  border: 1px solid var(--lijn);
  box-shadow: var(--schaduw-op);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s var(--soepel), transform .22s var(--soepel), visibility 0s linear .22s;
}
.nav__item--groep:hover .submenu,
.nav__item--groep:focus-within .submenu,
.nav__link--groep[aria-expanded="true"] + .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.submenu a {
  display: block;
  padding: .68rem .85rem;
  text-decoration: none;
  transition: background .2s var(--soepel);
}
.submenu a:hover { background: var(--bleek); }
.submenu__naam {
  display: block;
  color: var(--espresso);
  font-family: var(--kop-schrift);
  font-style: italic;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.25;
}
.submenu__onder { display: block; font-size: .8rem; color: var(--zacht); line-height: 1.45; }
.submenu a[aria-current="page"] .submenu__naam { color: var(--goud); }

.nav__sluit,
.nav__voet { display: none; }

.hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--pil);
  align-items: center;
  justify-content: center;
  background: transparent;
}
.hamburger__lijn,
.hamburger__lijn::before,
.hamburger__lijn::after {
  position: absolute;
  width: 19px;
  height: 1.4px;
  background: #fff;
  transition: transform .3s var(--soepel);
}
.hamburger__lijn::before { content: ''; transform: translateY(-6px); }
.hamburger__lijn::after { content: ''; transform: translateY(6px); }

.menu-sluier {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(15, 17, 19, .58);
  opacity: 0;
  transition: opacity .3s var(--soepel);
}
body.menu-open .menu-sluier { opacity: 1; }

/* =================================================================== held ==== */

.held {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(100svh, 900px);
  padding-top: calc(var(--kop-hoogte) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.held__beeld { position: absolute; inset: -8% 0; z-index: -2; will-change: transform; }
.held__beeld img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.held__sluier {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Eén sterke sluier links onder de tekst, rechts blijft de foto open. */
  background:
    linear-gradient(to right, rgba(10, 12, 14, .85) 0%, rgba(10, 12, 14, .6) 34%, rgba(10, 12, 14, .18) 66%, rgba(10, 12, 14, 0) 100%),
    linear-gradient(to top, rgba(10, 12, 14, .42) 0%, rgba(10, 12, 14, 0) 38%);
}
.held__binnen { width: 100%; }
.held__tekst { max-width: 44rem; min-width: 0; }

/* Groot, licht en cursief — de toon van het voorbeeld. */
.held__titel {
  font-size: clamp(2.6rem, 1rem + 6.4vw, 5.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.022em;
  margin-bottom: .3em;
  max-width: 14ch;
  text-wrap: balance;
  color: rgba(255, 255, 255, .96);
}
.held__titel em { color: inherit; font-weight: 300; }

.held__sub {
  margin: 0 0 .9rem;
  font-size: clamp(1.1rem, .85rem + 1.15vw, 1.72rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--goud-licht);
}

.held__lead {
  max-width: 34rem;
  font-size: clamp(.98rem, .94rem + .3vw, 1.1rem);
  font-style: italic;
  color: rgba(255, 255, 255, .8);
}

.held .knoppen { margin-top: 2.2rem; }

/* ============================================================ paginakop (split) */

/* Donker tekstpaneel naast een staande foto — sluit aan op de balk erboven. */
.pkop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--espresso);
  color: #fff;
}
.pkop .opschrift { color: var(--goud-licht); }
.pkop__tekst {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) var(--marge);
  min-width: 0;
}
.pkop__binnen {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  padding-right: clamp(1rem, 3vw, 3rem);
  min-width: 0;
}
.pkop__titel {
  font-size: clamp(2rem, 1.15rem + 3.3vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: .38em;
  max-width: 15ch;
}
.pkop__titel em { color: var(--goud-licht); font-weight: 300; }
.pkop__lead { color: rgba(255, 255, 255, .76); margin: 0; font-size: 1rem; font-style: italic; }
.pkop__beeld { position: relative; min-height: clamp(260px, 42vw, 620px); }
.pkop__beeld img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.kruimels {
  background: var(--creme);
  border-bottom: 1px solid var(--lijn);
  font-size: .8rem;
}
.kruimels ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  padding-block: .8rem;
  color: var(--zacht);
}
.kruimels li { display: flex; align-items: center; gap: .45rem; }
.kruimels li + li::before { content: '/'; color: var(--lijn); }
.kruimels a { text-decoration: none; }
.kruimels a:hover { color: var(--goud); text-decoration: underline; }
.kruimels [aria-current="page"] { color: var(--espresso); font-weight: 600; }

/* =============================================================== onderdelen == */

/* --- manifest: tekst links, opsomming rechts --- */

.manifest__romp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(2.6rem, 6vw, 4.6rem);
  text-align: left;
}
.manifest__tekst p {
  font-style: italic;
  color: var(--zacht);
  font-size: .95rem;
  line-height: 1.85;
}

.werklijst { display: block; }
.werklijst li { border-top: 1px solid var(--lijn); }
.werklijst li:last-child { border-bottom: 1px solid var(--lijn); }
.werklijst a {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1rem;
  padding: .95rem .2rem;
  text-decoration: none;
  color: var(--leisteen);
  transition: color .25s var(--soepel), padding .3s var(--soepel);
}
.werklijst a:hover { color: var(--goud); padding-right: .8rem; }
.werklijst__naam {
  font-family: var(--kop-schrift);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, .85rem + .95vw, 1.6rem);
  line-height: 1.25;
  text-align: right;
}

/* --- beloftes --- */

.beloftes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
}
.belofte {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
  padding-left: 1.35rem;
  border-left: 1px solid var(--lijn);
}
.blok--bleek .belofte { border-left-color: var(--goud-licht); }
.belofte__icoon { color: var(--goud); }
.belofte__icoon .icoon { width: 1.6rem; height: 1.6rem; }
.belofte__titel {
  font-family: var(--kop-schrift);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}
.belofte__tekst { font-size: .9rem; color: var(--zacht); line-height: 1.62; }

/* --- band (beeld naast tekst) --- */

.band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 5vw, 5rem);
  align-items: center;
}
.band > * { min-width: 0; }
.band--beeld-rechts .band__beeld { order: 2; }
.band--beeld-rechts .band__tekst { order: 1; }
.band + .band { margin-top: clamp(2.6rem, 6vw, 5rem); }

.haakjes { display: grid; gap: .7rem; margin-top: 1.7rem; }
.haakjes li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .94rem;
  min-width: 0;
}
.haakjes .icoon { color: var(--goud); margin-top: .35em; width: .95rem; height: .95rem; }
.haakjes--licht .icoon { color: var(--goud-licht); }
.haakjes--licht li { color: rgba(255, 255, 255, .82); }

.prijsregel {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: 1.8rem 0 0;
  padding: 1rem 1.2rem;
  background: var(--bleek);
  border-left: 2px solid var(--goud);
  font-size: .93rem;
}
.blok--bleek .prijsregel { background: var(--ivoor); }
.prijsregel .icoon { color: var(--goud); margin-top: .3em; }
.prijsregel span { min-width: 0; }

.breedbeeld { margin: 0; }
.breedbeeld figcaption {
  margin-top: .9rem;
  font-size: .86rem;
  color: var(--zacht);
  font-style: italic;
}

/* --- cijfers --- */

.cijferband {
  background: var(--espresso);
  color: var(--creme);
  padding-block: clamp(2.4rem, 4.5vw, 3.8rem);
}
.cijfers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 2.5vw, 2.6rem);
}
.cijfer { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.cijfer__waarde {
  display: block;
  font-family: var(--kop-schrift);
  font-size: clamp(2.2rem, 1.3rem + 2.8vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--goud-licht);
  font-variant-numeric: lining-nums tabular-nums;
}
.cijfer__waarde > b { font-weight: 500; }
.cijfer__waarde > i {
  font-family: var(--schrift);
  font-style: normal;
  font-size: .26em;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  margin-left: .45em;
  color: rgba(255, 255, 255, .6);
}
.cijfer__label { font-size: .84rem; color: rgba(255, 255, 255, .68); line-height: 1.45; }

/* --- werkindex --- */

.werkindex { border-top: 1px solid var(--lijn); }
.werkindex__rij { border-bottom: 1px solid var(--lijn); }
.werkindex__rij > a {
  display: grid;
  grid-template-columns: 3.2rem 13rem minmax(0, 1fr) 2.5rem;
  gap: clamp(1rem, 2.6vw, 2.4rem);
  align-items: center;
  padding-block: 1.35rem;
  text-decoration: none;
  transition: background .3s var(--soepel);
}
.werkindex__rij > a:hover { background: var(--bleek); }
.werkindex__rij > a > * { min-width: 0; }
.werkindex__nr {
  font-family: var(--kop-schrift);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--goud);
  font-variant-numeric: lining-nums;
  line-height: 1;
}
.werkindex__beeld {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lijn-zacht);
}
.werkindex__beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--soepel);
}
.werkindex__rij > a:hover .werkindex__beeld img { transform: scale(1.06); }
.werkindex__body { display: flex; flex-direction: column; gap: .18rem; }
.werkindex__titel {
  font-family: var(--kop-schrift);
  font-style: italic;
  font-size: clamp(1.35rem, 1.15rem + .85vw, 1.8rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--leisteen);
}
.werkindex__onder {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--goud);
}
.werkindex__tekst { font-size: .9rem; color: var(--zacht); line-height: 1.6; margin-top: .35rem; }
.werkindex__pijl {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--goud);
}
.werkindex__pijl .icoon { width: 1.4rem; height: 1.4rem; transition: transform .3s var(--soepel); }
.werkindex__rij > a:hover .werkindex__pijl .icoon { transform: translateX(5px); }

/* --- video --- */

.filmblok {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 5vw, 4.6rem);
  align-items: center;
}
.filmblok > * { min-width: 0; }

.videokader {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #191308;
}
.videokader__film { width: 100%; height: 100%; object-fit: cover; display: block; }
.videoknop {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.1rem .6rem .85rem;
  background: rgba(15, 17, 19, .78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s var(--soepel);
}
.videoknop:hover { background: rgba(15, 17, 19, .94); }
.videoknop__driehoek {
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  flex: none;
}
.videoknop[aria-pressed="true"] .videoknop__driehoek {
  width: 10px; height: 11px;
  border: 0;
  background: linear-gradient(to right, #fff 0 3.5px, transparent 3.5px 6.5px, #fff 6.5px 10px);
}

/* --- stappenblok --- */

.stapblok {
  background: var(--espresso-2);
  color: var(--creme);
  padding-block: clamp(3.4rem, 7vw, 6rem);
}
.stapblok__kop { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.stapblok__lead { color: rgba(255, 255, 255, .72); margin: 0; }

.stappen {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
}
.stap {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lijn-donker);
}
.stap__nr {
  display: block;
  font-family: var(--kop-schrift);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--goud-licht);
  margin-bottom: .6rem;
  font-variant-numeric: lining-nums;
}
.stap__titel {
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--creme);
}
.stap__tekst { font-size: .87rem; color: rgba(255, 255, 255, .68); line-height: 1.6; margin: 0; }

/* --- tijdlijn --- */

.tijdlijn { display: grid; }
.tijdlijn__stap {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  padding-block: clamp(1.7rem, 3vw, 2.6rem);
  border-top: 1px solid var(--lijn);
  align-items: start;
}
.tijdlijn__stap:last-child { border-bottom: 1px solid var(--lijn); }
.tijdlijn__nr {
  font-family: var(--kop-schrift);
  font-size: clamp(1.9rem, 1.2rem + 2vw, 2.8rem);
  line-height: 1;
  color: var(--goud);
  font-variant-numeric: lining-nums;
}
.tijdlijn__body { min-width: 0; }
.tijdlijn__titel { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.8rem); margin-bottom: .5rem; }
.tijdlijn__body p { color: var(--zacht); margin: 0; }

/* --- collage --- */

.collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.6rem) clamp(1rem, 2.4vw, 2.2rem);
  align-items: start;
}
.collage__item { margin: 0; min-width: 0; }
.collage__item--a { grid-column: 1 / span 7; }
.collage__item--b { grid-column: 8 / span 5; margin-top: clamp(1.5rem, 5vw, 4.5rem); }
.collage__item--c { grid-column: 3 / span 7; }
.collage__item .kader { aspect-ratio: 4 / 3; }
.collage__item--b .kader { aspect-ratio: 3 / 4; }
.collage__item img { transition: transform .9s var(--soepel); }
.collage__item:hover img { transform: scale(1.04); }
.collage figcaption {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: .95rem;
}
.collage figcaption strong {
  font-family: var(--kop-schrift);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}
.collage figcaption span { font-size: .88rem; color: var(--zacht); line-height: 1.6; }

/* --- houtlijst --- */

.houtlijst { border-top: 1px solid var(--lijn); }
.houtlijst__rij {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 2.1fr) minmax(0, .7fr);
  gap: clamp(.6rem, 2.5vw, 2.6rem);
  align-items: baseline;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--lijn);
}
.houtlijst__rij > span { min-width: 0; }
.houtlijst__naam {
  font-family: var(--kop-schrift);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
}
.houtlijst__tekst { font-size: .92rem; color: var(--zacht); line-height: 1.65; }
.houtlijst__meta { display: flex; flex-direction: column; gap: .2rem; text-align: right; }
.houtlijst__meta em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--goud);
}
.houtlijst__meta > span { font-size: .82rem; color: var(--zacht); }

/* --- kenmerken --- */

.kenmerken {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}
.kenmerk {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--lijn);
}
.blok--bleek .kenmerk { border-top-color: var(--goud-licht); }
.kenmerk__titel {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--kop-schrift);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}
.kenmerk__titel .icoon { color: var(--goud); width: .95rem; height: .95rem; }
.kenmerk__tekst { font-size: .89rem; color: var(--zacht); line-height: 1.6; }

/* --- maatblok --- */

.maatblok {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4.6rem);
  align-items: center;
}
.maatblok > * { min-width: 0; }

.tabelwikkel { overflow-x: auto; margin-top: 1.7rem; }
.matentabel { font-size: .9rem; min-width: 26rem; }
.matentabel th,
.matentabel td {
  text-align: left;
  padding: .82rem .85rem .82rem 0;
  border-bottom: 1px solid var(--lijn);
  vertical-align: top;
}
.matentabel thead th {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--zacht);
  border-bottom-color: var(--espresso);
}
.matentabel tbody th { font-weight: 700; }
.matentabel__maat {
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--goud);
  font-weight: 700;
}

/* --- strook en galerij --- */

.strook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
}
.strook__item,
.project__knop {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  min-width: 0;
  text-align: left;
  overflow: hidden;
}
.strook__item img,
.project__knop img { transition: transform .9s var(--soepel); }
.strook__item:hover img,
.project__knop:hover img { transform: scale(1.05); }

.strook__vergroot,
.project__vergroot {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(15, 17, 19, .72);
  backdrop-filter: blur(4px);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s var(--soepel), transform .25s var(--soepel);
}
.strook__item:hover .strook__vergroot,
.strook__item:focus-visible .strook__vergroot,
.project__knop:hover .project__vergroot,
.project__knop:focus-visible .project__vergroot { opacity: 1; transform: translateY(0); }

.projectraster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.6rem) clamp(1.4rem, 3vw, 3rem);
}
.project { min-width: 0; }
.project:nth-child(even) { margin-top: clamp(0rem, 4vw, 3.5rem); }
.project__knop { margin-bottom: 1.15rem; }
.project__soort {
  margin: 0 0 .35rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--goud);
}
.project__titel { font-size: clamp(1.4rem, 1.15rem + .9vw, 1.85rem); margin-bottom: .45rem; }
.project__tekst { font-size: .9rem; color: var(--zacht); margin: 0; }

/* --- vragen --- */

.vragen { border-top: 1px solid var(--lijn); }
.vraag { border-bottom: 1px solid var(--lijn); }
.vraag__kop { margin: 0; font-size: 1rem; }
.vraag__knop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--kop-schrift);
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.28;
}
.vraag__knop > span:first-child { min-width: 0; }
.vraag__knop:hover { color: var(--goud); }
.vraag__teken {
  position: relative;
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .35rem;
  color: var(--goud);
}
.vraag__teken::before,
.vraag__teken::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--soepel);
}
.vraag__teken::after { transform: rotate(90deg); }
.vraag__knop[aria-expanded="true"] .vraag__teken::after { transform: rotate(0deg); }
.vraag__antwoord { padding: 0 0 1.5rem; max-width: 64ch; }
.vraag__antwoord p { color: var(--zacht); margin: 0; }

/* --- ministappen en contactlijst --- */

.ministappen { display: grid; gap: 1.2rem; margin-bottom: 1.9rem; }
.ministappen li { display: flex; gap: .9rem; min-width: 0; }
.ministappen__nr {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--goud);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  font-variant-numeric: lining-nums;
}
.ministappen__body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; font-size: .89rem; color: var(--zacht); }
.ministappen__titel { font-weight: 700; color: var(--espresso); }

.contactlijst { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
.contactlijst li { display: flex; gap: .9rem; min-width: 0; }
.contactlijst__icoon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--lijn);
  color: var(--goud);
}
.contactlijst__body { display: flex; flex-direction: column; gap: .1rem; min-width: 0; font-size: .95rem; }
.contactlijst__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--zacht);
}
.contactlijst__body a { text-decoration: none; overflow-wrap: anywhere; max-width: 100%; }
.contactlijst__body a:hover { color: var(--goud); text-decoration: underline; }

/* --- gegevenslijst --- */

.gegevens { margin: 0; font-size: .9rem; }
.gegevens dt {
  margin-top: .95rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.gegevens dt:first-child { margin-top: 0; }
.gegevens dd { margin: .12rem 0 0; min-width: 0; color: rgba(255, 255, 255, .86); }
.gegevens dd a {
  text-decoration: none;
  display: inline-block;
  padding-block: .12rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.gegevens dd a:hover { text-decoration: underline; color: var(--goud-licht); }

/* ============================================================== formulieren == */

.contactindeling {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: start;
}
.contactindeling > * { min-width: 0; }
.contactindeling--omgekeerd { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.contactindeling__beeld { margin-top: 1.7rem; }

.formulier__intro { font-size: .93rem; color: var(--zacht); margin-bottom: 1.6rem; }
.formulier__intro a { color: var(--goud); }
.formulier__klein { font-size: .81rem; color: var(--zacht); margin: 1.3rem 0 1.5rem; }

.formulier { margin-top: .5rem; }

.veldgroep {
  border: 0;
  border-top: 1px solid var(--lijn);
  margin: 0 0 1.7rem;
  padding: 1.6rem 0 0;
}
.veldgroep legend {
  padding: 0 .8rem 0 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--goud);
}

.veldrij {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem clamp(.9rem, 2vw, 1.5rem);
}

.veld {
  display: grid;
  align-content: start;
  gap: .38rem;
  margin-bottom: 1.2rem;
  min-width: 0;
}
.veld label {
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: baseline;
}
.veld__ster { color: var(--goud); }
.veld__optie { font-weight: 400; color: var(--zacht); font-size: .76rem; }

.veld input,
.veld select,
.veld textarea {
  width: 100%;
  padding: .82rem .9rem;
  background: var(--ivoor);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  font-size: .95rem;
  line-height: 1.5;
  transition: border-color .2s var(--soepel), box-shadow .2s var(--soepel);
}
.veld textarea { resize: vertical; min-height: 8rem; }
.veld select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235d6c74' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 1rem 1rem;
}
.veld input:focus,
.veld select:focus,
.veld textarea:focus {
  outline: none;
  border-color: var(--goud);
  box-shadow: 0 0 0 3px rgba(138, 101, 41, .15);
}
.veld--fout input,
.veld--fout select,
.veld--fout textarea { border-color: #a3341f; background: #fdf5f2; }

.veld__hulp { margin: 0; font-size: .79rem; color: var(--zacht); line-height: 1.5; }
.veld__fout { margin: 0; font-size: .81rem; font-weight: 700; color: #8e2c19; }

.melding {
  margin: 0 0 1.6rem;
  padding: 1rem 1.15rem;
  font-size: .92rem;
  border-left: 3px solid;
}
.melding--goed { background: #eef3ea; border-color: #4a6b3d; color: #2f4a26; }
.melding--fout { background: #fbeeea; border-color: #a3341f; color: #7a2615; }

/* ================================================================= oproep ==== */

.oproep {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.oproep__beeld { position: absolute; inset: 0; z-index: -2; }
.oproep__beeld img { width: 100%; height: 100%; object-fit: cover; }
.oproep::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 17, 19, .5);
}
.oproep__kaart {
  max-width: 34rem;
  margin-left: auto;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  background: var(--creme);
  box-shadow: var(--schaduw-op);
}
.oproep__titel {
  font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.8rem);
  margin-bottom: .45em;
  max-width: none;
}
.oproep__kaart p { color: var(--zacht); margin: 0; }

/* ================================================================= voettekst == */

.voet {
  background: var(--espresso);
  color: var(--creme);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.voet__boven {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--lijn-donker);
}
.voet__boven > * { min-width: 0; }
.merk--voet { color: #fff; }
.merk--voet .merk__onder { color: rgba(255, 255, 255, .5); }

/* De payoff van het bord, in de letter waarin hij daar ook staat. */
.payoff {
  display: block;
  margin-top: .5rem;
  font-family: var(--payoff-schrift);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .005em;
  color: var(--goud-licht);
}

.voet__pitch {
  font-family: var(--kop-schrift);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.55rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, .8);
  margin: 0;
}

.voet__raster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3.4rem);
  padding-block: clamp(2.2rem, 4.5vw, 3.4rem);
}
.voet__raster > * { min-width: 0; }

.voet__kop {
  font-family: var(--schrift);
  font-style: normal;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.05rem;
}
.voet__lijst { display: grid; gap: .1rem; }
.voet__lijst a {
  display: inline-block;
  padding-block: .3rem;
  font-size: .93rem;
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
}
.voet__lijst a:hover { color: var(--goud-licht); text-decoration: underline; }

.voet__onder {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.4rem;
  border-top: 1px solid var(--lijn-donker);
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}
.voet__onder p { margin: 0; }
.voet__bouwer { letter-spacing: .05em; }
.voet__fiscaal {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1.1rem;
  font-variant-numeric: lining-nums;
}

/* Sociale kanalen, overgenomen van de huidige site. */
.sociaal {
  display: flex;
  gap: .55rem;
  margin-top: 1.4rem;
}
.sociaal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--lijn-donker);
  border-radius: var(--pil);
  color: rgba(255, 255, 255, .84);
  transition: color .25s var(--soepel), border-color .25s var(--soepel), background .25s var(--soepel);
}
.sociaal a:hover {
  color: var(--espresso);
  background: var(--goud-licht);
  border-color: var(--goud-licht);
}
.sociaal .icoon { width: 1.15rem; height: 1.15rem; }

/* ======================================================= zijtab en omhoog ==== */

.zijtab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 54;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: var(--pil) 0 0 var(--pil);
  background: var(--espresso);
  color: var(--goud-licht);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-50%) translateX(0);
  transition: background .25s var(--soepel), color .25s var(--soepel);
  writing-mode: vertical-rl;
}
.zijtab .icoon { width: 1rem; height: 1rem; }
.zijtab:hover { background: #000; color: #fff; }

.omhoog {
  position: fixed;
  right: clamp(.9rem, 2.5vw, 1.8rem);
  bottom: clamp(.9rem, 2.5vw, 1.8rem);
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: var(--pil);
  background: var(--espresso);
  color: #fff;
  box-shadow: var(--schaduw);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--soepel), transform .3s var(--soepel), visibility 0s linear .3s, background .25s var(--soepel);
}
.omhoog.is-zichtbaar { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.omhoog:hover { background: var(--goud-diep); }

/* =================================================================== lichtbak */

.lichtbak {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(22, 16, 10, .94);
  opacity: 0;
  transition: opacity .28s var(--soepel);
}
.lichtbak.aan { opacity: 1; }
.lichtbak__beeld { max-width: min(1100px, 100%); max-height: 100%; object-fit: contain; }
.lichtbak__bijschrift {
  color: rgba(255, 255, 255, .8);
  font-size: .87rem;
  text-align: center;
  max-width: 56ch;
  margin: 0;
}
.lichtbak__sluit {
  position: absolute;
  top: clamp(.7rem, 2vw, 1.4rem);
  right: clamp(.7rem, 2vw, 1.4rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.lichtbak__sluit:hover { background: rgba(255, 255, 255, .22); }

/* ================================================================= animatie == */

.js .onthullen { opacity: 0; transform: translateY(20px); }
.js .onthullen.zichtbaar {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--soepel) var(--vertraag, 0ms),
              transform .8s var(--soepel) var(--vertraag, 0ms);
}

/* ============================================================ media queries === */

@media (max-width: 1100px) {
  .beloftes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stappen { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2.2rem; }
  .kenmerken { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .werkindex__rij > a { grid-template-columns: 2.6rem 10rem minmax(0, 1fr) 2rem; }
  .zijtab { display: none; }
}

@media (max-width: 900px) {
  :root { --kop-hoogte: 66px; }

  .merk,
  .hamburger { position: relative; z-index: 1; }
  .hamburger { display: inline-flex; }

  body.menu-open .kop {
    z-index: 80;
    background: transparent;
    border-color: transparent;
  }

  .nav { position: absolute; width: 0; height: 0; }
  .nav__paneel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 10;
    width: min(23rem, 100vw);
    display: flex;
    flex-direction: column;
    padding: 5.2rem 1.6rem 2rem;
    background: var(--espresso-2);
    border-left: 1px solid rgba(255, 255, 255, .12);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .42s var(--soepel), visibility 0s linear .42s;
  }
  body.menu-open .nav__paneel { transform: none; visibility: visible; transition-delay: 0s; }

  .nav__sluit {
    display: inline-flex;
    position: absolute;
    top: 1.05rem;
    right: 1.1rem;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--pil);
    color: #fff;
  }
  .nav__sluit .icoon { width: 1.15rem; height: 1.15rem; }

  .nav__lijst { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid rgba(255, 255, 255, .11); }
  .nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: var(--kop-schrift);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -.01em;
    text-transform: none;
  }
  .nav__link::after { display: none; }

  /* max-height, niet de grid 0fr/1fr-truc: die sluit alleen de eerste rij. */
  .submenu {
    position: static;
    display: block;
    width: auto;
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--soepel), padding .38s var(--soepel);
  }
  .nav__link--groep[aria-expanded="true"] + .submenu { max-height: 34rem; padding: 0 0 .7rem; }
  .submenu a { padding: .6rem .9rem; background: rgba(255, 255, 255, .06); margin-bottom: .3rem; color: #fff; }
  .submenu a:hover { background: rgba(255, 255, 255, .12); }
  .submenu__naam { color: #fff; }
  .submenu__onder { color: rgba(255, 255, 255, .6); }
  .submenu a[aria-current="page"] .submenu__naam { color: var(--goud-licht); }

  .nav__voet { display: grid; gap: .8rem; margin-top: auto; padding-top: 1.8rem; }
  .nav__contact {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    text-decoration: none;
    color: rgba(255, 255, 255, .74);
    overflow-wrap: anywhere;
  }
  .nav__contact .icoon { color: var(--goud-licht); }

  .pkop { grid-template-columns: minmax(0, 1fr); }
  .pkop__tekst { order: 2; padding-block: clamp(2.2rem, 6vw, 3.4rem); }
  .pkop__binnen { margin-left: 0; max-width: none; padding-right: 0; }
  .pkop__beeld { order: 1; min-height: clamp(220px, 52vw, 340px); }

  .band,
  .filmblok,
  .maatblok,
  .contactindeling,
  .contactindeling--omgekeerd { grid-template-columns: minmax(0, 1fr); }
  .band--beeld-rechts .band__beeld,
  .band--beeld-rechts .band__tekst { order: 0; }
  .contactindeling--omgekeerd .contactindeling__formulier { order: 0; }

  .sectiekop { grid-template-columns: minmax(0, 1fr); align-items: start; }

  /* Gestapeld leest de opsomming beter links uitgelijnd. */
  .manifest__romp { grid-template-columns: minmax(0, 1fr); }
  .werklijst a { justify-content: flex-start; }
  .werklijst a:hover { padding-right: .2rem; padding-left: .6rem; }
  .werklijst__naam { text-align: left; }

  .collage { grid-template-columns: minmax(0, 1fr); }
  .collage__item--a,
  .collage__item--b,
  .collage__item--c { grid-column: 1 / -1; margin-top: 0; }
  .collage__item--b .kader { aspect-ratio: 4 / 3; }

  .werkindex__rij > a { grid-template-columns: 2.4rem minmax(0, 1fr) 1.8rem; }
  .werkindex__beeld { display: none; }

  .houtlijst__rij { grid-template-columns: minmax(0, 1fr); gap: .4rem; }
  .houtlijst__meta { text-align: left; flex-direction: row; gap: .8rem; align-items: baseline; }
  .kader--band { aspect-ratio: 16 / 9; }
  .voet__boven { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 700px) {
  .held { min-height: min(94vh, 680px); }
  .kenmerken,
  .strook,
  .projectraster { grid-template-columns: minmax(0, 1fr); }
  .project:nth-child(even) { margin-top: 0; }
  .stappen { grid-template-columns: minmax(0, 1fr); }
  .veldrij { grid-template-columns: minmax(0, 1fr); }
  .voet__raster { grid-template-columns: minmax(0, 1fr); }
  .tijdlijn__stap { grid-template-columns: 3rem minmax(0, 1fr); gap: 1rem; }
  .oproep__kaart { margin-left: 0; }
}

@media (max-width: 560px) {
  .kop__acties .kop__knop { display: none; }
  .beloftes { grid-template-columns: minmax(0, 1fr); }
  .cijfers { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.7rem; }
  .voet__onder { justify-content: flex-start; }
  .matentabel { min-width: 22rem; }
}

@media (max-width: 400px) {
  :root { --marge: 1.05rem; }
  .merk__onder { letter-spacing: .17em; font-size: .54rem; }
  .beeldmerk--kop { width: 34px; height: 34px; }
  .merk__naam { font-size: .86rem; letter-spacing: .09em; }
  .kop__rij { gap: .6rem; }
  .held__titel { font-size: clamp(2.1rem, 1rem + 5vw, 2.7rem); }
  .cijfer__waarde { font-size: 2rem; }
}

/* -------------------------------------------------------- bewegingsvoorkeur -- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js .onthullen,
  .js .onthullen.zichtbaar {
    opacity: 1 !important;
    transform: none !important;
  }
  .held__beeld { transform: none !important; }
}
