/* ==========================================================================
   VGHAL — visuele laag v2
   Donkere basis, bewegende gradients, glas, grote vloeiende typografie.
   Mobile first. Alle beweging achter prefers-reduced-motion.
   ========================================================================== */

:root {
  --bg:        #0B1A12;
  --bg-2:      #10241A;
  --bg-3:      #16301F;
  --paper:     #F4F1EA;
  --white:     #FFFFFF;

  --ink:       #0E1A13;
  --ink-soft:  #2C3A31;
  --muted:     #5B6A61;
  --faint:     #8B978F;

  --fg:        #F2F5F0;
  --fg-soft:   #B7C4BB;
  --fg-mute:   #7E8F85;

  --green:     #1F6B45;
  --green-2:   #2E9A63;
  --lime:      #9BE36A;
  --amber:     #F2A541;
  --amber-2:   #FF8A3D;

  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.18);
  --line-dark: rgba(14,26,19,.12);

  --glass:     rgba(255,255,255,.06);
  --glass-2:   rgba(255,255,255,.10);

  --font:      "Manrope", system-ui, -apple-system, sans-serif;
  --display:   "Space Grotesk", "Manrope", system-ui, sans-serif;

  --fs-body: clamp(16px, 1.05vw + 12px, 18px);
  --fs-h1:   clamp(40px, 8vw, 92px);
  --fs-h2:   clamp(30px, 4.6vw, 56px);
  --fs-h3:   clamp(19px, 1.6vw, 24px);

  --r:  18px; --r-sm: 10px; --r-pill: 999px;
  --wrap: 1360px; --gutter: 20px; --header-h: 68px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}
