/* FAB28 — huisstijl (briefing): goud #D99E38 · bordeaux #431013 · crème #EDE8E4
   accenten #00503B / #C67994 / #439A44 · Myriad (koppen) · Poppins (tekst).
   Signatuur: het streepmotief uit de "28" van het logo + de tagline-stippen.
   Ruim en groot gezet: ouderen zijn een kerndoelgroep. */

:root {
  --goud: #D99E38;
  --goud-donker: #B47F21;
  --bordeaux: #431013;
  --creme: #EDE8E4;
  --groen-diep: #00503B;
  --roze: #C67994;
  --groen-fris: #439A44;
  --ink: #33201A;
  --muted: #6E5A50;
  --wit: #FFFFFF;
  --lijn: #DCD2C7;
  --accent: var(--goud);          /* per pagina overschreven */
  --accent-zacht: #F6EBD6;
  --font-display: "Myriad Pro", Myriad, "Frutiger", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --schaduw: 0 1px 2px rgba(67,16,19,.05), 0 14px 34px -22px rgba(67,16,19,.25);
}
/* accentkleur per pagina — zoals het paginastructuur-schema elke pagina
   een eigen kleur geeft */
.pagina--home,
.pagina--fab28        { --accent: var(--goud);       --accent-zacht: #F6EBD6; }
.pagina--jumpstart    { --accent: var(--groen-fris); --accent-zacht: #E4F1E4; }
.pagina--dagbesteding { --accent: var(--groen-diep); --accent-zacht: #DEEAE6; }
.pagina--lunch        { --accent: var(--roze);       --accent-zacht: #F7E7EC; }
.pagina--activiteiten { --accent: var(--goud);       --accent-zacht: #F6EBD6; }
.pagina--zaalverhuur  { --accent: var(--groen-diep); --accent-zacht: #DEEAE6; }
.pagina--contact      { --accent: var(--roze);       --accent-zacht: #F7E7EC; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;               /* 18px basis — goed leesbaar */
  line-height: 1.7;
  color: var(--ink);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--bordeaux);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--bordeaux); text-underline-offset: 3px; }
a:hover { color: var(--goud-donker); }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--goud-donker); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Signatuur: streepmotief uit de "28" ---------- */
.strepen {
  height: 10px; width: 96px; border-radius: 999px; margin: .2rem 0 1.4rem;
  background: repeating-linear-gradient(90deg,
    var(--accent) 0 6px, transparent 6px 12px);
}
.strepen--bordeaux { background: repeating-linear-gradient(90deg, var(--bordeaux) 0 6px, transparent 6px 12px); }
/* grote gestreepte "28" als decoratie in de hero */
.hero__28 {
  font-family: var(--font-display); font-weight: 900; line-height: .8;
  font-size: clamp(9rem, 22vw, 17rem); letter-spacing: -.04em;
  background: repeating-linear-gradient(180deg, var(--bordeaux) 0 5px, transparent 5px 10px);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .16; user-select: none; pointer-events: none;
}
/* tagline met de drie stippen */
.tagline { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .95rem; color: var(--bordeaux); }
.tagline i { width: .55em; height: .55em; border-radius: 50%; display: inline-block; }
.tagline i:nth-of-type(1) { background: var(--goud); }
.tagline i:nth-of-type(2) { background: var(--roze); }
.tagline i:nth-of-type(3) { background: var(--groen-fris); }

/* ---------- Header ---------- */
.top { background: var(--wit); position: sticky; top: 0; z-index: 50; }
/* het streepmotief als gouden accentlijn onder de header */
.top::after { content: ""; display: block; height: 5px;
  background: repeating-linear-gradient(90deg, var(--goud) 0 14px, var(--bordeaux) 14px 18px); }
.top__in { display: flex; align-items: center; gap: 1rem; padding: .7rem 1.25rem; max-width: 1200px; margin: 0 auto; }
.top__logo { flex-shrink: 0; }
.top__logo img { height: 40px; width: auto; max-width: none; display: block; }
.top__nav { display: flex; gap: .1rem; flex-wrap: wrap; margin-left: auto; }
.top__nav a {
  text-decoration: none; font-weight: 500; font-size: 1rem; color: var(--ink);
  padding: .5rem .75rem; border-radius: 999px; transition: background .15s, color .15s;
}
.top__nav a:hover { background: var(--creme); color: var(--bordeaux); }
.top__nav a[aria-current="page"] { background: var(--bordeaux); color: var(--wit); }
.top__acties { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.top__acties .btn { padding: .55rem 1.2rem; font-size: .95rem; white-space: nowrap; }
.taal { display: inline-flex; border: 1px solid var(--lijn); border-radius: 999px; overflow: hidden; font-size: .85rem; }
.taal a { text-decoration: none; padding: .3rem .65rem; color: var(--muted); font-weight: 600; }
.taal a.aan { background: var(--bordeaux); color: var(--wit); }
.zoekknop { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--lijn); background: var(--wit); text-decoration: none; font-size: 1.1rem; }
.zoekknop:hover { background: var(--creme); }
.menuknop { display: none; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: 0;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  background: var(--goud); color: var(--wit);
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--goud-donker); color: var(--wit); }
.btn:active { transform: translateY(1px); }
.btn--bordeaux { background: var(--bordeaux); }
.btn--bordeaux:hover { background: #5c1a1e; }
.btn--groen { background: var(--groen-diep); }
.btn--groen:hover { background: #00614a; }
.btn--ghost { background: transparent; color: var(--bordeaux); border: 2px solid var(--bordeaux); }
.btn--ghost:hover { background: var(--bordeaux); color: var(--wit); }
.btn--groot { font-size: 1.2rem; padding: 1.1rem 2.2rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 4rem; }
/* warme, gelaagde sfeer (i.p.v. klinisch vlak crème) */
.hero--warm {
  background:
    radial-gradient(46rem 30rem at 88% -12%, rgba(217,158,56,.28), transparent 62%),
    radial-gradient(38rem 26rem at -8% 112%, rgba(198,121,148,.20), transparent 60%),
    radial-gradient(30rem 22rem at 55% 120%, rgba(67,154,68,.12), transparent 55%),
    linear-gradient(180deg, #F4EFE9, var(--creme));
}
/* met sfeerfoto('s) (album 'Hero' in het beheer): de originele foto zonder
   kleuroverlay, hoog fotovlak, tekst met schaduw voor de leesbaarheid;
   meerdere foto's vloeien rustig in elkaar over (slider) */
.hero--foto { background: var(--bordeaux); min-height: 82vh; padding: 5.5rem 0 3.5rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 3rem; }
.hero__dia { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; }
.hero__dia.aan { opacity: 1; }
.hero--foto .hero__duo { position: relative; z-index: 2; }
.hero--foto .hero__in { position: relative; z-index: 2; }
/* de twee hoofdblokken op de foto */
.hero--foto .duo { position: relative; z-index: 2; margin: 0; }
.hero--warm .duo { margin: 3rem 0 0; }
@media (prefers-reduced-motion: reduce) { .hero__dia { transition: none; } }
.hero--foto h1 { color: var(--wit); text-shadow: 0 2px 6px rgba(45,10,12,.75), 0 4px 26px rgba(45,10,12,.55); }
.hero--foto p.sub { color: var(--wit); text-shadow: 0 1px 4px rgba(45,10,12,.85);
  background: rgba(45,10,12,.68); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: .7rem 1.1rem; border-radius: 14px; width: fit-content; }
.hero--foto .tagline { color: var(--wit); }
.hero--foto .strepen { background: repeating-linear-gradient(90deg, var(--goud) 0 6px, transparent 6px 12px); }
.hero--foto .btn--ghost { color: var(--wit); border-color: var(--wit); }
.hero--foto .btn--ghost:hover { background: var(--wit); color: var(--bordeaux); }
.hero__in { position: relative; z-index: 1; max-width: 720px; }
.hero__decor { position: absolute; right: -1rem; bottom: -2.5rem; z-index: 0; }
.hero p.sub { font-size: 1.3rem; color: var(--muted); max-width: 34em; }
.hero .knoppen { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
/* home: tekst links, "Vandaag bij FAB28" rechts */
.hero__duo { display: flex; gap: 3rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.hero__duo .hero__in { flex: 1 1 420px; }
.vandaag { flex: 0 1 360px; background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius);
  box-shadow: var(--schaduw); overflow: hidden; position: relative; z-index: 1; }
.vandaag__kop { background: var(--bordeaux); color: var(--wit); padding: .9rem 1.3rem .8rem; }
.vandaag__kop b { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .01em; }
.vandaag__kop .strepen { margin: .45rem 0 0; height: 6px; width: 72px;
  background: repeating-linear-gradient(90deg, var(--goud) 0 5px, transparent 5px 10px); }
.vandaag ul { list-style: none; margin: 0; padding: .5rem 0; }
.vandaag li { display: flex; gap: .9rem; padding: .6rem 1.3rem; align-items: baseline; }
.vandaag li + li { border-top: 1px dashed var(--lijn); }
.vandaag time { font-family: var(--font-display); font-weight: 800; color: var(--goud-donker);
  font-size: .95rem; white-space: nowrap; min-width: 4.6rem; }
.vandaag li span { font-size: 1rem; }
.vandaag__voet { display: block; padding: .8rem 1.3rem 1rem; font-weight: 600; border-top: 1px solid var(--lijn); }
/* rustige opkomst van de hero — één keer, en alleen zonder reduced motion */
@media (prefers-reduced-motion: no-preference) {
  @keyframes opkomst { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  .hero__in > * { animation: opkomst .55s ease both; }
  .hero__in > *:nth-child(2) { animation-delay: .08s; }
  .hero__in > *:nth-child(3) { animation-delay: .16s; }
  .hero__in > *:nth-child(4) { animation-delay: .24s; }
  .hero__in > *:nth-child(5) { animation-delay: .32s; }
  .vandaag { animation: opkomst .55s ease .3s both; }
}

/* ---------- Drie pijlers: Ontmoet · Ontwikkel · Groei ---------- */
.pijlers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1.6rem; }
.pijler { background: var(--creme); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.3rem; }
.pijler i { display: block; width: .9rem; height: .9rem; border-radius: 50%; margin-bottom: .8rem; }
.pijler--ontmoet i { background: var(--goud); }
.pijler--ontwikkel i { background: var(--roze); }
.pijler--groei i { background: var(--groen-fris); }
.pijler h3 { margin-bottom: .35rem; }
.pijler p { font-size: 1rem; margin-bottom: .6rem; }
.pijler a { font-weight: 600; }

/* twee hoofdbuttons op de homepage */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 0 0 3rem; }
.duo a {
  display: block; text-decoration: none; border-radius: var(--radius);
  padding: 1.9rem 1.9rem 1.6rem; color: var(--wit); box-shadow: var(--schaduw);
  transition: transform .15s, box-shadow .15s;
}
.duo a:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -20px rgba(67,16,19,.4); color: var(--wit); }
.duo a h2 { color: var(--wit); margin-bottom: .35rem; }
.duo a p { margin: 0 0 .8rem; opacity: .92; }
.duo a span { font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.duo--fab28 { background: linear-gradient(135deg, var(--goud), var(--goud-donker)); }
.duo--jumpstart { background: linear-gradient(135deg, var(--groen-fris), var(--groen-diep)); }

/* ---------- Secties & kaarten ---------- */
.sectie { padding: 3.2rem 0; }
.sectie--wit { background: var(--wit); }
.sectie__kop { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sectie__kop .alles { font-weight: 600; white-space: nowrap; }
.kaarten { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 1.2rem; }
.kaart {
  background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem; box-shadow: var(--schaduw); display: flex; flex-direction: column;
}
.sectie--wit .kaart { background: var(--creme); }
.kaart h3 { margin-bottom: .3rem; }
.kaart .meta { font-size: .95rem; color: var(--muted); margin-bottom: .6rem; }
.kaart p { font-size: 1rem; margin-bottom: .4rem; }
.kaart .prijs { margin-top: auto; font-weight: 700; color: var(--bordeaux); font-size: 1rem; }
.chip {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  color: var(--wit); border-radius: 999px; padding: .18rem .7rem; margin-bottom: .55rem;
}

/* agenda: ruime rijen met een duidelijk datumblok */
.agenda-lijst { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.ev-rij {
  display: flex; gap: 1.7rem; align-items: flex-start; flex-wrap: wrap;
  background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius);
  padding: 1.4rem 1.7rem; box-shadow: var(--schaduw);
}
.sectie--wit .ev-rij { background: var(--creme); }
.ev-rij__datum {
  flex: 0 0 auto; text-align: center; background: var(--bordeaux); color: var(--wit);
  border-radius: 16px; padding: .8rem 1.15rem .7rem; min-width: 6rem;
}
.ev-rij__datum small { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--goud); font-weight: 700; }
.ev-rij__datum b { display: block; font-size: 2.3rem; line-height: 1.05; font-family: var(--font-display); font-weight: 800; }
.ev-rij__datum span { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.ev-rij__body { flex: 1 1 20rem; }
.ev-rij__body h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.ev-rij__meta { font-size: 1rem; color: var(--muted); margin: 0 0 .5rem; }
.ev-rij__body > p { font-size: 1.02rem; margin-bottom: .3rem; }
.ev-rij__prijs {
  align-self: center; flex: 0 0 auto; background: var(--accent-zacht); color: var(--bordeaux);
  border-radius: 999px; padding: .45rem 1.1rem; font-weight: 700; font-size: 1rem; white-space: nowrap;
}
@media (max-width: 640px) { .ev-rij { gap: 1.1rem; } .ev-rij__prijs { align-self: flex-start; } }

/* ---------- Activiteiten-week ---------- */
.filter { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.2rem 0 1.6rem; }
.filter button {
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer;
  border: 2px solid var(--lijn); background: var(--wit); color: var(--ink);
  border-radius: 999px; padding: .45rem 1.1rem; transition: border-color .15s, background .15s;
}
.filter button:hover { border-color: var(--bordeaux); }
.filter button.aan { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--wit); }
.dag { margin-bottom: 2rem; }
.dag > h3 {
  display: flex; align-items: center; gap: .8rem; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.dag > h3::after { content: ""; flex: 1; height: 6px; border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--lijn) 0 5px, transparent 5px 10px); }
.dag--leeg { display: none; }
/* weekrooster: tijd links, activiteit rechts, categoriekleur als rand */
.rooster { display: flex; flex-direction: column; gap: .8rem; margin-top: .4rem; }
.rij { display: flex; gap: 1.4rem; align-items: baseline; flex-wrap: wrap;
  background: var(--wit); border: 1px solid var(--lijn); border-left: 7px solid var(--accent);
  border-radius: 14px; padding: 1.1rem 1.4rem; box-shadow: var(--schaduw); }
.sectie--wit .rij { background: var(--creme); }
.rij__tijd { font-family: var(--font-display); font-weight: 800; color: var(--bordeaux);
  font-size: 1.1rem; min-width: 8.5rem; white-space: nowrap; }
.rij__body { flex: 1 1 20rem; }
.rij__body h3 { display: inline; font-size: 1.15rem; margin: 0 .6rem 0 0; }
.rij .chip { margin: 0 0 0 .1rem; vertical-align: 2px; }
.rij__meta { font-size: .95rem; color: var(--muted); margin: .25rem 0 .35rem; }
.rij__body > p { font-size: 1rem; margin: 0; }
.rij__prijs { font-weight: 700; color: var(--bordeaux); white-space: nowrap; font-size: 1rem; }
@media (max-width: 640px) { .rij__tijd { min-width: 0; } }

/* ---------- Tabellen (menu, prijzen) ---------- */
.tabel { width: 100%; border-collapse: collapse; background: var(--wit); border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); }
.tabel th { background: var(--bordeaux); color: var(--wit); text-align: left; padding: .8rem 1.1rem; font-family: var(--font-display); }
.tabel td { padding: .8rem 1.1rem; border-bottom: 1px solid var(--lijn); vertical-align: top; }
.tabel tr:last-child td { border-bottom: 0; }

/* ---------- Formulieren ---------- */
form.formulier { max-width: 620px; }
.formulier label { display: block; font-weight: 600; margin: 1.1rem 0 .3rem; color: var(--bordeaux); }
.formulier input, .formulier select, .formulier textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; color: var(--ink);
  padding: .8rem 1rem; border: 2px solid var(--lijn); border-radius: 12px; background: var(--wit);
  transition: border-color .15s;
}
.formulier input:focus, .formulier select:focus, .formulier textarea:focus { outline: none; border-color: var(--accent); }
.formulier textarea { min-height: 150px; resize: vertical; }
.formulier .veld-hp { position: absolute; left: -9999px; }   /* honeypot */
.melding { border-radius: 12px; padding: 1rem 1.2rem; margin: 1.2rem 0; font-weight: 500; }
.melding--ok { background: #E4F1E4; border: 1px solid #A9D3A9; color: #24572A; }
.melding--fout { background: #F7E7EC; border: 1px solid #DFB2C2; color: #7C3350; }

/* ---------- Galerij ---------- */
.galerij { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.galerij figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--wit); border: 1px solid var(--lijn); }
.galerij img { width: 100%; height: 200px; object-fit: cover; display: block; }
.galerij figcaption { padding: .5rem .8rem; font-size: .9rem; color: var(--muted); }

/* ---------- Kaart / contact ---------- */
.kaart-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--schaduw); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.info-lijst { list-style: none; padding: 0; margin: 0; }
.info-lijst li { padding: .55rem 0; border-bottom: 1px dashed var(--lijn); display: flex; gap: .7rem; }
.info-lijst li:last-child { border-bottom: 0; }
.info-lijst b { color: var(--bordeaux); min-width: 9.5rem; }

/* ---------- CTA-band ---------- */
.band { background: var(--bordeaux); color: var(--wit); padding: 3.2rem 0; }
.band h2 { color: var(--wit); }
.band p { color: #EBD9CE; max-width: 40em; }
.band .knoppen { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* ---------- Footer (op iedere pagina, cf. briefing) ---------- */
footer.voet { background: var(--bordeaux); color: #EBD9CE; padding: 3rem 0 2rem; margin-top: 0; }
.voet__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2rem; }
.voet h4 { color: var(--wit); font-size: 1.05rem; margin-bottom: .7rem; }
.voet a { color: #F3E5DC; }
.voet a:hover { color: var(--goud); }
.voet p, .voet li { font-size: .98rem; }
.voet ul { list-style: none; padding: 0; margin: 0; }
.voet li { margin-bottom: .35rem; }
.voet__onder {
  margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(237,232,228,.25);
  display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
  font-size: .9rem;
}
.voet__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--wit); letter-spacing: -.02em; }
.voet__logo em { font-style: normal; color: var(--goud); }
.voet .tagline { color: #EBD9CE; }
.socials { display: flex; gap: .6rem; }
.socials a {
  display: inline-flex; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid rgba(237,232,228,.4); align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; font-size: .9rem;
}
.socials a:hover { background: var(--goud); border-color: var(--goud); color: var(--bordeaux); }

/* ---------- Zoekresultaten ---------- */
.resultaat { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.resultaat .bron { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); }

/* ---------- Responsief ---------- */
@media (max-width: 900px) {
  .top__nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--wit); border-bottom: 1px solid var(--lijn);
    flex-direction: column; padding: .8rem 1.2rem 1.2rem; gap: .2rem;
  }
  .top__nav.open { display: flex; }
  .top__nav a { font-size: 1.15rem; padding: .7rem .9rem; }
  .menuknop {
    display: inline-flex; margin-left: auto; align-items: center; gap: .5rem;
    background: var(--bordeaux); color: var(--wit); border: 0; border-radius: 999px;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: .55rem 1.1rem; cursor: pointer;
  }
  .top__acties .btn { display: none; }
  .contact-grid, .duo { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.6rem; }
  .hero__decor { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
