/* Platinum Customz — full dark high-tech
   Kleuren staan bovenaan. Wil je een andere rood- of zwarttint,
   dan pas je alleen dit blok aan. */

:root {
  --black:    #060607;
  --night:    #0C0C0F;
  --steel:    #141419;
  --carbon:   #1A1A21;
  --red:      #E01B24;
  --red-dark: #A00E15;
  --red-deep: #6E080D;
  --text:     #EDEDEF;
  --muted:    #9A9AA2;
  --dim:      #55555E;
  --line:     rgba(255,255,255,.1);
  --line-red: rgba(224,27,36,.35);

  --shell:    1240px;
  --display:  'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body:     'Inter Tight', system-ui, sans-serif;
  --mono:     'IBM Plex Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.shell { width: min(100% - 36px, var(--shell)); margin-inline: auto; }
.mono { font-family: var(--mono); }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 14px; top: 14px; z-index: 100;
  background: var(--red); color: #fff; padding: 10px 16px;
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

::selection { background: var(--red); color: #fff; }

/* ---------- Type ---------- */

.disp {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: .005em;
  margin: 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.sec-no {
  color: var(--dim); padding-right: 14px; margin-right: 14px;
  border-right: 1px solid var(--line); font-weight: 400;
}

.lede { color: var(--muted); max-width: 54ch; }

/* ---------- Header ---------- */

.head {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(to bottom, rgba(6,6,7,.92), rgba(6,6,7,.78));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.head.scrolled {
  border-bottom-color: var(--line-red);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.head-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 76px;
}

/* -- wordmark-logo: racing stripes met sterrenhemel-stipjes -- */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.lg-mark {
  width: 42px; height: 26px; flex: none;
  filter: drop-shadow(0 0 10px rgba(224,27,36,.35));
  transition: filter .25s ease;
}
.logo:hover .lg-mark { filter: drop-shadow(0 0 16px rgba(224,27,36,.7)); }
.lg-word {
  font-size: 21px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; line-height: 1;
  display: inline-flex; gap: 5px;
}
.lg-word em { font-style: normal; font-weight: 400; color: var(--text); }
.lg-word b { color: var(--red); }

.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.nav > a, .nav-item > a {
  text-decoration: none; color: var(--muted); padding: 4px 0;
  position: relative; transition: color .18s ease;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav > a::after, .nav-item > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 2px; background: var(--red); transition: right .22s ease;
}
.nav > a:hover, .nav-item > a:hover { color: #fff; }
.nav > a:hover::after, .nav-item > a:hover::after,
.nav > a[aria-current="page"]::after, .nav-item > a[aria-current="page"]::after { right: 0; }
.nav > a[aria-current="page"], .nav-item > a[aria-current="page"] { color: #fff; }
.nav-car { color: var(--dim); transition: transform .2s ease, color .2s ease; }

/* -- dropdown met alle diensten -- */
.nav-item { position: relative; }
.nav-item:hover .nav-car, .nav-item:focus-within .nav-car { transform: rotate(180deg); color: var(--red); }
.nav-drop {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px; padding: 8px;
  background: rgba(10,10,13,.96); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-top: 2px solid var(--red);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* onzichtbare brug zodat de hover niet wegvalt tussen knop en paneel */
.nav-item::before {
  content: ""; position: absolute; left: -20px; right: -20px;
  top: 100%; height: 20px;
}
.nav-drop a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 11px 14px; text-decoration: none; text-transform: none;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s ease, color .15s ease;
}
.nav-drop a:last-child { border-bottom: 0; }
.nav-drop a b {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  color: var(--dim); white-space: nowrap;
}
.nav-drop a:hover { background: rgba(224,27,36,.12); }
.nav-drop a:hover b { color: var(--red); }

.head-act { display: flex; align-items: center; gap: 16px; }
.head-tel {
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: color .18s ease;
}
.head-tel:hover { color: #fff; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px;
  border: 1px solid var(--line-red); color: #fff;
  font-family: var(--display); font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  background: linear-gradient(120deg, rgba(224,27,36,.16), rgba(224,27,36,.04));
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-wa svg { color: var(--red); flex: none; }
.btn-wa:hover {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 0 26px rgba(224,27,36,.5);
}
.btn-wa:hover svg { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px;
  font-family: var(--display); font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 0 0 rgba(224,27,36,0); }
.btn-red:hover { background: #fff; color: var(--black); box-shadow: 0 0 34px rgba(224,27,36,.45); }
.btn-line { border-color: var(--line); color: var(--text); background: transparent; }
.btn-line:hover { border-color: var(--red); color: #fff; box-shadow: 0 0 26px rgba(224,27,36,.2); }

.burger {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); background: transparent;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer;
}
.burger span { width: 20px; height: 2px; background: #fff; transition: transform .2s ease; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden;
  min-height: min(96svh, 940px);
  display: flex; align-items: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.16) translate3d(-2%, -1.5%, 0); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--black) 4%, rgba(6,6,7,.6) 46%, rgba(6,6,7,.4) 100%),
    linear-gradient(to right, rgba(110,8,13,.5), transparent 62%);
}

/* subtiel technisch raster over de hero */
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 70% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 20%, #000 0%, transparent 70%);
}
/* trage rode lichtbaan die door de hero veegt */
.hero-beam {
  position: absolute; inset: -10% -30%; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent 44%, rgba(224,27,36,.13) 50%, transparent 56%);
  animation: beam 9s ease-in-out infinite;
}
@keyframes beam {
  0%, 100% { transform: translateX(-28%); }
  50%      { transform: translateX(28%); }
}

.hero-in {
  position: relative; z-index: 3;
  padding: 150px 0 120px;
  width: min(100% - 36px, var(--shell)); margin-inline: auto;
}
.hero h1 {
  font-size: clamp(64px, 14.5vw, 200px);
  transform: skewX(-5deg);
  transform-origin: left bottom;
}
.hero h1 .thin { font-weight: 400; }
.hline { display: block; overflow: hidden; }
.hero-lead { margin: 26px 0 30px; font-size: clamp(16px, 1.5vw, 20px); color: #D5D5DA; }
.hero-act { display: flex; gap: 12px; flex-wrap: wrap; }

/* intro-animatie van de hero-regels */
.hl { opacity: 0; transform: translateY(26px); animation: hin .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hl-1 { animation-delay: .1s }
.hl-2 { animation-delay: .22s }
.hl-3 { animation-delay: .34s }
.hl-4 { animation-delay: .5s }
.hl-5 { animation-delay: .62s }
.hl-6 { animation-delay: .8s }
@keyframes hin { to { opacity: 1; transform: none; } }

/* HUD-strip onderin de hero */
.hero-hud {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(6,6,7,.4); backdrop-filter: blur(6px);
}
.hero-hud { display: flex; }
.hud-item {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  padding: 14px 22px; border-right: 1px solid var(--line);
  font-family: var(--mono); font-size: 13px; color: var(--text);
  white-space: nowrap; overflow: hidden;
}
.hud-item:last-child { border-right: 0; }
.hud-item b {
  font-weight: 500; font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--dim);
}

.hero-scroll {
  position: absolute; right: 24px; bottom: 92px; z-index: 3;
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll i {
  width: 1px; height: 42px; background: var(--line); position: relative; overflow: hidden;
}
.hero-scroll i::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--red);
  animation: scrl 1.8s ease-in-out infinite;
}
@keyframes scrl { to { top: 110%; } }

/* ---------- Prijsband ---------- */

.pricebar {
  background: var(--night); color: var(--text);
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--line-red);
  border-bottom: 1px solid var(--line-red);
}
.pricebar-track { display: flex; width: max-content; animation: run 42s linear infinite; }
.pb-item {
  display: flex; align-items: baseline; gap: 10px; padding-right: 46px;
  font-family: var(--display); font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.pb-item b { color: var(--red); font-weight: 800; }
.pb-item::after { content: "/"; color: var(--dim); padding-left: 46px; font-weight: 400; }
@keyframes run { to { transform: translateX(-50%); } }

/* ---------- Scroll-showroom ---------- */

.show { position: relative; background: var(--black); }
.show-track { height: calc((var(--steps) + 2.6) * 100vh); }
.show-stick {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
}
.show-canvas { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease .1s; }
.show-canvas.is-on { opacity: 1; }
.show-canvas canvas { width: 100%; height: 100%; display: block; }
.show-vign {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 42%, rgba(6,6,7,.78) 100%),
    linear-gradient(to bottom, rgba(6,6,7,.55), transparent 18% 84%, rgba(6,6,7,.7));
}
/* subtiele filmkorrel over de hele showroom: haalt de "gladde webgl-look" eraf */
.show-stick::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .055;
  mix-blend-mode: overlay;
}

/* intro-kop van de showroom */
.show-head {
  position: absolute; z-index: 3; left: 0; right: 0; top: 16%;
  text-align: center; padding: 0 18px;
  transition: opacity .5s ease, transform .5s ease;
}
.show-head .lede { margin: 14px auto 0; }
.show-head.gone { opacity: 0; transform: translateY(-26px); pointer-events: none; }
.show-hint {
  display: inline-block; margin-top: 26px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--dim);
  animation: hintpulse 2.2s ease-in-out infinite;
}
@keyframes hintpulse { 50% { opacity: .35; } }

