  :root {
    --papier: #F6F1E7;
    --vel: #FFFEFA;
    --inkt: #26221B;
    --zacht: #5C554A;
    --oker: #B97F28;
    --oker-diep: #96690F;
    --groen: #3E7257;
    --rood: #A84A40;
    --lijn: #DCD3C0;
    --schaduw: 0 8px 22px rgba(38,34,27,.13);
  }

  * { margin: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .045 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E"),
      var(--papier);
    color: var(--inkt);
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
  }
  ::selection { background: var(--oker); color: #fff; }

  .wrap { max-width: 74rem; margin: 0 auto; padding: 0 2rem; }
  @media (max-width: 48rem) { .wrap { padding: 0 1.2rem; } }
  .mono { font-family: "IBM Plex Mono", monospace; }

  a:focus-visible, button:focus-visible { outline: 2px solid var(--oker); outline-offset: 2px; }

  /* ---------- kop ---------- */
  header.top { border-bottom: 2px solid var(--inkt); }
  .top-binnen { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; }
  .merk {
    font-weight: 900; font-size: 1.3rem; letter-spacing: -.01em; color: var(--inkt);
    text-decoration: none; display: flex; align-items: center; gap: .5rem;
  }
  .merk svg { width: 1.45em; height: 1.45em; }
  .hoofdmenu { display: flex; gap: 1.5rem; }
  .hoofdmenu a { font-size: .88rem; font-weight: 600; color: var(--inkt); text-decoration: none; }
  .hoofdmenu a:hover { color: var(--oker-diep); }
  @media (max-width: 60rem) { .hoofdmenu { display: none; } }
  .top-cta {
    font-family: "IBM Plex Mono", monospace; font-size: .78rem; font-weight: 600;
    color: var(--inkt); text-decoration: none;
    border: 2px solid var(--inkt); padding: .5rem 1rem;
    transition: background .15s, color .15s;
  }
  .top-cta:hover { background: var(--inkt); color: var(--papier); }

  /* ---------- knoppen ---------- */
  .knop {
    display: inline-block; background: var(--inkt); color: var(--papier);
    font-weight: 800; font-size: .95rem; padding: .95rem 1.7rem;
    text-decoration: none; box-shadow: 4px 4px 0 var(--oker);
    transition: transform .12s, box-shadow .12s;
  }
  .knop:hover { transform: translate(-1px,-1px); box-shadow: 6px 6px 0 var(--oker); }
  .knop:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--oker); }
  .knop.stil { background: transparent; color: var(--inkt); border: 2px solid var(--inkt); box-shadow: none; padding: .82rem 1.55rem; }
  .knop.stil:hover { background: var(--inkt); color: var(--papier); transform: none; }
  .cta-rij { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
  .cta-noot { font-size: .85rem; color: var(--zacht); max-width: 17rem; }

  /* ---------- kickers & koppen ---------- */
  .kicker {
    display: inline-block; font-family: "IBM Plex Mono", monospace;
    font-size: .75rem; font-weight: 600; letter-spacing: .08em;
    border: 1.5px solid var(--inkt); padding: .35rem .7rem; background: var(--papier);
  }
  section { padding: 4.2rem 0 4.6rem; border-top: 2px solid var(--inkt); }
  [hidden] { display: none !important; }
  section h2 {
    font-weight: 900; font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.05; letter-spacing: -.02em; text-wrap: balance;
    margin: 1.3rem 0 1.2rem; max-width: 24ch;
  }
  .onder { position: relative; white-space: nowrap; }
  .onder::after {
    content: ""; position: absolute; left: -1%; right: -1%; bottom: .06em;
    height: .2em; background: var(--oker); z-index: -1; opacity: .5;
  }
  .lopend { max-width: 42rem; }
  .lopend p { color: var(--zacht); font-weight: 500; }
  .lopend p + p { margin-top: .9rem; }
  .lopend strong { color: var(--inkt); }

  /* ---------- hero ---------- */
  .hero { padding: 4rem 0 4.5rem; display: grid; grid-template-columns: 1.12fr .88fr; gap: 4rem; align-items: start; }
  @media (max-width: 56rem) { .hero { grid-template-columns: 1fr; gap: 3rem; } }
  .hero h1 {
    font-weight: 900; font-size: clamp(2.6rem, 5.2vw, 4.2rem);
    line-height: .98; letter-spacing: -.03em; margin-top: 1.6rem;
  }
  .hero .sub { margin-top: 1.5rem; font-size: 1.1rem; color: var(--zacht); font-weight: 500; max-width: 31rem; }
  .hero .sub strong { color: var(--inkt); }
  .hero .cta-rij { margin-top: 2.2rem; }
  .bewijs { margin-top: 2.4rem; display: grid; gap: .5rem; font-size: .95rem; font-weight: 600; }
  .bewijs span::before { content: "■ "; color: var(--oker); font-size: .8em; }

  /* ---------- papieren artefacten ---------- */
  .vel {
    background: var(--vel); box-shadow: var(--schaduw);
    font-family: "IBM Plex Mono", monospace; font-size: .84rem; line-height: 1.5;
  }
  .perfo {
    -webkit-mask-image: radial-gradient(circle at 8px 100%, transparent 7px, #000 7.5px);
    -webkit-mask-size: 16px 100%; -webkit-mask-repeat: repeat-x;
    mask-image: radial-gradient(circle at 8px 100%, transparent 7px, #000 7.5px);
    mask-size: 16px 100%; mask-repeat: repeat-x;
  }
  .stempel {
    font-family: "Archivo", sans-serif; font-weight: 900; letter-spacing: .12em;
    border-radius: 6px; padding: .4rem .95rem; display: inline-block;
    background: rgba(255,254,250,.55);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 1 1 1 1 1 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='120' height='60' filter='url(%23r)'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 1 1 1 1 1 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='120' height='60' filter='url(%23r)'/%3E%3C/svg%3E");
  }
  .stempel.groen { color: var(--groen); border: 3px solid var(--groen); }
  .stempel.oker { color: var(--oker-diep); border: 3px solid var(--oker-diep); }

  /* werkbon hero */
  .bon-vlak { position: relative; padding-top: 1rem; }
  .bon { transform: rotate(-1.4deg); padding: 1.5rem 1.6rem 2.3rem; position: relative; }
  .bon-kop { display: flex; justify-content: space-between; border-bottom: 2px solid var(--inkt); padding-bottom: .55rem; font-weight: 600; }
  .bon table { width: 100%; border-collapse: collapse; margin-top: .85rem; }
  .bon td { padding: .32rem 0; vertical-align: top; border-bottom: 1px dashed var(--lijn); }
  .bon td:first-child { width: 4rem; color: #9A9077; }
  .bon .wij { color: var(--groen); font-weight: 600; }
  .bon .stempel { position: absolute; right: 1.1rem; bottom: .8rem; transform: rotate(-8deg); font-size: 1.05rem; }
  .bon-noot { margin-top: 1rem; font-size: .78rem; color: #9A9077; transform: rotate(-1.4deg); }

  /* kiekjes */
  .kiekje {
    position: relative; background: var(--vel); padding: .55rem .55rem 2rem;
    box-shadow: var(--schaduw);
  }
  .kiekje img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.92) contrast(1.02); }
  .kiekje figcaption { position: absolute; left: .7rem; right: .7rem; bottom: .45rem; font-family: "IBM Plex Mono", monospace; font-size: .72rem; color: #7A7261; white-space: nowrap; overflow: hidden; }
  .kiekje::before {
    content: ""; position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%) rotate(-3deg);
    width: 5.2rem; height: 1.35rem; background: rgba(212,200,168,.65);
    box-shadow: inset 0 0 4px rgba(120,110,85,.35); z-index: 2;
  }

  /* ---------- 01 werkdag ---------- */
  .dagbalken { margin-top: 2.8rem; font-family: "IBM Plex Mono", monospace; }
  .balk-tijden { position: relative; height: 1.1rem; margin-left: 5.5rem; margin-bottom: .4rem; font-size: .7rem; color: var(--zacht); }
  .balk-tijden span { position: absolute; top: 0; transform: translateX(-50%); }
  .balk-tijden span:nth-child(1) { left: 0; transform: none; }
  .balk-tijden span:nth-child(2) { left: 20%; }
  .balk-tijden span:nth-child(3) { left: 40%; }
  .balk-tijden span:nth-child(4) { left: 60%; }
  .balk-tijden span:nth-child(5) { left: 80%; }
  .balk-tijden span:nth-child(6) { left: auto; right: 0; transform: none; }
  .balk-rij { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; align-items: center; }
  .balk-rij.nu { margin-bottom: 2.8rem; }
  .balk-rij.straks { margin-bottom: 4.2rem; }
  .balk-naam { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--zacht); text-align: right; }
  .balk { display: flex; gap: 2px; height: 2.1rem; }
  .seg { position: relative; display: block; }
  .seg.bouw { background: #C9C4B4; }
  .seg.rood { background: #CE7A70; }
  .seg.groen { background: #79A88B; }
  .seg.vrij { background: transparent; border: 1px dashed var(--lijn); }
  .seg.ruimte { background: #EFE3C8; border: 1px dashed var(--oker); }
  .seg-tekst { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .68rem; color: #4A443A; white-space: nowrap; overflow: hidden; }
  .seg.vrij .seg-tekst { color: var(--zacht); }
  .seg.ruimte .seg-tekst { color: var(--oker-diep); font-weight: 600; }
  .seg-label { position: absolute; top: calc(100% + .35rem); left: 50%; transform: translateX(-50%); font-size: .68rem; color: var(--groen); font-weight: 600; white-space: nowrap; }
  .seg-label.laag2 { top: calc(100% + 1.3rem); }
  .seg-label.laag3 { top: calc(100% + 2.25rem); }
  .seg-label.rechts { left: auto; right: 0; transform: none; }
  .seg-label.rood { color: var(--rood); }
  .seg-tekst .kort { display: none; }
  .balk-mobiel { display: none; }
  .balk-winst {
    margin-left: 5.5rem; font-family: "Archivo", sans-serif;
    border-left: 4px solid var(--oker); padding: .2rem 0 .2rem 1.2rem;
    font-size: .95rem; color: var(--zacht); font-weight: 500; max-width: 44rem;
  }
  .balk-winst strong { color: var(--inkt); }
  @media (max-width: 880px) {
    .seg-label { display: none; }
    .balk-rij { grid-template-columns: 3rem 1fr; gap: .6rem; }
    .balk-tijden, .balk-winst { margin-left: 3.6rem; }
    .balk-rij.nu { margin-bottom: .9rem; }
    .balk-rij.straks { margin-bottom: 1rem; }
    .seg-tekst .lang { display: none; }
    .seg-tekst .kort { display: inline; }
    .balk-mobiel { display: block; margin: 0 0 1.4rem 3.6rem; font-size: .85rem; color: var(--zacht); font-family: "Archivo", sans-serif; }
  }

  /* kiekjes-strook onder werkdag */
  .kiekjes-rij { margin-top: 3.4rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 21rem)); gap: 2.2rem; align-items: start; }
  @media (max-width: 52rem) { .kiekjes-rij { grid-template-columns: 1fr; max-width: 22rem; } }
  .kiekjes-rij .kiekje:nth-child(1) { transform: rotate(-1.6deg); }
  .kiekjes-rij .kiekje:nth-child(2) { transform: rotate(1.1deg); margin-top: 1.2rem; }
  .kiekjes-rij .kiekje:nth-child(3) { transform: rotate(-.7deg); }
  @media (max-width: 52rem) { .kiekjes-rij .kiekje { margin-top: 0 !important; } }
  .kiekje.volgt .vak {
    aspect-ratio: 4/3; border: 2px dashed var(--lijn); background: var(--papier);
    display: grid; place-content: center; gap: .4rem; text-align: center; padding: 1rem;
    font-family: "IBM Plex Mono", monospace; font-size: .78rem; color: #9A9077;
  }
  .kiekje.volgt .vak b { color: var(--zacht); font-weight: 600; letter-spacing: .08em; }

  /* ---------- 02 diensten: taakkaartjes ---------- */
  .taken { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.8rem; }
  @media (max-width: 56rem) { .taken { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 38rem) { .taken { grid-template-columns: 1fr; } }
  .taak {
    background: var(--vel); box-shadow: var(--schaduw);
    padding: 1.3rem 1.4rem 1.5rem; position: relative;
  }
  .taak:nth-child(odd) { transform: rotate(-.5deg); }
  .taak:nth-child(even) { transform: rotate(.5deg); }
  .taak .t-kop {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: "IBM Plex Mono", monospace; font-size: .7rem; color: #9A9077;
    border-bottom: 1.5px solid var(--inkt); padding-bottom: .45rem; margin-bottom: .7rem;
  }
  .taak .t-kop .vink { color: var(--groen); font-weight: 600; }
  .taak h3 { font-weight: 800; font-size: 1.08rem; letter-spacing: -.01em; margin-bottom: .4rem; }
  .taak p { font-size: .9rem; color: var(--zacht); font-weight: 500; }
  .taak .werktmet { display: block; margin-top: .6rem; font-family: "IBM Plex Mono", monospace; font-size: .7rem; color: #9A9077; }
  .taken-noot { margin-top: 1.8rem; font-size: .92rem; color: var(--zacht); font-weight: 500; }
  .taken-noot strong { color: var(--inkt); }
  .cta-rij.midden { margin-top: 2.2rem; }

  /* meerwerk-artefact */
  .meerwerk-demo { margin-top: 3.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 60rem; }
  @media (max-width: 52rem) { .meerwerk-demo { grid-template-columns: 1fr; } }
  .app-bericht {
    background: var(--vel); box-shadow: var(--schaduw); transform: rotate(-.8deg);
    padding: 1.2rem 1.4rem; font-family: "IBM Plex Mono", monospace; font-size: .84rem;
  }
  .app-bericht .van { font-size: .7rem; color: #9A9077; margin-bottom: .5rem; }
  .app-bericht .ballon {
    background: #EFE8D8; padding: .7rem .9rem; border-radius: 8px 8px 8px 2px;
    font-family: "Archivo", sans-serif; font-weight: 500; font-size: .92rem;
  }
  .app-bericht .tijd { text-align: right; font-size: .68rem; color: #9A9077; margin-top: .3rem; }
  .bevestiging { position: relative; transform: rotate(1deg); padding: 1.4rem 1.5rem 2.2rem; }
  .bevestiging .b-kop { display: flex; justify-content: space-between; border-bottom: 2px solid var(--inkt); padding-bottom: .5rem; font-weight: 600; }
  .bevestiging dl { margin-top: .8rem; display: grid; grid-template-columns: auto 1fr; gap: .25rem .9rem; }
  .bevestiging dt { color: #9A9077; }
  .bevestiging dd { margin: 0; }
  .bevestiging .stempel { position: absolute; right: 1rem; bottom: .7rem; transform: rotate(-7deg); font-size: .95rem; }
  @media (max-width: 52rem) { .bevestiging { padding-bottom: 3.8rem; } }
  .demo-pijl { font-family: "IBM Plex Mono", monospace; font-size: .78rem; color: var(--zacht); margin: 1rem 0; }
  .demo-pijl b { color: var(--oker-diep); }

  /* ---------- 03 prijzen ---------- */
  .prijzen { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: start; }
  @media (max-width: 62rem) { .prijzen { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 40rem) { .prijzen { grid-template-columns: 1fr; max-width: 26rem; } }
  .prijs { padding: 1.4rem 1.4rem 2rem; position: relative; }
  .prijs:nth-child(1) { transform: rotate(-.6deg); }
  .prijs:nth-child(2) { transform: rotate(.4deg); }
  .prijs:nth-child(3) { transform: rotate(-.3deg); }
  .prijs:nth-child(4) { transform: rotate(.5deg); }
  .maatwerk {
    margin-top: 2.4rem; padding: 1.6rem 1.8rem; display: flex; gap: 2rem;
    align-items: center; justify-content: space-between; flex-wrap: wrap;
    transform: rotate(-.25deg);
  }
  .maatwerk .m-tekst { max-width: 46rem; }
  .maatwerk h3 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: .35rem; }
  .maatwerk p { font-family: "Archivo", sans-serif; font-size: .93rem; color: var(--zacht); font-weight: 500; }
  .prijs .naam { font-family: "IBM Plex Mono", monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #9A9077; border-bottom: 2px solid var(--inkt); padding-bottom: .5rem; }
  .prijs .bedrag { font-weight: 900; font-size: 2.3rem; letter-spacing: -.02em; margin-top: .8rem; font-variant-numeric: tabular-nums; }
  .prijs .bedrag span { font-family: "IBM Plex Mono", monospace; font-size: .75rem; font-weight: 400; color: #9A9077; letter-spacing: 0; }
  .prijs ul { list-style: none; padding: 0; margin-top: .9rem; display: grid; gap: .45rem; font-size: .88rem; color: var(--zacht); font-family: "IBM Plex Mono", monospace; }
  .prijs li::before { content: "✓ "; color: var(--groen); font-weight: 600; }
  .prijs li.erbij { color: var(--inkt); font-weight: 600; }
  .prijs .tag { margin-top: 1rem; font-size: .82rem; color: var(--zacht); font-weight: 500; }
  .prijs .stempel { position: absolute; right: 1rem; top: 1.05rem; transform: rotate(-5deg); font-size: .78rem; }
  .prijs-noot { margin-top: 2.2rem; font-size: .92rem; color: var(--zacht); font-weight: 500; max-width: 46rem; }
  .prijs-noot strong { color: var(--inkt); }

  /* ---------- 04 stappen ---------- */
  .stappen { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 62rem; }
  @media (max-width: 52rem) { .stappen { grid-template-columns: 1fr; } }
  .stap { border: 2px solid var(--inkt); background: var(--vel); padding: 1.3rem 1.4rem 1.5rem; }
  .stap .s-nr {
    font-family: "IBM Plex Mono", monospace; font-size: .7rem; font-weight: 600;
    letter-spacing: .1em; color: var(--papier); background: var(--inkt);
    display: inline-block; padding: .25rem .6rem; margin-bottom: .8rem;
  }
  .stap h3 { font-weight: 800; font-size: 1.08rem; margin-bottom: .4rem; }
  .stap p { font-size: .9rem; color: var(--zacht); font-weight: 500; }

  /* ---------- 05 vergelijk ---------- */
  .vergelijk-scroll { overflow-x: auto; margin-top: 2.6rem; }
  .vergelijk {
    width: 100%; border-collapse: collapse; font-size: .9rem;
    background: var(--vel); box-shadow: var(--schaduw);
  }
  .vergelijk th {
    text-align: left; font-family: "IBM Plex Mono", monospace; font-size: .7rem;
    letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
    color: var(--zacht); padding: .9rem 1.1rem; border-bottom: 2px solid var(--inkt);
  }
  .vergelijk th.hb { color: var(--oker-diep); }
  .vergelijk td { padding: .85rem 1.1rem; border-bottom: 1px dashed var(--lijn); vertical-align: top; color: var(--zacht); font-weight: 500; }
  .vergelijk td:first-child { font-weight: 700; color: var(--inkt); white-space: nowrap; }
  .vergelijk td:last-child { color: var(--inkt); }
  .vergelijk tr:last-child td { border-bottom: none; }
  .duiding-zin { margin-top: 1.6rem; font-weight: 800; font-size: 1.1rem; }
  .duiding-zin .onder::after { opacity: .4; }

  /* ---------- 06 petten ---------- */
  .petten { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; max-width: 44rem; }
  .pet {
    font-family: "IBM Plex Mono", monospace; font-size: .78rem;
    padding: .35rem .8rem; border: 1.5px solid var(--lijn);
    background: var(--vel); color: var(--zacht);
  }
  .pet.blijft { border-color: var(--oker); color: var(--oker-diep); font-weight: 600; background: #F5EDDD; }

  /* ---------- 07 verdeling ---------- */
  .twee-kolom { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.6rem; max-width: 60rem; }
  @media (max-width: 46rem) { .twee-kolom { grid-template-columns: 1fr; } }
  .kolom { padding: 1.5rem 1.7rem 1.7rem; }
  .kolom.zwart { background: var(--inkt); color: var(--papier); transform: rotate(-.4deg); box-shadow: var(--schaduw); }
  .kolom.wit { background: var(--vel); box-shadow: var(--schaduw); transform: rotate(.4deg); }
  .kolom h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: .9rem; display: flex; align-items: baseline; gap: .6rem; }
  .kolom h3 .mono-tag { font-family: "IBM Plex Mono", monospace; font-size: .68rem; font-weight: 600; letter-spacing: .1em; color: var(--oker); }
  .kolom ul { list-style: none; padding: 0; display: grid; gap: .5rem; font-size: .93rem; font-weight: 500; }
  .kolom.zwart ul { color: rgba(246,241,231,.85); }
  .kolom.wit ul { color: var(--zacht); }
  .kolom li::before { content: "— "; color: var(--oker); }

  /* ---------- 08 voor wie ---------- */
  .voorwie-blok {
    margin-top: 2.6rem; background: var(--inkt); color: var(--papier);
    padding: 2.8rem 2.8rem 3rem; box-shadow: var(--schaduw);
  }
  @media (max-width: 56rem) { .voorwie-blok { padding: 2rem 1.4rem; } }
  .voorwie-blok .kicker { border-color: var(--oker); color: var(--oker); background: transparent; }
  .voorwie-blok h2 { color: var(--papier); }
  .voorwie-blok p { color: rgba(246,241,231,.8); font-weight: 500; max-width: 36rem; }
  .voorwie-blok .visie { margin-top: 1.3rem; font-weight: 800; color: var(--papier); font-size: 1.1rem; }
  .voorwie-blok .kiekje { transform: rotate(1.6deg); }
  .voorwie-blok .kiekje figcaption { color: #7A7261; }

  /* ---------- 09 formulier ---------- */
  .formulier { margin-top: 2.6rem; max-width: 46rem; display: grid; gap: 1.6rem; }
  .formulier fieldset { border: none; padding: 0; margin: 0; }
  .formulier legend { font-weight: 800; font-size: 1rem; color: var(--inkt); margin-bottom: .7rem; padding: 0; }
  .pilrij .pil {
    display: inline-flex; align-items: center; gap: .45rem;
    border: 1.5px solid var(--lijn); background: var(--vel);
    padding: .5rem 1rem; margin: 0 .5rem .5rem 0;
    font-size: .92rem; font-weight: 500; cursor: pointer; min-height: 44px;
    transition: border-color .15s, background .15s;
  }
  .pilrij .pil input { accent-color: var(--oker); width: 1rem; height: 1rem; }
  .pilrij .pil:has(input:checked) { border-color: var(--inkt); background: #F5EDDD; font-weight: 700; }
  .pilrij .pil:focus-within { outline: 2px solid var(--oker); outline-offset: 2px; }
  .veld { display: grid; gap: .35rem; font-weight: 700; color: var(--inkt); font-size: .92rem; }
  .veld .optioneel { font-weight: 400; color: var(--zacht); }
  .formulier input[type="text"], .formulier input[type="email"], .formulier input[type="tel"], .formulier textarea {
    font: inherit; font-weight: 400; color: var(--inkt);
    background: var(--vel); border: 1.5px solid var(--lijn);
    padding: .7rem .8rem; width: 100%; min-height: 44px;
  }
  .formulier textarea { min-height: 5.5rem; resize: vertical; }
  .formulier input:focus, .formulier textarea:focus { outline: 2px solid var(--oker); outline-offset: 1px; border-color: var(--oker); }
  .veldrij { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 40rem) { .veldrij { grid-template-columns: 1fr; } }
  .formulier button { border: none; cursor: pointer; font: inherit; justify-self: start; }
  .formulier button[disabled] { opacity: .6; cursor: default; }
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .formulier-micro { font-size: .85rem; color: var(--zacht); }
  .formulier-micro a { color: var(--inkt); }
  .formulier-fout { font-size: .92rem; color: var(--rood); border-left: 3px solid #CE7A70; padding: .3rem 0 .3rem 1rem; }
  .formulier-fout a { color: var(--rood); }
  .formulier-klaar { margin-top: 2.4rem; max-width: 40rem; background: var(--vel); box-shadow: var(--schaduw); padding: 1.5rem 1.7rem; transform: rotate(-.4deg); }
  .formulier-klaar h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: .3rem; }
  .formulier-klaar p { color: var(--zacht); font-weight: 500; }

  /* ---------- voet ---------- */
  footer { border-top: 2px solid var(--inkt); padding: 2.4rem 0 3rem; color: var(--zacht); font-size: .9rem; font-weight: 500; }
  .voet-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
  .voet-kop { font-weight: 800; color: var(--inkt); margin-bottom: .3rem; }
  footer a { color: var(--inkt); }
  .voet-mono { font-family: "IBM Plex Mono", monospace; font-size: .75rem; margin-top: 2rem; color: #9A9077; }
  .voet-social { display: flex; gap: .9rem; margin-top: .8rem; }
  .voet-social a { color: var(--inkt); display: inline-flex; }
  .voet-social a:hover { color: var(--oker-diep); }
  .voet-social svg { width: 1.25rem; height: 1.25rem; }

  /* ---------- binnenkomst ---------- */
  @media (prefers-reduced-motion: no-preference) {
    .hero > div:first-child > * { animation: op .6s ease-out both; }
    .hero > div:first-child > *:nth-child(2) { animation-delay: .06s; }
    .hero > div:first-child > *:nth-child(3) { animation-delay: .12s; }
    .hero > div:first-child > *:nth-child(4) { animation-delay: .18s; }
    .hero > div:first-child > *:nth-child(5) { animation-delay: .24s; }
    .bon-vlak { animation: op .6s ease-out .2s both; }
    @keyframes op { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  }

/* ---------- taalwissel (NL ↔ EN) ---------- */
.taal-wissel {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: "IBM Plex Mono", monospace; font-size: .78rem; font-weight: 600;
  color: var(--inkt); text-decoration: none;
}
.taal-wissel:hover { color: var(--oker-diep); }
.taal-wissel svg { width: 1.15rem; height: auto; display: block; border: 1px solid var(--lijn); }
.top-rechts { display: flex; align-items: center; gap: 1.1rem; }
