/* ==========================================================================
   CAR-L — kentekenherkenning / licence plate recognition
   Ontwerpsysteem — palet: teal (header), ROOD + ZWART accenten, plaat-geel
   uitsluitend op de kentekenplaat zelf.
   ========================================================================== */

:root {
  --ink:        #16232a;   /* bijna-zwart, brand */
  --ink-2:      #1e2e37;
  --ink-soft:   #45606b;
  --teal-700:   #3d6672;
  --teal-600:   #4e7c89;
  --teal-500:   #6d97a2;   /* herkenbare header-kleur */
  --teal-300:   #a7c3cb;
  --teal-100:   #dbe7ea;
  --sand:       #cfc3a8;
  --sand-soft:  #ece5d4;
  --mauve:      #c4a9bd;
  --mauve-soft: #e6d8e1;
  --paper:      #f7f5f1;
  --white:      #ffffff;
  --plate:      #f5d200;   /* ALLEEN op de kentekenplaat */
  --plate-ink:  #14181a;
  --red:        #d6323b;   /* hoofdaccent */
  --red-deep:   #b3272f;
  --red-soft:   #f6e4e5;
  --ok:         #1f9d55;   /* groen = OK/toegang */

  --line:       rgba(22,35,42,.12);
  --line-soft:  rgba(22,35,42,.07);
  --shadow-sm:  0 1px 2px rgba(22,35,42,.06), 0 2px 8px rgba(22,35,42,.05);
  --shadow-md:  0 8px 24px rgba(22,35,42,.10), 0 2px 6px rgba(22,35,42,.06);
  --shadow-lg:  0 24px 60px rgba(22,35,42,.16);

  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body:    "Figtree", ui-sans-serif, system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body); color: var(--ink); background: var(--white);
  line-height: 1.65; font-size: 1.0625rem; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-paper { background: var(--paper); }
.bg-sand  { background: var(--sand-soft); }
.bg-mauve { background: var(--mauve-soft); }
.bg-teal  { background: var(--teal-500); color: var(--white); }
.bg-ink   { background: var(--ink); color: var(--white); }

.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--red), transparent); display: inline-block; }
.bg-teal .eyebrow, .bg-ink .eyebrow { color: rgba(255,255,255,.92); }
.bg-teal .eyebrow::before, .bg-ink .eyebrow::before { background: linear-gradient(90deg, var(--red), transparent); }