/* dienst-panelen links */
.show-panels { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.show-panel {
  position: absolute; left: max(18px, calc((100vw - var(--shell)) / 2));
  bottom: 15%;
  width: min(430px, calc(100vw - 36px));
  padding: 26px 28px 24px;
  background: rgba(10,10,13,.66);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  opacity: 0; transform: translateY(34px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}
.show-panel.on { opacity: 1; transform: none; pointer-events: auto; transition-delay: .18s; }

/* inhoud van het paneel komt gestaggerd binnen */
.show-panel > * {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.show-panel.on > * { opacity: 1; transform: none; }
.show-panel.on > *:nth-child(1) { transition-delay: .26s; }
.show-panel.on > *:nth-child(2) { transition-delay: .34s; }
.show-panel.on > *:nth-child(3) { transition-delay: .44s; }
.show-panel.on > *:nth-child(4) { transition-delay: .54s; }
.sp-num {
  font-size: 12px; letter-spacing: .3em; color: var(--red);
}
.sp-num::after { content: " /"; color: var(--dim); }
.sp-title { font-size: clamp(30px, 3.6vw, 48px); margin: 8px 0 10px; }
.sp-text { margin: 0; font-size: 15px; color: var(--muted); }
.sp-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line);
}
.sp-price {
  font-family: var(--display); font-size: 20px; font-weight: 800;
  text-transform: uppercase; color: var(--red); letter-spacing: .04em;
}
.sp-link {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--text); position: relative; padding-bottom: 2px;
}
.sp-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red); transform: scaleX(.35); transform-origin: left;
  transition: transform .25s ease;
}
.sp-link:hover::after { transform: scaleX(1); }
.sp-img { display: none; }