@media (min-width: 900px) { :root { --gutter: 48px; --header-h: 80px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font); font-size: var(--fs-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body::before { /* korrel */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

h1, h2, h3, h4 { margin: 0; font-family: var(--display); letter-spacing: -0.03em; line-height: 1.02; font-weight: 700; }
h1 { font-size: var(--fs-h1); } h2 { font-size: var(--fs-h2); } h3 { font-size: var(--fs-h3); line-height: 1.2; }
p, ul { margin: 0; } ul { padding: 0; list-style: none; }
img, svg { max-width: 100%; } img { display: block; height: auto; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.spacer { flex-grow: 1; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--amber); color: var(--ink); padding: 14px 20px; font-weight: 800; }
.skip:focus { left: 0; }
.only-desktop { display: none; } @media (min-width: 900px) { .only-desktop { display: inline; } }

/* ---------------------------------------------------- typografie --------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.lead { font-size: clamp(17px, 1.3vw + 10px, 21px); line-height: 1.55; color: var(--fg-soft); max-width: 56ch; }
.muted { color: var(--fg-mute); }
.grad-text { background: linear-gradient(100deg, #FFFFFF 0%, var(--lime) 55%, var(--amber) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.todo { border-bottom: 2px dashed currentColor; opacity: .85; }

/* -------------------------------------------------------- knoppen -------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 26px;
       border-radius: var(--r-pill); font-family: var(--font); font-size: 15px; font-weight: 800; letter-spacing: .01em; border: 1.5px solid transparent;
       cursor: pointer; text-decoration: none !important; overflow: hidden; isolation: isolate; will-change: transform; white-space: nowrap; }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 10px 30px rgba(242,165,65,.28); }
.btn--primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); transform: translateX(-120%); z-index: -1; }
.btn--primary:hover::after { transform: translateX(120%); transition: transform .7s ease; }
.btn--outline { border-color: var(--line-2); color: var(--fg); background: var(--glass); backdrop-filter: blur(10px); }
.btn--outline:hover { border-color: var(--fg); }
.btn--quiet { border-color: var(--line-dark); color: var(--ink); background: var(--white); }
.btn--quiet:hover { border-color: var(--ink); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--dark-ghost { border-color: var(--line-2); color: var(--fg); }
.btn--green { background: var(--green-2); color: var(--white); }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn svg { flex-shrink: 0; }

/* ------------------------------------------------ badges en chips -------- */
.badge { display: inline-flex; align-items: center; height: 32px; padding: 0 12px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
         font-size: 11.5px; font-weight: 800; letter-spacing: .06em; color: var(--fg); white-space: nowrap; background: var(--glass); backdrop-filter: blur(8px); }
.badge--halal { background: var(--green-2); border-color: var(--green-2); color: var(--white); }
.badge--frozen { background: #1C2C44; border-color: #2A4166; color: #BFD5FF; }
.badge--fresh { background: rgba(155,227,106,.14); border-color: rgba(155,227,106,.35); color: var(--lime); }
.badge--brand { background: rgba(242,165,65,.14); border-color: rgba(242,165,65,.4); color: var(--amber); }
.chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(155,227,106,.14); border: 1px solid rgba(155,227,106,.35); border-radius: var(--r-pill);
        padding: 6px 6px 6px 14px; font-size: 13.5px; font-weight: 700; color: var(--lime); }
.chip button { border: none; background: transparent; cursor: pointer; display: flex; padding: 4px; color: inherit; border-radius: 50%; }
.chip button:hover { background: rgba(155,227,106,.25); }

/* --------------------------------------------- voortgang + utility ------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--lime), var(--amber)); box-shadow: 0 0 12px var(--lime); }

.utility { position: relative; z-index: 3; background: rgba(11,26,18,.7); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); color: var(--fg-soft); font-size: 13px; }
.utility__inner { display: flex; align-items: center; gap: 14px; min-height: 40px; flex-wrap: nowrap; overflow: hidden; white-space: nowrap; }
.utility strong { color: var(--fg); font-weight: 700; }
.utility a { color: var(--fg-mute); font-size: 13px; font-weight: 700; }
.utility a:hover { color: var(--fg); text-decoration: none; }
.utility a[aria-current="true"] { color: var(--lime); }
.langs { display: none; gap: 12px; } @media (min-width: 700px) { .langs { display: flex; } }
.utility__sep { color: var(--line-2); }
.deadline { display: inline-flex; align-items: center; gap: 9px; }
.deadline__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(155,227,106,.6); flex-shrink: 0; }
.deadline__time { color: var(--fg); font-weight: 800; font-variant-numeric: tabular-nums; font-family: var(--display); }

/* --------------------------------------------------------- header -------- */
.header { position: sticky; top: 0; z-index: 90; background: rgba(11,26,18,.72); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 10px; min-height: var(--header-h); }
@media (min-width: 600px) { .header__inner { gap: 14px; } }
.logo { display: flex; align-items: center; gap: 12px; color: var(--fg); min-width: 0; text-decoration: none !important; }
.header .logo { flex: 1 1 auto; margin-inline-end: auto; }
.logo__mark { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 20px; font-weight: 700;
              color: var(--ink); background: conic-gradient(from 200deg, var(--lime), var(--green-2), var(--lime)); box-shadow: 0 0 24px rgba(155,227,106,.35); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.logo__name { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.logo__sub { font-size: 9px; font-weight: 700; color: var(--fg-mute); letter-spacing: .08em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 479px) { .header .logo__sub { display: none; } }
@media (min-width: 600px) { .logo__sub { font-size: 10px; } }
.nav { display: none; }
@media (min-width: 1040px) {
  .nav { display: flex; align-items: center; gap: 4px; margin-inline-start: 12px; }
  .nav a { font-size: 14.5px; font-weight: 700; color: var(--fg-soft); padding: 9px 14px; white-space: nowrap; border-radius: var(--r-pill); text-decoration: none !important; }
  .nav a:hover { color: var(--fg); background: var(--glass); }
  .nav a[aria-current="page"] { color: var(--ink); background: var(--lime); }
}
.header__actions { display: none; align-items: center; gap: 8px; }
@media (min-width: 1040px) { .header__actions { display: flex; } }
.iconbtn { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 50%;
           background: var(--glass); color: var(--fg); cursor: pointer; }
.iconbtn:hover { border-color: var(--fg); }
@media (min-width: 1040px) { .iconbtn--menu { display: none; } }
.basket-btn { position: relative; }
.basket-btn__count { position: absolute; top: -6px; inset-inline-end: -6px; min-width: 22px; height: 22px; padding: 0 6px; background: var(--amber); color: var(--ink);
                     border-radius: var(--r-pill); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* ----------------------------------------------------------- hero -------- */
.hero { position: relative; overflow: hidden; min-height: calc(100svh - var(--header-h) - 40px); display: flex; align-items: center; padding-block: 56px 40px; }
@media (min-width: 900px) { .hero { padding-block: 80px 64px; } }
.mesh { position: absolute; inset: -20%; z-index: 0; filter: blur(60px); opacity: .85; pointer-events: none;
        background:
          radial-gradient(38% 42% at 18% 30%, rgba(46,154,99,.55), transparent 70%),
          radial-gradient(30% 34% at 80% 20%, rgba(155,227,106,.30), transparent 70%),
          radial-gradient(34% 38% at 70% 85%, rgba(242,165,65,.32), transparent 70%),
          radial-gradient(28% 30% at 25% 90%, rgba(31,107,69,.6), transparent 70%); }
.hero__grid { display: grid; gap: 34px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1040px) { .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero__grid > * { min-width: 0; }
.hero__body { display: flex; flex-direction: column; gap: 22px; }
.hero h1 { font-weight: 700; }
.hero h1 .w { display: inline-block; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; }

.stage { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-2); box-shadow: var(--shadow); border: 1px solid var(--line); }
@media (min-width: 600px) { .stage { aspect-ratio: 5 / 4; } }
@media (min-width: 1040px) { .stage { aspect-ratio: 4 / 4.4; } }
.stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,26,18,.85) 0%, rgba(11,26,18,.1) 45%, transparent 70%); }
.stage__glass { position: absolute; z-index: 2; inset-inline: 16px; bottom: 16px; padding: 16px 18px; border-radius: 16px; background: rgba(11,26,18,.55); border: 1px solid var(--line-2);
                backdrop-filter: blur(14px); display: flex; align-items: center; gap: 14px; }
@media (min-width: 600px) { .stage__glass { inset-inline: 22px; bottom: 22px; padding: 18px 22px; } }
.stage__glass b { display: block; font-family: var(--display); font-size: 17px; }
.stage__glass span { font-size: 13.5px; color: var(--fg-soft); }
.stage__live { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(155,227,106,.6); }
.stage__tag { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 8px 12px; border-radius: var(--r-pill); background: rgba(11,26,18,.55); border: 1px solid var(--line-2);
              backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); }

/* ---------------------------------------------------- kpi-strip ---------- */
.kpi { position: relative; z-index: 2; border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
.kpi__inner { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px 16px; padding-block: 28px; }
@media (min-width: 900px) { .kpi__inner { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 40px; padding-block: 36px; } }
.kpi__item { display: flex; flex-direction: column; gap: 4px; }
.kpi__value { white-space: nowrap; font-family: var(--display); font-size: clamp(28px, 4.2vw, 50px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--fg); font-variant-numeric: tabular-nums; }
.kpi__value--todo { color: var(--fg-mute); border-bottom: 2px dashed var(--line-2); align-self: flex-start; }
.kpi__label { font-size: 13.5px; color: var(--fg-mute); }

/* --------------------------------------------------------- secties ------- */
.section { position: relative; padding-block: 64px; }
@media (min-width: 900px) { .section { padding-block: 104px; } }
.section--light { background: var(--paper); color: var(--ink); }
.section--light .lead { color: var(--ink-soft); }
.section--light .eyebrow { color: var(--green); }
.section--light .muted { color: var(--muted); }
.section--light a { color: var(--green); }
.section--deep { background: var(--bg-2); }
.section__head { display: flex; flex-direction: column; gap: 14px; max-width: 46ch; }
.section__bar { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; color: var(--fg); text-decoration: none !important;
             background: none; border: none; padding: 0; margin: 0; font-family: var(--font); cursor: pointer; text-align: start; }
.card .link-more { color: var(--ink); }
.section:not(.section--light) .link-more { color: var(--lime); }
.section:not(.section--light) .card .link-more { color: var(--lime); }
.link-more::after { content: "→"; transition: transform .2s; }
.link-more:hover::after { transform: translateX(4px); }
.section--light .link-more { color: var(--ink); }

/* --------------------------------------------------------- marquee ------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding-block: 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; }
.marquee__item { width: 168px; height: 128px; flex-shrink: 0; border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--line); position: relative; }
@media (min-width: 900px) { .marquee__item { width: 220px; height: 166px; } }
.marquee__item img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.marquee__item span { position: absolute; inset-inline: 0; bottom: 0; padding: 6px 10px; font-size: 12px; font-weight: 800; color: var(--white); background: linear-gradient(to top, rgba(14,26,19,.9), transparent); }

/* ---------------------------------------------------------- bento -------- */
.bento { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .bento { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1040px) { .bento { grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: minmax(200px, auto); } .bento__big { grid-column: span 2; grid-row: span 2; } .bento__wide { grid-column: span 2; } }
.cell { position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px); padding: 24px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.cell::before { /* cursor-spot */ content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
                background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(155,227,106,.16), transparent 45%); }
.cell:hover::before { opacity: 1; }
.cell h3 { font-size: clamp(20px, 2vw, 26px); }
.cell p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.5; }
.cell__big { font-family: var(--display); font-size: clamp(40px, 6vw, 72px); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.cell__media { position: absolute; inset: 0; z-index: -1; }
.cell__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.cell--media { justify-content: flex-end; min-height: 300px; background: var(--bg-3); }
.cell--media::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(11,26,18,.95), rgba(11,26,18,.2)); }
.cell--amber { background: linear-gradient(135deg, rgba(242,165,65,.22), rgba(255,138,61,.08)); border-color: rgba(242,165,65,.35); }
.cell--lime { background: linear-gradient(135deg, rgba(155,227,106,.18), rgba(46,154,99,.08)); border-color: rgba(155,227,106,.3); }
.cell .badge { align-self: flex-start; }

/* ------------------------------------------------------ categorie-rij ---- */
.scroller { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
.scroller::-webkit-scrollbar { display: none; }
@media (min-width: 1040px) { .scroller { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); overflow: visible; margin: 0; padding: 0; } }
.tile { position: relative; scroll-snap-align: start; flex: 0 0 76%; min-width: 0; border-radius: var(--r); overflow: hidden; background: var(--white); color: var(--ink); border: 1px solid var(--line-dark);
        display: flex; flex-direction: column; text-decoration: none !important; will-change: transform; }
@media (min-width: 600px) { .tile { flex-basis: 44%; } }
.tile__media { aspect-ratio: 4 / 3; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--faint); overflow: hidden; }
.tile__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.tile:hover .tile__media img { transform: scale(1.06); }
.tile__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.tile__title { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.tile__meta { font-size: 14px; color: var(--muted); line-height: 1.45; }
.tile__arrow { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; transform: translate(6px,-6px); opacity: 0; transition: .25s; }
.tile:hover .tile__arrow { opacity: 1; transform: none; }

/* -------------------------------------------------------- kaarten -------- */
.card { position: relative; border-radius: var(--r); border: 1px solid var(--line-dark); background: var(--white); color: var(--ink); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.card p { font-size: 15px; line-height: 1.5; color: var(--muted); flex-grow: 1; }
.card a { font-weight: 800; font-size: 14.5px; color: var(--green); }
.section:not(.section--light) .card { background: var(--glass); border-color: var(--line); color: var(--fg); }
.section:not(.section--light) .card p { color: var(--fg-soft); }
.section:not(.section--light) .card a { color: var(--lime); }

/* --------------------------------------------------- routekaart ---------- */
.route { position: relative; border-radius: var(--r); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px); padding: 20px; overflow: hidden; }
.route svg { width: 100%; height: auto; display: block; }
.route .land { fill: rgba(255,255,255,.04); stroke: var(--line-2); stroke-width: 1; }
.route .lijn { fill: none; stroke: var(--lime); stroke-width: 2; stroke-dasharray: 6 8; opacity: .9; }
.route .lijn--be { stroke: var(--amber); }
.route .knoop { fill: var(--bg); stroke: var(--lime); stroke-width: 2.5; }
.route .knoop--hub { fill: var(--lime); stroke: none; }
.route .knoop--be { stroke: var(--amber); }
.route .lbl { font-family: var(--display); font-size: 13px; font-weight: 700; fill: var(--fg); }
.route .sub { font-size: 11px; fill: var(--fg-mute); }
.route .truck { fill: var(--amber); }
.route__legend { display: flex; flex-wrap: wrap; gap: 14px 22px; padding-top: 14px; font-size: 13.5px; color: var(--fg-soft); }
.route__legend b { color: var(--fg); }

/* --------------------------------------------------- leverdag-checker ---- */
.checker { border-radius: var(--r); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(12px); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.checker h3 { font-size: 22px; }
.checker__form { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.checker__out { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.checker__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.checker__region { font-family: var(--display); font-size: 22px; font-weight: 700; }
.days { display: flex; flex-wrap: wrap; gap: 6px; }
.day { width: 46px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 10px; font-size: 13px; font-weight: 800; color: var(--fg-mute); }
.day--on { background: rgba(155,227,106,.14); border-color: var(--lime); color: var(--lime); }
.day--next { background: var(--lime); border-color: var(--lime); color: var(--ink); box-shadow: 0 0 20px rgba(155,227,106,.4); }

/* ------------------------------------------------------ formulieren ------ */
.form { display: flex; flex-direction: column; gap: 14px; }
.form--card { border-radius: var(--r); padding: 22px; background: var(--white); color: var(--ink); border: 1px solid var(--line-dark); }
@media (min-width: 720px) { .form--card { padding: 28px; } }
.form__row { display: flex; flex-direction: column; gap: 14px; } @media (min-width: 620px) { .form__row { flex-direction: row; } }
.field { flex-grow: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span, .field > label { font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.field input, .field select, .field textarea { min-height: 50px; border: 1.5px solid var(--line-2); border-radius: 12px; padding: 12px 14px; font-size: 16px; font-family: var(--font);
  color: var(--fg); background: rgba(255,255,255,.06); width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-mute); }
.form--card .field input, .form--card .field select, .form--card .field textarea { color: var(--ink); background: var(--paper); border-color: var(--line-dark); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); outline: none; }
.field textarea { min-height: 100px; resize: vertical; }
.field > .field__hint, .field__hint { font-size: 13px; color: var(--muted); font-weight: 400; }
.field__error { font-size: 13.5px; color: #C8471E; font-weight: 700; }
.form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form__aside { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.form__aside strong { color: var(--ink); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.section:not(.section--light) .field > span { color: var(--fg-soft); }
.section:not(.section--light) .form--card .field > span, .form--card .field > span, .form--card .field > label { color: var(--ink); }
.section:not(.section--light) .form--card .field > .field__hint, .form--card .field > .field__hint { color: var(--muted); }

/* ------------------------------------------------------ catalogus -------- */
.page-head { position: relative; overflow: hidden; padding-block: 28px 36px; border-bottom: 1px solid var(--line); }
.page-head .mesh { opacity: .5; }
.page-head h1 { font-size: clamp(32px, 5.5vw, 64px); }
@media (max-width: 599px) { .page-head h1 { overflow-wrap: anywhere; } }
.page-head__bar .section__head { flex: 1 1 520px; min-width: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg-mute); margin-bottom: 12px; flex-wrap: wrap; }
.breadcrumb a { color: var(--fg-mute); font-size: 13.5px; }
.breadcrumb [aria-current] { color: var(--fg); font-weight: 700; }
.page-head__bar { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.searchbox { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); background: rgba(255,255,255,.06); min-height: 52px; padding: 0 18px; width: 100%; }
@media (min-width: 1040px) { .searchbox { width: 360px; } }
.searchbox:focus-within { border-color: var(--lime); box-shadow: 0 0 0 4px rgba(155,227,106,.15); }
.searchbox input { border: none; outline: none; flex-grow: 1; min-height: 48px; font-size: 16px; font-family: var(--font); color: var(--fg); background: transparent; min-width: 0; }
.searchbox svg { color: var(--fg-mute); }

.catalog { display: grid; grid-template-columns: 1fr; background: var(--paper); color: var(--ink); }
@media (min-width: 1040px) { .catalog { grid-template-columns: 290px 1fr; align-items: start; } }
.filters { background: var(--white); border-bottom: 1px solid var(--line-dark); }
@media (min-width: 1040px) { .filters { border-bottom: none; border-right: 1px solid var(--line-dark); padding: 24px 22px 56px; position: sticky; top: calc(var(--header-h) + 1px); max-height: calc(100vh - var(--header-h)); overflow-y: auto; } }
.filters__summary { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 16px var(--gutter); font-family: var(--display); font-size: 17px; font-weight: 700; list-style: none; }
.filters__summary::-webkit-details-marker { display: none; }
@media (min-width: 1040px) { .filters__summary { padding: 0 0 18px; cursor: default; } }
.filters__body { padding: 0 var(--gutter) 22px; display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 1040px) { .filters__body { padding: 0; } }
.filters hr { border: none; border-top: 1px solid var(--line-dark); margin: 0; }
.filter-group { border: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.filter-group legend { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; padding: 0 0 8px; }
.filter-group label { display: flex; align-items: center; gap: 12px; font-size: 15.5px; min-height: 36px; cursor: pointer; }
.filter-group input { width: 20px; height: 20px; accent-color: var(--green); flex-shrink: 0; }
.filter-group .count { color: var(--faint); font-size: 14px; margin-inline-start: auto; }
.filter-group label.is-empty { opacity: .4; }
.notice { color: var(--ink); background: var(--paper); border: 1px solid var(--line-dark); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.notice__title { font-size: 14.5px; font-weight: 800; }
.notice p { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.results { padding: 22px var(--gutter) 56px; display: flex; flex-direction: column; gap: 20px; min-width: 0; }
@media (min-width: 1040px) { .results { padding: 26px var(--gutter) 72px 32px; } }
.results__bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.results__count { font-size: 15.5px; color: var(--ink-soft); }
.results__count strong { color: var(--ink); font-family: var(--display); }
.sort { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-soft); }
.sort select { min-height: 44px; border: 1.5px solid var(--line-dark); border-radius: var(--r-pill); padding: 0 14px; font-size: 14.5px; font-family: var(--font); background: var(--white); color: var(--ink); }
.results .chip { background: rgba(31,107,69,.1); border-color: rgba(31,107,69,.3); color: var(--green); }

.products { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px)  { .products { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; } }
@media (min-width: 1300px) { .products { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.product { position: relative; background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; color: var(--ink); will-change: transform; transform-style: preserve-3d; }
.product__media { position: relative; aspect-ratio: 4 / 3; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--faint); overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.product:hover .product__media img { transform: scale(1.06); }
.product__flags { position: absolute; inset: 10px 10px auto 10px; display: flex; justify-content: space-between; gap: 8px; pointer-events: none; }
.product__flags .badge { backdrop-filter: none; }
.product__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.product__cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--green); text-transform: uppercase; }
.product__name { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.product__name span { font-weight: 500; color: var(--muted); font-family: var(--font); font-size: 15px; }
.product__sku { font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
.product__specs { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--ink-soft); }
.product__warn { color: #B4531B; font-weight: 700; }
.product__variants { display: flex; flex-wrap: wrap; gap: 6px; }
.product__variants span { border: 1px solid var(--line-dark); border-radius: var(--r-pill); padding: 4px 10px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.product__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 12px; }
.product .btn--primary { box-shadow: none; }
.empty { border: 1.5px dashed var(--line-dark); border-radius: var(--r); padding: 36px; text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; background: var(--white); }

/* --------------------------------------------------- offertelijst -------- */
.sheet { position: fixed; inset: 0; z-index: 120; display: flex; justify-content: flex-end; }
.sheet__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.55); border: none; width: 100%; cursor: pointer; backdrop-filter: blur(4px); }
.sheet__panel { position: relative; width: min(460px, 100%); background: var(--paper); color: var(--ink); box-shadow: var(--shadow); display: flex; flex-direction: column; max-height: 100%; }
.sheet__head { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--line-dark); background: var(--white); }
.sheet__head h2 { font-size: 22px; }
.sheet__head .iconbtn { color: var(--ink); background: var(--paper); border-color: var(--line-dark); }
.sheet__body { overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.sheet__foot { border-top: 1px solid var(--line-dark); padding: 16px 22px; background: var(--white); display: flex; flex-direction: column; gap: 10px; }
.sheet .muted { color: var(--muted); }
.line { background: var(--white); border: 1px solid var(--line-dark); border-radius: 12px; padding: 12px 14px; display: flex; gap: 12px; align-items: center; color: var(--ink); }
.section:not(.section--light) .line { background: var(--glass); border-color: var(--line); color: var(--fg); }
.line__thumb { width: 64px; height: 50px; object-fit: contain; border-radius: 8px; background: var(--white); flex-shrink: 0; }
.line__text { flex-grow: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.line__name { font-size: 15.5px; font-weight: 800; line-height: 1.3; }
.line__sku { font-size: 12.5px; color: var(--faint); }
.line__qty { display: flex; align-items: center; gap: 6px; }
.line__qty input { width: 62px; min-height: 40px; text-align: center; border: 1.5px solid var(--line-dark); border-radius: 10px; font-family: var(--font); font-size: 15px; }
.line__qty select { min-height: 40px; border: 1.5px solid var(--line-dark); border-radius: 10px; font-family: var(--font); font-size: 14px; padding: 0 6px; background: var(--white); }
.line__remove { border: none; background: transparent; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 50%; }
.line__remove:hover { color: #C8471E; background: rgba(200,71,30,.1); }
.toast { position: fixed; inset-inline: var(--gutter); bottom: 96px; z-index: 150; background: var(--ink); color: var(--white); border-radius: 14px; padding: 14px 18px; font-size: 15px; font-weight: 700;
         box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; border: 1px solid var(--line-2); }
@media (min-width: 620px) { .toast { inset-inline: auto var(--gutter); bottom: var(--gutter); max-width: 380px; } }
.toast svg { color: var(--lime); }

/* -------------------------------------------------------- vleeswijzer ---- */
.wijzer { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 1040px) { .wijzer { grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: start; } }
.wijzer__stage { border-radius: var(--r); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px); padding: 16px; }
.wijzer__svg { width: 100%; height: auto; display: block; }
.zone { fill: rgba(255,255,255,.08); stroke: var(--bg); stroke-width: 3; cursor: pointer; transition: fill .15s; }
.zone:hover { fill: rgba(155,227,106,.35); }
.zone.is-on { fill: var(--lime); }
.zone-label { font-family: var(--display); font-size: 13px; font-weight: 700; fill: var(--fg-soft); pointer-events: none; }
.zone-label.is-on { fill: var(--ink); }
.outline { fill: none; stroke: var(--fg); stroke-width: 2.5; stroke-linejoin: round; pointer-events: none; }
.switcher { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.switcher button { min-height: 44px; padding: 9px 18px; border: 1.5px solid var(--line-2); background: var(--glass); border-radius: var(--r-pill); font-family: var(--font); font-size: 14.5px; font-weight: 800; color: var(--fg-soft); cursor: pointer; }
.switcher button[aria-pressed="true"] { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.wijzer__out { border-radius: var(--r); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1040px) { .wijzer__out { position: sticky; top: calc(var(--header-h) + 24px); max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; } }

/* ------------------------------------------------- vleeswijzer: foto's --- */
.wijzer__photo-frame { display: flex; align-items: stretch; gap: 0; max-width: 640px; margin-inline: auto; }
.wijzer__photo-col { position: relative; flex: 1 1 0; min-width: 0; }
.wijzer__photo-col--left { text-align: right; }
.wijzer__photo-col--right { text-align: left; }
.wijzer__photo-img { position: relative; flex: 0 0 clamp(140px, 34%, 240px); aspect-ratio: 700 / 980; background: var(--bg-3); border-radius: 10px; overflow: hidden; }
.wijzer__photo-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.zone--photo { position: absolute; left: 0; right: 0; top: 0; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 7px;
               background: none; border: none; padding: 3px 0; margin: 0; cursor: pointer; font-family: var(--font); font-size: 12.5px; font-weight: 800;
               color: var(--fg-soft); white-space: nowrap; }
.wijzer__photo-col--left .zone--photo { justify-content: flex-end; }
.wijzer__photo-col--right .zone--photo { justify-content: flex-start; }
.zone--photo__line { width: clamp(14px, 4vw, 34px); height: 1.5px; background: var(--line-2); flex-shrink: 0; transition: background .15s; }
.zone--photo:hover, .zone--photo:focus-visible { color: var(--fg); }
.zone--photo:hover .zone--photo__line { background: var(--fg); }
.zone--photo.is-on { color: var(--lime); }
.zone--photo.is-on .zone--photo__line { background: var(--lime); }
@media (min-width: 640px) { .zone--photo { font-size: 13.5px; } }


/* -------------------------------------------------------- CMS: blog/vacatures */
.cms-state { padding: 20px 0; color: var(--fg-mute); font-size: 15px; }
.section--light .cms-state { color: var(--muted); }
.cms-post { gap: 12px; }
.cms-post__cover { margin: -24px -24px 4px; border-radius: var(--r) var(--r) 0 0; overflow: hidden; aspect-ratio: 16 / 9; background: var(--bg-3); }
.cms-post__cover img { width: 100%; height: 100%; object-fit: cover; }
.cms-post__excerpt { color: var(--muted); font-size: 15px; line-height: 1.55; flex-grow: 0; }
.section:not(.section--light) .cms-post__excerpt { color: var(--fg-soft); }
.cms-post__body { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); display: flex; flex-direction: column; gap: 12px; }
.section:not(.section--light) .cms-post__body { color: var(--fg-soft); }
.cms-post__body p { margin: 0; }

.wijzer__out .products { grid-template-columns: 1fr; gap: 12px; }
.wijzer__out .product { flex-direction: row; align-items: stretch; }
.wijzer__out .product__media { width: 108px; flex-shrink: 0; aspect-ratio: 1 / 1; }
.wijzer__out .product__flags { flex-direction: column; inset: 6px auto auto 6px; align-items: flex-start; gap: 4px; }
.wijzer__out .product__flags .badge { height: 22px; padding: 0 8px; font-size: 10px; }
.wijzer__out .product__body { padding: 12px 14px; gap: 6px; }
.wijzer__out .product__name { font-size: 16.5px; }
@media (max-width: 419px) { .wijzer__out .product { flex-direction: column; } .wijzer__out .product__media { width: 100%; aspect-ratio: 4 / 3; } }
.wijzer__extra { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.wijzer__extra-label { font-size: 13px; color: var(--fg-mute); }
.chip-btn { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 0 16px; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); background: var(--glass); color: var(--fg); font-family: var(--font); font-size: 13.5px; font-weight: 800; cursor: pointer; }
.chip-btn:hover { border-color: var(--lime); color: var(--fg); }
.chip-btn.is-on { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.wijzer__out .btn--quiet { background: var(--glass); color: var(--fg); border-color: var(--line-2); }

/* -------------------------------------------------------- vaktermen ------ */
.term { border: none; background: none; padding: 0; font: inherit; color: inherit; cursor: help; border-bottom: 2px dotted var(--amber); }
.term__pop { position: absolute; z-index: 140; max-width: 330px; background: var(--ink); color: var(--white); border: 1px solid var(--line-2); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow); font-size: 14px; line-height: 1.5; }
.term__pop b { display: block; font-family: var(--display); font-size: 16px; margin-bottom: 4px; }
.term__pop em { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; color: var(--fg-mute); }

/* ----------------------------------------------------------- footer ------ */
.footer { position: relative; z-index: 2; background: #07120C; color: var(--fg-mute); padding-top: 56px; border-top: 1px solid var(--line); }
.footer a { color: var(--fg-mute); font-size: 14.5px; }
.footer a:hover { color: var(--fg); }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 700px)  { .footer__cols { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1100px) { .footer__cols { grid-template-columns: 1.5fr repeat(4, minmax(0,1fr)); } }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand p { font-size: 14.5px; line-height: 1.55; }
.footer__col h2 { font-family: var(--font); font-size: 11.5px; font-weight: 800; letter-spacing: .14em; color: var(--fg); margin-bottom: 12px; text-transform: uppercase; }
.footer__col li + li { margin-top: 8px; }
.footer__certs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; padding-block: 18px; font-size: 12.5px; }
.footer__legal a { font-size: 12.5px; }
.footer-slim { background: #07120C; color: var(--fg-mute); padding-block: 20px; font-size: 13px; border-top: 1px solid var(--line); }
.footer-slim__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer-slim strong { color: var(--fg); }

/* ------------------------------------------------- mobiele actiebalk ----- */
.actionbar { position: fixed; inset-inline: 12px; bottom: 12px; z-index: 80; background: rgba(11,26,18,.85); backdrop-filter: blur(16px); border: 1px solid var(--line-2); border-radius: var(--r-pill);
             display: flex; align-items: center; gap: 8px; padding: 8px; box-shadow: var(--shadow); }
@media (min-width: 1040px) { .actionbar { display: none; } }
.actionbar .btn { flex-grow: 1; min-height: 46px; }
.actionbar .cnt { background: var(--ink); color: var(--amber); border-radius: var(--r-pill); padding: 2px 10px; font-size: 13px; }
.actionbar .iconbtn { width: 46px; height: 46px; }
body { padding-bottom: 84px; } @media (min-width: 1040px) { body { padding-bottom: 0; } }

/* ------------------------------------------------- accordion + tijdlijn - */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q { width: 100%; display: flex; align-items: center; gap: 12px; padding: 18px 0; background: none; border: none; font-family: var(--display); font-size: 18px; font-weight: 700; color: inherit; text-align: start; cursor: pointer; }
.acc__q svg { flex-shrink: 0; margin-inline-start: auto; transition: transform .2s; } .acc__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.acc__a { padding-bottom: 20px; font-size: 16px; line-height: 1.6; max-width: 62ch; color: var(--fg-soft); }
.history { position: relative; display: grid; grid-template-columns: 1fr; gap: 30px; list-style: none; padding: 0; margin: 0; }
.history::before {
  content: ""; position: absolute; left: 9px; top: 4px; bottom: 4px; width: 2px;
  background: linear-gradient(180deg, var(--green), var(--lime) 65%, var(--amber));
}
.history__item { position: relative; padding-left: 34px; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.history__dot { position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--white);
                border: 3px solid var(--green); box-sizing: border-box; z-index: 2; }
.history__item--now .history__dot { border-color: var(--lime); }
.history__year { font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -.03em; color: var(--green); line-height: 1.15; }
.history__item--now .history__year { color: var(--green-2); }
.history__title { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.history__text { font-size: 14px; color: var(--muted); line-height: 1.5; }
@media (min-width: 820px) {
  .history { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
  .history::before { left: 0; right: 0; top: 13px; bottom: auto; height: 2px; width: auto;
                      background: linear-gradient(90deg, var(--green), var(--lime) 65%, var(--amber)); }
  .history__item { padding-left: 0; padding-top: 32px; align-items: center; text-align: center; }
  .history__dot { left: 50%; top: 0; transform: translateX(-50%); }
  .history__text { max-width: 24ch; }
}
@media (prefers-reduced-motion: no-preference) { .history__item--now .history__dot { animation: ring 1.8s ease-out infinite; } }

/* ------------------------------------------------- rasters + extra's ----- */
.grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px)  { .grid--2, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1040px) { .grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } .grid--2 { gap: 32px; } }
.split2 { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1040px) { .split2 { grid-template-columns: 1fr 1fr; gap: 56px; } }
.photo { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-2); box-shadow: var(--shadow); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo__cap { position: absolute; inset-inline: 14px; bottom: 14px; padding: 12px 16px; border-radius: 12px; background: rgba(11,26,18,.6); border: 1px solid var(--line-2); backdrop-filter: blur(12px); color: var(--white); font-size: 14px; font-weight: 700; }
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.checklist svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.section:not(.section--light) .checklist svg { color: var(--lime); }
.cta { position: relative; overflow: hidden; border-radius: 28px; padding: clamp(28px, 5vw, 64px); background: linear-gradient(135deg, var(--green) 0%, var(--bg-3) 60%, var(--bg-2) 100%); border: 1px solid var(--line-2);
       display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.cta .mesh { opacity: .5; }
.cta > * { position: relative; z-index: 1; }
.cell__live { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--lime); line-height: 1; }
.cell--amber .cell__live { color: var(--amber); }
.cell__foot { margin-top: auto; padding-top: 10px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cell__foot .btn--sm { min-height: 40px; }

/* -------------------------------------------------- off-canvas menu ------ */
html.is-locked { overflow: hidden; }
.offcanvas { position: fixed; inset: 0; z-index: 130; display: flex; justify-content: flex-end; }
.offcanvas__scrim { position: absolute; inset: 0; width: 100%; border: none; cursor: pointer; background: rgba(4,10,7,.6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s; }
.offcanvas__panel { position: relative; width: min(440px, 90vw); height: 100%; display: flex; flex-direction: column; padding: 16px 22px 28px; overflow-y: auto;
                    background: linear-gradient(180deg, #12281D 0%, #0B1A12 100%); border-inline-start: 1px solid var(--line-2); box-shadow: -30px 0 80px rgba(0,0,0,.5);
                    transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.7,.2,1); }
.offcanvas__panel::before { content: ""; position: absolute; inset: -30% -30% auto; height: 70%; pointer-events: none; filter: blur(60px); opacity: .5;
                            background: radial-gradient(40% 50% at 70% 30%, rgba(46,154,99,.6), transparent 70%), radial-gradient(30% 40% at 20% 80%, rgba(242,165,65,.35), transparent 70%); }
.offcanvas.is-open .offcanvas__scrim { opacity: 1; }
.offcanvas.is-open .offcanvas__panel { transform: none; }
.offcanvas__head { position: relative; display: flex; align-items: center; gap: 12px; min-height: 52px; margin-bottom: 14px; }
.offcanvas__list { position: relative; display: flex; flex-direction: column; }
.offcanvas__list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line);
                     font-family: var(--display); font-size: clamp(22px, 5.6vw, 28px); font-weight: 700; letter-spacing: -.02em; color: var(--fg); text-decoration: none !important; }
.offcanvas__list a::after { content: "→"; color: var(--lime); font-size: 20px; transition: transform .2s; }
.offcanvas__list a:hover::after { transform: translateX(5px); }
.offcanvas__list a[aria-current="page"] { color: var(--lime); }
.offcanvas__cta { position: relative; display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.offcanvas__langs { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.offcanvas__langs a { border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 14px; font-size: 14px; color: var(--fg-soft); text-decoration: none !important; }
.offcanvas__langs a:hover, .offcanvas__langs a[aria-current="true"] { border-color: var(--lime); color: var(--lime); }
.offcanvas__foot { position: relative; margin-top: auto; padding-top: 22px; font-size: 13.5px; line-height: 1.5; color: var(--fg-mute); }
.offcanvas__foot strong { color: var(--fg); }

/* ------------------------------------------------ paginakop subpagina's -- */
.page-head { padding-block: 32px 40px; }
@media (min-width: 900px) { .page-head { padding-block: 52px 60px; } }
.page-head .mesh { opacity: .85; }
.page-head__grid { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1040px) { .page-head__grid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.page-head__proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.proof { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 18px; font-size: 14px; color: var(--fg-soft); }
.proof span { display: inline-flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.proof b { color: var(--fg); font-family: var(--display); font-size: 18px; letter-spacing: -.02em; }
.page-head .searchbox-wrap { margin-top: 22px; max-width: 480px; }

/* ------------------------------------------------- 3D kaartenstapel ------ */
.stack { position: relative; height: 230px; perspective: 1100px; transform-style: preserve-3d; margin-inline: auto; max-width: 520px; width: 100%; }
@media (min-width: 600px)  { .stack { height: 300px; } }
@media (min-width: 1040px) { .stack { height: 360px; } }
.stack__card { position: absolute; width: min(60%, 300px); aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: var(--white); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.stack__card img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.stack__card span { position: absolute; inset-inline: 0; bottom: 0; padding: 8px 12px; font-size: 12.5px; font-weight: 800; color: var(--white); background: linear-gradient(to top, rgba(14,26,19,.92), transparent); }
.stack__card:nth-child(1) { left: 0;   top: 12%; z-index: 1; transform: rotate(-9deg) translateZ(-60px); }
.stack__card:nth-child(2) { left: 20%; top: 0;   z-index: 3; transform: rotate(2deg)  translateZ(30px); }
.stack__card:nth-child(3) { right: 0;  top: 16%; z-index: 2; transform: rotate(10deg) translateZ(-30px); }
.stack__glass { position: absolute; z-index: 4; left: 4%; bottom: 0; padding: 12px 16px; border-radius: 14px; background: rgba(11,26,18,.62); border: 1px solid var(--line-2); backdrop-filter: blur(14px);
                display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--fg-soft); max-width: 92%; }
.stack__glass b { display: block; font-family: var(--display); font-size: 16px; color: var(--fg); }
@keyframes floatCard { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@media (prefers-reduced-motion: no-preference) {
  .stack__card { animation: floatCard 7s ease-in-out infinite; }
  .stack__card:nth-child(2) { animation-delay: -2.3s; } .stack__card:nth-child(3) { animation-delay: -4.6s; }
  .stack__glass { animation: floatY 6s ease-in-out infinite; animation-delay: -1s; }
  .offcanvas__list a { opacity: 0; transform: translateX(28px); transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1); }
  .offcanvas.is-open .offcanvas__list a { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 45ms + 120ms); }
  .offcanvas__cta, .offcanvas__langs, .offcanvas__foot { opacity: 0; transition: opacity .5s ease .4s; }
  .offcanvas.is-open .offcanvas__cta, .offcanvas.is-open .offcanvas__langs, .offcanvas.is-open .offcanvas__foot { opacity: 1; }
}

/* ------------------------------------------------------- urgentie -------- */
.urgency { display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 10px 16px 10px 12px; border-radius: var(--r-pill);
           background: rgba(242,165,65,.12); border: 1px solid rgba(242,165,65,.5); color: var(--fg); font-size: 14.5px; font-weight: 700; line-height: 1.3; text-decoration: none !important; }
.urgency:hover { border-color: var(--amber); background: rgba(242,165,65,.18); }
.urgency b { font-family: var(--display); font-size: 19px; color: var(--amber); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.urgency__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(242,165,65,.6); }
.urgency__arrow { color: var(--amber); font-size: 18px; margin-inline-start: auto; }
.btn--lg { min-height: 60px; padding: 16px 30px; font-size: 16.5px; }
.hero__cta { align-items: center; gap: 12px 22px; }
.hero__cta .link-more { color: var(--fg-soft); }
.hero__cta .link-more:hover { color: var(--fg); }
@keyframes ringAmber { 0% { box-shadow: 0 0 0 0 rgba(242,165,65,.6); } 100% { box-shadow: 0 0 0 12px rgba(242,165,65,0); } }
@media (prefers-reduced-motion: no-preference) { .urgency__dot { animation: ringAmber 1.6s ease-out infinite; } }
@media (max-width: 599px) {
  .hero { min-height: 0; padding-block: 32px 36px; }
  .hero__body { gap: 18px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 44px); }
  .hero .lead { font-size: 16.5px; }
  .urgency { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .link-more { justify-content: center; }
  .hero__proof { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .hero__proof::-webkit-scrollbar { display: none; }
}
.actionbar .cnt[data-deadline] { font-variant-numeric: tabular-nums; }

/* ----------------------------------------------------------- beweging ---- */
@keyframes meshMove { 0% { transform: translate3d(0,0,0) rotate(0deg) scale(1); } 50% { transform: translate3d(3%,-2%,0) rotate(6deg) scale(1.06); } 100% { transform: translate3d(0,0,0) rotate(0deg) scale(1); } }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(155,227,106,.55); } 100% { box-shadow: 0 0 0 14px rgba(155,227,106,0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dash { to { stroke-dashoffset: -28; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes wordUp { from { opacity: 0; transform: translateY(110%) rotate(3deg); } to { opacity: 1; transform: none; } }
@keyframes zonePulse { 0%,100% { fill: rgba(255,255,255,.08); } 50% { fill: rgba(155,227,106,.22); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes sheetIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: no-preference) {
  .mesh { animation: meshMove 18s ease-in-out infinite; }
  .deadline__dot, .stage__live { animation: ring 1.8s ease-out infinite; }
  .marquee__track { animation: marquee 40s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  .route .lijn { animation: dash 1.2s linear infinite; }
  .route .knoop--hub { animation: ring 2s ease-out infinite; }
  .stage__glass { animation: floatY 6s ease-in-out infinite; }
  .hero h1 .w { overflow: hidden; vertical-align: bottom; }
  .hero h1 .w > span { display: inline-block; animation: wordUp .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--i, 0) * 70ms); }

  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal--2 { transition-delay: .1s; } .reveal--3 { transition-delay: .2s; } .reveal--4 { transition-delay: .3s; }

  .tile, .card, .product, .cell, .timeline li { transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, border-color .25s; }
  .tile:hover, .card:hover, .product:hover, .timeline li:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .cell:hover { border-color: var(--line-2); }
  .btn { transition: transform .15s, box-shadow .2s, background-color .2s, color .2s, border-color .2s; }
  .btn:active { transform: scale(.96); }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(242,165,65,.4); }
  .stage img { transition: transform 10s ease-out; } .hero:hover .stage img { transform: scale(1.08); }
  .wijzer__stage:not(:has(.zone.is-on)) .zone { animation: zonePulse 2.4s ease-in-out infinite; }
  .wijzer__stage:not(:has(.zone.is-on)) .zone:nth-child(2n) { animation-delay: .4s; }
  .toast { animation: toastIn .28s cubic-bezier(.2,.7,.2,1); }
  .sheet__panel { animation: sheetIn .28s cubic-bezier(.2,.7,.2,1); }
  .basket-btn__count { transition: transform .2s cubic-bezier(.3,1.6,.5,1); } .basket-btn__count.is-bump { transform: scale(1.4); }
  .chip { animation: toastIn .2s ease; }
  [data-tilt] { transition: transform .15s ease-out; }
}

@media print { .header, .utility, .actionbar, .offcanvas, .stack, .filters, .sheet, .toast, .skip, .progress, .mesh, .marquee { display: none !important; } body { padding-bottom: 0; background: #fff; color: #000; } }