.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); max-width: 20ch; }
.section-intro { color: var(--ink-soft); max-width: 58ch; margin-top: 1rem; font-size: 1.075rem; }
.bg-teal .section-intro, .bg-ink .section-intro { color: rgba(255,255,255,.85); }
.bg-teal .section-title, .bg-ink .section-title { color: #fff; }

/* ----- Buttons: ROOD primair, ZWART als variant ------------------------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--display); font-weight: 500; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease; box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; background: var(--red-deep); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--dark { --btn-bg: var(--ink); }
.btn--dark:hover { background: #0c161b; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink), var(--shadow-sm); }
.bg-teal .btn--ghost, .bg-ink .btn--ghost { --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
.bg-teal .btn--ghost:hover, .bg-ink .btn--ghost:hover { background: rgba(255,255,255,.12); color:#fff; box-shadow: inset 0 0 0 1.5px #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar { background: var(--ink); color: rgba(255,255,255,.85); font-size: .8rem; font-family: var(--mono); letter-spacing: .02em; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 34px; gap: 1rem; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; }
.topbar__meta { display: flex; gap: 1.1rem; align-items: center; }
@media (max-width: 640px){ .topbar__tag { display:none; } }

.lang { display: inline-flex; gap: .1rem; align-items: center; }
.lang a { padding: .1rem .35rem; border-radius: 4px; color: rgba(255,255,255,.6); }
.lang a[aria-current="true"] { color: #fff; background: var(--red); }
.lang span { color: rgba(255,255,255,.3); }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--teal-500); box-shadow: 0 1px 0 rgba(255,255,255,.15) inset; }
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 56px; width: auto; }
.brand-logo--footer { height: 52px; }

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav__links a { color: rgba(255,255,255,.95); font-family: var(--display); font-weight: 500; font-size: .98rem; padding: .55rem .85rem; border-radius: 8px; transition: background .15s ease, color .15s ease; }
.nav__links a:hover, .nav__links a[aria-current="page"] { background: rgba(255,255,255,.16); color: #fff; }
.nav__cta { margin-left: .5rem; }
.nav__toggle { display: none; background: transparent; border: 0; color: #fff; cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--teal-600); flex-direction: column; align-items: stretch;
    padding: calc(var(--header-h) + 1.5rem) 1.25rem 2rem; gap: .25rem;
    transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-lg);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav__cta { margin: .5rem 0 0; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(12,18,22,.5); opacity: 0; visibility: hidden; transition: opacity .28s ease; z-index: 99; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Hero — signature: kenteken dat gelezen wordt
   ========================================================================== */
.hero { position: relative; background: var(--teal-500); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.10) 55%, transparent 60%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; z-index: 1; }
.hero__eyebrow { font-family: var(--mono); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.25rem; }
.hero__eyebrow::before { content:""; width: 30px; height: 2px; background: var(--red); }
.hero h1 { color: #fff; font-size: clamp(1.8rem, 5.2vw, 3.7rem); line-height: 1.05; letter-spacing: -0.02em; overflow-wrap: normal; word-break: keep-all; hyphens: none; }
.hero h1 em { font-style: normal; color: #fff; box-shadow: inset 0 -0.28em 0 var(--red); padding: 0 .04em; white-space: nowrap; }
.hero__lead { margin-top: 1.4rem; font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.92); max-width: 46ch; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__trust { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust svg { width: 1rem; height: 1rem; color: #fff; }

@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; } .hero__visual { order: -1; } }

.scan {
  position: relative; aspect-ratio: 5 / 4; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 80% at 70% 10%, rgba(255,255,255,.14), transparent 60%), linear-gradient(180deg, #7ba3ae 0%, #6d97a2 55%, #5c8591 100%);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.25);
}
.scan__label { position: absolute; top: 14px; left: 14px; z-index: 4; font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.92); background: rgba(12,18,22,.32); padding: .3rem .55rem; border-radius: 6px; }
.scan__hud { position: absolute; right: 14px; top: 14px; z-index: 4; display: flex; flex-direction: column; gap: .3rem; align-items: flex-end; }
.scan__hud b { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; color: #fff; background: var(--ok); padding: .25rem .5rem; border-radius: 5px; font-weight: 700; }
.plate {
  position: absolute; left: 50%; bottom: 20%; transform: translateX(-50%) rotate(-3deg); z-index: 3;
  background: var(--plate); color: var(--plate-ink); font-family: var(--mono); font-weight: 700; letter-spacing: .06em;
  font-size: clamp(1.1rem, 4.5vw, 1.9rem); padding: .35em .7em .3em; border-radius: 8px; border: 3px solid #0e1113;
  box-shadow: 0 10px 30px rgba(12,18,22,.4); display: flex; align-items: center; gap: .4em;
}
.plate::before { content: "NL"; font-size: .42em; letter-spacing: .05em; background: #1a3a8f; color: #fff; padding: .55em .35em; border-radius: 3px; align-self: stretch; display: flex; align-items: center; }
.scan__beam { position: absolute; left: 0; right: 0; top: -10%; height: 3px; z-index: 3; background: linear-gradient(90deg, transparent, var(--red) 20%, #fff 50%, var(--red) 80%, transparent); box-shadow: 0 0 18px 4px rgba(214,50,59,.5); animation: scanmove 3.8s cubic-bezier(.6,0,.4,1) infinite; }
@keyframes scanmove { 0% { top: 8%; opacity: 0; } 12% { opacity: 1; } 50% { top: 82%; opacity: 1; } 62% { opacity: 0; } 100% { top: 82%; opacity: 0; } }
.scan__cam { position: absolute; left: 12%; top: 10%; z-index: 2; width: 20%; color: #fff; }
.scan__mast { position: absolute; left: calc(12% + 8%); top: 14%; width: 3px; height: 62%; background: rgba(255,255,255,.55); z-index: 1; }
.scan__ray { position: absolute; left: 20%; top: 20%; width: 55%; height: 40%; z-index: 1; background: linear-gradient(120deg, rgba(255,255,255,.4), rgba(255,255,255,0) 70%); clip-path: polygon(0 0, 100% 65%, 100% 78%, 0 22%); filter: blur(1px); }
.scan__barrier { position: absolute; right: 8%; bottom: 16%; width: 40%; height: 4px; background: repeating-linear-gradient(90deg, #e8ecee 0 22px, var(--red) 22px 44px); transform: rotate(-8deg); transform-origin: right center; border-radius: 3px; z-index: 2; box-shadow: 0 3px 8px rgba(0,0,0,.2); }
.scan__post { position: absolute; right: 7%; bottom: 8%; width: 8px; height: 22%; background: #dfe6e8; border-radius: 3px; z-index: 1; }
.scan__ground { position: absolute; left: 0; right: 0; bottom: 0; height: 22%; background: linear-gradient(180deg, rgba(22,35,42,.06), rgba(22,35,42,.22)); z-index: 0; }
@media (prefers-reduced-motion: reduce) { .scan__beam { animation: none; top: 50%; opacity: .9; } }

/* ==========================================================================
   Pijlers
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.pillar { text-align: left; padding: 1.75rem; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.pillar:hover { box-shadow: var(--shadow-md); }
.pillar__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; margin-bottom: 1.1rem; }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.pillar p { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 760px){ .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Kaarten
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr)); gap: clamp(1rem, 2.5vw, 1.75rem); }
.card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; height: 100%; }
.card:hover { box-shadow: var(--shadow-md); border-color: var(--line); }
.card__media { aspect-ratio: 4/3; background: var(--paper); position: relative; overflow: hidden; display: grid; place-items: center; }
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; transition: transform .35s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__cat { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; background: rgba(22,35,42,.78); color: #fff; padding: .28rem .5rem; border-radius: 5px; }
.card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { font-size: 1.08rem; line-height: 1.25; }
.card__body p { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.card__foot { margin-top: auto; padding-top: .75rem; display: flex; align-items: center; gap: .4rem; font-family: var(--display); font-weight: 500; font-size: .9rem; color: var(--red); }
.card:hover .card__foot { gap: .65rem; }
.card__foot svg { width: 1em; height: 1em; transition: transform .2s ease; }
.card .stretched { position: absolute; inset: 0; }
.badge-na { display:inline-block; font-family: var(--mono); font-size: .62rem; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); background: var(--sand-soft); padding:.2rem .45rem; border-radius:5px; }

.cat-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-chip { display: flex; flex-direction: column; gap: .5rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.cat-chip:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.cat-chip__k { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: var(--red); }
.cat-chip h3 { font-size: 1.15rem; }
.cat-chip p { font-size: .9rem; color: var(--ink-soft); }
.cat-chip .card__foot { color: var(--red); }
@media (max-width: 900px){ .cat-rail { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px){ .cat-rail { grid-template-columns: 1fr; } }

.crumbs { font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.crumbs a { color: var(--red); }
.crumbs span[aria-hidden] { color: var(--teal-300); }

/* ==========================================================================
   Product-detail
   ========================================================================== */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.product__gallery { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.product__media { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-sm); }
.product__media img { width: 100%; height: 100%; object-fit: contain; padding: 2rem; }
.product__media .gallery__main { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.product h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin: .6rem 0 0; }
.product__lead { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }
.product__body { font-size: 1.03rem; }
.product__body h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.product__body p { margin-top: .75rem; color: var(--ink-soft); }
.product__body ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.product__body ul li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.product__body ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--red); border-radius: 2px; transform: rotate(45deg); }
.product__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.dealer-note { margin-top: 1.25rem; font-size: .92rem; color: var(--ink-soft); background: var(--paper); border-left: 3px solid var(--red); padding: .85rem 1rem; border-radius: 0 8px 8px 0; }

.specs { margin-top: 2rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.specs caption { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); text-align: left; padding: .9rem 1.1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
.specs table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.specs th, .specs td { text-align: left; padding: .7rem 1.1rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.specs th { font-family: var(--mono); font-weight: 400; color: var(--ink-soft); width: 42%; font-size: .85rem; letter-spacing: .02em; }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   Support
   ========================================================================== */
.accordion { display: grid; gap: .75rem; }
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc__q { width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer; padding: 1.1rem 1.35rem; font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; }
.acc__q::-webkit-details-marker { display: none; }
.acc__q .num { font-family: var(--mono); font-size: .78rem; color: var(--red); }
.acc__q .chev { width: 20px; height: 20px; flex: none; transition: transform .25s ease; color: var(--red); }
.acc[open] .acc__q .chev { transform: rotate(180deg); }
.acc__a { padding: 0 1.35rem 1.25rem; color: var(--ink-soft); }
.acc__a p + p { margin-top: .6rem; }

.tips { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.tip { padding: 1.4rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
button.tip { display: block; width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
button.tip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tip__foot { display: inline-flex; align-items: center; gap: .35rem; margin-top: .7rem; font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; color: var(--red); }
.tip__foot svg { width: 13px; height: 13px; }
.tip__n { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--mono); font-weight: 700; margin-bottom: .9rem; }
.tip h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.tip p { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 900px){ .tips { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .tips { grid-template-columns: 1fr; } }

.videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,220px),1fr)); gap: 1.25rem; }
.video { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line-soft); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
button.video { display: block; width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; padding: 0; }
.video:hover { box-shadow: var(--shadow-md); }
button.video:hover { transform: translateY(-2px); }
.video__thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ink), var(--teal-600)); position: relative; display: grid; place-items: center; }
.video__thumb svg { width: 46px; height: 46px; color: #fff; opacity: .95; }
.video__thumb .dur { position: absolute; right: 8px; bottom: 8px; font-family: var(--mono); font-size: .66rem; background: rgba(12,18,22,.7); color:#fff; padding: .15rem .4rem; border-radius: 4px; }
.video__cap { padding: .8rem 1rem 1rem; font-family: var(--display); font-weight: 500; font-size: .95rem; }

.video-modal { position: fixed; inset: 0; z-index: 300; background: rgba(22,35,42,.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.video-modal.is-open { display: flex; }
.video-modal__video { max-width: min(92vw, 1100px); max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); background: #000; }
.video-modal__close { position: absolute; top: 1.25rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .18s ease; }
.video-modal__close:hover { background: var(--red); }
@media (max-width: 640px){
  .video-modal__close { width: 38px; height: 38px; top: .75rem; right: .75rem; }
}

.downloads { display: grid; gap: .75rem; }
.dl { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: border-color .2s ease, transform .2s ease; }
.dl:hover { border-color: var(--red); }
.dl__ic { width: 42px; height: 42px; border-radius: 10px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.dl__ic svg { width: 22px; height: 22px; }
.dl__meta { flex: 1; }
.dl__meta b { font-family: var(--display); font-weight: 600; display: block; color: var(--ink); }
.dl__meta span { font-family: var(--mono); font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; }
.dl__go { color: var(--red); }

.projects { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.proj { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--white); box-shadow: var(--shadow-sm); position: relative; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.proj:hover img { transform: scale(1.06); }
.proj__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem .85rem; font-family: var(--mono); font-size: .72rem; color: #fff; background: linear-gradient(0deg, rgba(12,18,22,.7), transparent); }
@media (max-width: 900px){ .projects { grid-template-columns: repeat(2,1fr); } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--display); font-weight: 500; font-size: .92rem; }
.field label .req { color: var(--red); }
.field input, .field textarea, .field select { font: inherit; font-size: 1rem; color: var(--ink); background: var(--white); border: 1.5px solid var(--line); border-radius: 10px; padding: .75rem .9rem; width: 100%; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,50,59,.18); }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--ink-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
.hp { position: absolute !important; left: -9999px !important; }
.captcha { display: flex; align-items: center; gap: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: .75rem .9rem; }
.captcha label { font-family: var(--mono); font-size: .95rem; color: var(--ink); white-space: nowrap; }
.captcha input { max-width: 90px; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .95rem; border: 1px solid; }
.alert--ok { background: #e8f3ee; border-color: #a9d3bf; color: #1f5b40; }
.alert--err { background: var(--red-soft); border-color: #e6b0b3; color: #8f2a2f; }

.contact-info { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.contact-info h2 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.info-item { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
.info-item:last-child { border-bottom: 0; }
.info-item svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.info-item b { font-family: var(--display); display: block; font-size: .85rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.info-item a, .info-item span { color: var(--ink); font-size: 1.02rem; }

.cta-band { text-align: center; }
.cta-band .section-title { margin-inline: auto; max-width: 24ch; }
.cta-band .section-intro { margin-inline: auto; }
.cta-band .btns { margin-top: 2rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.4rem; margin: 2.25rem 0 .5rem; }
.prose h3 { font-size: 1.1rem; margin: 1.5rem 0 .4rem; }
.prose p { margin-top: .85rem; color: var(--ink-soft); }
.prose ul, .prose ol { margin: .85rem 0 0 1.2rem; color: var(--ink-soft); display: grid; gap: .4rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose .lead { font-size: 1.15rem; color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding-block: clamp(2.5rem, 5vw, 4rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .brand-logo { height: 52px; margin-bottom: .9rem; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 400; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,.78); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.15); padding-block: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--mono); font-size: .74rem; color: rgba(255,255,255,.65); letter-spacing: .02em; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px){ .footer-grid { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hr-beam { height: 2px; border: 0; background: linear-gradient(90deg, var(--red), transparent); margin-block: 2rem; max-width: 120px; }

/* Cookiemelding (optioneel — standaard verborgen) */
.cookiebar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; background: var(--ink); color: #fff; border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); display: none; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between; }
.cookiebar.show { display: flex; }
.cookiebar p { font-size: .9rem; color: rgba(255,255,255,.85); margin: 0; max-width: 60ch; }
.cookiebar a { color: #fff; text-decoration: underline; }
.cookiebar .btn { padding: .6rem 1.1rem; }

/* ==========================================================================
   Productgalerij (thumbnails) + lightbox
   ========================================================================== */
.gallery__thumbs { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.gallery__thumb { width: 112px; height: 112px; padding: 0; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper); overflow: hidden; cursor: pointer; flex: none; transition: border-color .18s ease, transform .18s ease; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: .5rem; pointer-events: none; }
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,50,59,.15); }
@media (max-width: 640px){
  .gallery__thumb { width: 84px; height: 84px; }
}

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(22,35,42,.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.is-open { display: flex; }
.lightbox__viewport { overflow: hidden; max-width: min(92vw, 1100px); max-height: 88vh; display: grid; place-items: center; touch-action: none; }
.lightbox__img { max-width: min(92vw, 1100px); max-height: 88vh; object-fit: contain; border-radius: 10px; box-shadow: var(--shadow-lg); cursor: zoom-in; transition: transform .18s ease; touch-action: none; user-select: none; -webkit-user-drag: none; }
.lightbox__img.is-zoomed { cursor: grab; transition: none; }
.lightbox__img.is-panning { cursor: grabbing; }
.lightbox__close, .lightbox__nav, .lightbox__zoom { position: absolute; border: 0; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; display: grid; place-items: center; line-height: 1; transition: background .18s ease; }
.lightbox__close { top: 1.25rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; }
.lightbox__close:hover, .lightbox__nav:hover, .lightbox__zoom:hover { background: var(--red); }
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }
.lightbox__zoomctl { position: absolute; top: 1.25rem; left: 1.5rem; display: flex; gap: .5rem; }
.lightbox__zoom { position: static; width: 40px; height: 40px; border-radius: 50%; font-size: 1.25rem; font-family: var(--display); }
.lightbox__count { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: .78rem; color: rgba(255,255,255,.75); letter-spacing: .04em; }
@media (max-width: 640px){
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox__close { width: 38px; height: 38px; top: .75rem; right: .75rem; }
  .lightbox__zoomctl { top: .75rem; left: .75rem; }
  .lightbox__zoom { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* E-mailadres als afbeelding (niet leesbaar voor scrapers) */
.email-img { display: inline-flex; align-items: center; }
.email-img img { height: 20px; width: auto; display: block; }
.info-item .email-img img { height: 22px; }
.footer-col .email-img img { height: 18px; }