/* HUD onderin: teller + voortgang */
.show-hud {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 22px;
  padding: 16px max(18px, calc((100vw - var(--shell)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(6,6,7,.42); backdrop-filter: blur(6px);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
}
.show-count b { color: #fff; font-weight: 500; }
.show-bar {
  flex: 1; height: 2px; position: relative;
  background:
    repeating-linear-gradient(to right, rgba(255,255,255,.45) 0 1px, transparent 1px 25%),
    var(--line);
}
.show-bar i {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: var(--red); box-shadow: 0 0 12px rgba(224,27,36,.8);
}
.show-tag { color: var(--dim); }

/* hotspot op de auto */
.show-dot {
  position: absolute; z-index: 3; left: -100px; top: -100px;
  display: flex; align-items: center; gap: 10px; pointer-events: none;
  opacity: 0; transition: opacity .4s ease;
}
.show-dot.on { opacity: 1; }
.show-dot i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 14px rgba(224,27,36,.9);
  position: relative; flex: none;
}
.show-dot i::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 1px solid rgba(224,27,36,.7);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}
.show-dot span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text);
  background: rgba(6,6,7,.6); padding: 4px 10px; border: 1px solid var(--line);
  backdrop-filter: blur(4px); white-space: nowrap;
}

/* laadindicator totdat het 3D-model klaarstaat */
.show-load {
  position: absolute; z-index: 2; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--dim);
  transition: opacity .4s ease;
}
.show-load i {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  border: 2px solid var(--line); border-top-color: var(--red);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.show-load.done, .show.no3d .show-load { opacity: 0; visibility: hidden; }

/* outro-knop aan het einde van de showroom */
.show-outro {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 96px;
  display: flex; justify-content: center;
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.show-outro.on { opacity: 1; transform: none; pointer-events: auto; }

/* fallback zonder WebGL of bij reduced motion: gestapelde kaarten */
.show.no3d .show-track { height: auto; }
.show.no3d .show-stick { position: static; height: auto; overflow: visible; }
.show.no3d .show-canvas, .show.no3d .show-vign, .show.no3d .show-outro,
.show.no3d .show-hud, .show.no3d .show-dot, .show.no3d .show-hint { display: none; }
.show.no3d .show-head {
  position: static; text-align: left; transform: none; opacity: 1;
  width: min(100% - 36px, var(--shell)); margin: clamp(70px, 8vw, 120px) auto 48px; padding: 0;
}
.show.no3d .show-panels {
  position: static; display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  width: min(100% - 36px, var(--shell)); margin: 0 auto;
  padding-bottom: clamp(70px, 8vw, 120px);
}
.show.no3d .show-panel {
  position: relative; left: auto; bottom: auto; width: auto;
  opacity: 1; transform: none; pointer-events: auto;
  display: flex; flex-direction: column;
  background: var(--steel);
}
.show.no3d .show-panel > * { opacity: 1; transform: none; transition: none; }
.show.no3d .show-stick::after { display: none; }
.show.no3d .sp-img {
  display: block; order: -1; margin: -26px -28px 20px;
  width: calc(100% + 56px); max-width: none; aspect-ratio: 16/9; object-fit: cover;
}

/* ---------- Statistieken ---------- */

.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--night); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(30px, 4vw, 52px) 26px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat-n { font-size: clamp(44px, 5.4vw, 76px); color: #fff; }
.stat-n b { font-weight: 800; color: var(--red); }
.stat-l { font-size: 13px; color: var(--muted); max-width: 24ch; }

/* ---------- Secties ---------- */

.sec { padding: clamp(70px, 8vw, 120px) 0; }
.sec-head { max-width: 60ch; margin-bottom: 48px; }
.sec-title { font-size: clamp(38px, 6vw, 82px); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.chips li {
  border: 1px solid var(--line); padding: 7px 14px;
  font-size: 13px; font-weight: 600; color: var(--text);
}

/* ---------- Dienstentegels ---------- */

.tiles { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }

.tile {
  position: relative; grid-column: span 4; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; text-decoration: none; overflow: hidden; color: #fff;
  background: var(--steel);
  outline: 1px solid transparent; outline-offset: -1px;
  transition: outline-color .3s ease;
}
.tile:hover { outline-color: var(--line-red); }
.tile-a { grid-column: span 7; min-height: 420px; }
.tile-b { grid-column: span 5; min-height: 420px; }
.tile-w { grid-column: span 12; min-height: 260px; }

.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1);
  filter: saturate(1.05) contrast(1.03);
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,7,.94) 6%, rgba(6,6,7,.45) 48%, rgba(6,6,7,.12) 100%);
  transition: background .3s ease;
}
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { background: linear-gradient(to top, rgba(110,8,13,.92) 6%, rgba(6,6,7,.5) 52%, rgba(6,6,7,.12) 100%); }

.tile > * { position: relative; z-index: 2; }
.tile-num {
  position: absolute; top: 18px; right: 18px;
  font-size: 12px; letter-spacing: .2em; color: rgba(255,255,255,.55);
  border: 1px solid var(--line); padding: 3px 8px;
  background: rgba(6,6,7,.4); backdrop-filter: blur(4px);
}
.tile-name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(26px, 3vw, 42px); line-height: .9; margin: 0; }
.tile-a .tile-name, .tile-b .tile-name { font-size: clamp(34px, 4.4vw, 62px); }
.tile-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; font-size: 13px; color: #CFCFD6; }
.tile-price {
  font-family: var(--display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: #fff;
  background: var(--red); padding: 2px 10px; align-self: flex-start; margin-bottom: 14px;
}

/* ---------- Werk-rail ---------- */

.rail { overflow: hidden; padding: 8px 0 0; }
.rail-track { display: flex; gap: 12px; width: max-content; animation: run 60s linear infinite; }
.rail-track img {
  width: 300px; height: 300px; object-fit: cover;
  filter: saturate(1.02);
  transition: filter .3s ease;
}
.rail-track img:hover { filter: saturate(1.15) brightness(1.06); }
.rail:hover .rail-track { animation-play-state: paused; }

/* ---------- Over ---------- */

.about { background: var(--night); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.over-photo { position: relative; }
.over-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; position: relative; z-index: 1; }
.over-frame {
  position: absolute; inset: -14px auto auto -14px; width: 46%; height: 46%;
  border-top: 2px solid var(--red); border-left: 2px solid var(--red);
}
.over-photo::after {
  content: ""; position: absolute; right: -14px; bottom: -14px;
  width: 46%; height: 46%;
  border-bottom: 2px solid var(--red); border-right: 2px solid var(--red);
}
.over-claim {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px, 4vw, 54px); line-height: .9; margin: 26px 0 0; color: var(--red);
}
.quote-card { border-left: 3px solid var(--red); padding: 6px 0 6px 24px; margin: 34px 0 0; }
.quote-card p { margin: 0; font-size: 17px; font-style: italic; color: var(--muted); }
.quote-card footer {
  margin-top: 12px; font-family: var(--display); text-transform: uppercase;
  letter-spacing: .06em; font-size: 18px; font-weight: 700; color: var(--text);
}
.quote-card footer span { color: var(--muted); font-weight: 400; }

/* ---------- Sterrenhemel / review ---------- */

.sky {
  position: relative;
  background: var(--black);
  padding: clamp(110px, 15vw, 210px) 0 clamp(90px, 12vw, 170px);
  overflow: hidden;
  isolation: isolate;
}
.sky canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -2; display: block;
}
.sky::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(224,27,36,.16), transparent 62%),
    radial-gradient(90% 70% at 50% 50%, transparent 30%, rgba(6,6,7,.72) 100%);
}
.sky-in { position: relative; text-align: center; }
.sky-rule { width: 54px; height: 3px; background: var(--red); margin: 0 auto 26px; }
.sky blockquote {
  margin: 0 auto;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px, 4.4vw, 62px); line-height: .94;
  max-width: 20ch; color: #fff;
  text-wrap: balance;
}
.sky footer {
  margin-top: 26px; font-size: 12px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted);
}
.sky-note {
  margin-top: 44px; font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.34);
}

/* ---------- Subpagina's ---------- */

.page-hero {
  padding: clamp(56px, 7vw, 100px) 0 0;
  background:
    radial-gradient(80% 120% at 85% -20%, rgba(224,27,36,.14), transparent 60%),
    var(--black);
}
.page-hero-s { padding-top: clamp(28px, 3vw, 44px); }
.page-title { font-size: clamp(42px, 7vw, 96px); margin-bottom: 18px; }
.page-hero .lede { margin-bottom: 6px; }
.page-hero .chips { margin-bottom: 8px; }

.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim);
}
.crumbs a { text-decoration: none; color: var(--muted); transition: color .15s ease; }
.crumbs a:hover { color: var(--red); }
.crumbs b { color: var(--text); font-weight: 600; }

.dienst-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
.dienst-photo { position: relative; }
.dienst-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; position: relative; z-index: 1; }
.dienst-photo::after {
  content: ""; position: absolute; right: -14px; bottom: -14px;
  width: 46%; height: 46%;
  border-bottom: 2px solid var(--red); border-right: 2px solid var(--red);
}
.dienst-prijs {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--red);
  margin: 6px 0 22px;
}
.dienst-meta { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.dienst-meta li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.dienst-meta li:first-child { border-top: 1px solid var(--line); }
.dienst-meta b {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim); font-weight: 700;
}

.cta-band {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 120% at 15% 120%, rgba(224,27,36,.16), transparent 65%),
    var(--night);
  padding: clamp(44px, 6vw, 80px) 0;
}
.cta-band-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 52px); }
.cta-band p { color: var(--muted); margin: 10px 0 0; max-width: 52ch; }
.cta-band-act { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Werkwijze ---------- */

.proc {
  padding: clamp(70px, 8vw, 120px) 0;
  background: var(--night);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.proc-grid {
  list-style: none; margin: 0; padding: 0; counter-reset: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.proc-step {
  position: relative; padding: 26px 24px 28px;
  background: var(--steel); border: 1px solid var(--line);
  border-top: 2px solid var(--line); overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.proc-step::after {
  content: ""; position: absolute; left: 0; top: -2px; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.proc-step:hover::after { transform: scaleX(1); }
.proc-step:hover { transform: translateY(-4px); }
.proc-num { font-size: 12px; letter-spacing: .3em; color: var(--red); }
.proc-step h3 {
  font-size: clamp(24px, 2.4vw, 34px); margin: 12px 0 10px;
}
.proc-step p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- Contact ---------- */

.contact {
  position: relative; border-top: 1px solid var(--line); overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(55% 70% at 8% 100%, rgba(224,27,36,.12), transparent 70%);
}
.contact-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-list { list-style: none; margin: 28px 0 34px; padding: 0; display: grid; gap: 0; }
.contact-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list b {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim); font-weight: 700;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--red); }

.cform { display: grid; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: grid; gap: 7px; }
.cf-field span {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 13px 14px;
  background: var(--steel); color: var(--text);
  border: 1px solid var(--line); border-radius: 0;
  font: inherit; font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.cf-field textarea { resize: vertical; min-height: 130px; }
.cf-field select { appearance: none; background-image: linear-gradient(45deg, transparent 49%, var(--muted) 50%), linear-gradient(-45deg, transparent 49%, var(--muted) 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,27,36,.18);
}
.cf-bad input, .cf-bad textarea { border-color: var(--red); }
.cf-hp { position: absolute; left: -9999px; top: -9999px; }
.cf-send { justify-self: start; margin-top: 4px; }
.cf-note { margin: 2px 0 0; font-size: 12.5px; color: var(--dim); }

.form-note { padding: 14px 18px; margin-bottom: 18px; font-size: 15px; border: 1px solid; }
.form-ok  { border-color: rgba(80,200,120,.5); background: rgba(80,200,120,.08); color: #9fe0b4; }
.form-err { border-color: var(--line-red); background: rgba(224,27,36,.08); color: #f0a0a5; }

/* ---------- Footer ---------- */

.foot { background: var(--night); border-top: 2px solid var(--red); padding: 56px 0 24px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.foot h3 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--red); margin: 0 0 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; color: var(--muted); }
.foot a { text-decoration: none; transition: color .18s ease; }
.foot a:hover { color: #fff; }
.foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-logo .lg-mark { width: 34px; height: 21px; filter: none; }
.foot-logo .lg-word { font-size: 18px; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px;
}

/* ---------- Reveal ---------- */

.rv { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.rv.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .tile { grid-column: span 6; }
  .tile-a, .tile-b { grid-column: span 12; min-height: 340px; }
  .over-grid { grid-template-columns: 1fr; }
  .dienst-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding-left: 0; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hud-item:nth-child(4) { display: none; }
  .show.no3d .show-panels { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .head-tel { display: none; }
}

@media (max-width: 940px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--night); border-bottom: 2px solid var(--red);
    padding: 6px 18px 18px; display: none;
    max-height: calc(100svh - 76px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav > a, .nav-item > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-item { position: static; }
  .nav-item::before { display: none; }
  .nav-item > a { width: 100%; justify-content: space-between; }
  .nav-car { transition: transform .25s ease; }
  .nav-item.open .nav-car { transform: rotate(180deg); color: var(--red); }
  /* dropdown wordt een inklapbare sub-lijst: dicht totdat je op Diensten tikt */
  .nav-drop {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; min-width: 0; padding: 0 0 0 16px;
    background: transparent; border: 0; box-shadow: none; backdrop-filter: none;
    display: none;
  }
  .nav-item.open .nav-drop { display: block; }
  /* desktop-hover/focus-transform mag op mobiel nooit meeschuiven */
  .nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop,
  .nav-item.open .nav-drop { transform: none; }
  .nav-drop a {
    padding: 11px 0; font-size: 15px;
    justify-content: flex-start; white-space: normal; overflow-wrap: anywhere;
  }
  /* prijzen weglaten in het mobiele menu: rustiger en past altijd */
  .nav-drop a b { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .btn-wa span { display: none; }
  .btn-wa { padding: 0 13px; }
  .lg-word { font-size: 17px; }
  .lg-mark { width: 34px; height: 21px; }
  .head-in { gap: 12px; }

  .hero { min-height: 92svh; }
  .hero-in { padding-bottom: 150px; }
  .hero-scroll { display: none; }
  .hero-hud { flex-wrap: wrap; }
  .hud-item { flex: 1 1 50%; padding: 10px 16px; }
  .hud-item:nth-child(2) { border-right: 0; }
  .hud-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hud-item:nth-child(4) { display: flex; border-right: 0; }

  .show-panel { bottom: 76px; padding: 20px 20px 18px; }
  .show-dot span { display: none; }
  .sp-title { font-size: 30px; }
  .sp-text { font-size: 14px; }
  .show-hud { gap: 14px; padding-top: 12px; padding-bottom: 12px; }
  .show-tag { display: none; }
  .show-head { top: 20%; }

  .tile { grid-column: span 12; min-height: 260px; }
  .rail-track img { width: 210px; height: 210px; }
  .proc-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .show-outro { bottom: 84px; }
  .foot-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img { animation: none; transform: scale(1.02); }
  .hero-beam { animation: none; opacity: 0; }
  .hl { animation: none; opacity: 1; transform: none; }
  .pricebar-track, .rail-track { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  .tile img { transition: none; }
  .hero-scroll i::after, .show-dot i::after, .show-hint { animation: none; }
}
