/* ==========================================================================
   HERMELINK VERKEERSTECHNIEK  |  design system
   Kleur 70% donker / 20% licht / 10% signaaloranje.
   Display: Barlow Condensed 800/900. Body: Manrope.
   Signatuur: de ingekeepte chevron uit het logo (clip-path), nooit als decoratie
   op zich, altijd als teller, richting of actieve stand.
   ========================================================================== */

:root {
  --black: #1E1F23;
  --dark: #2A2C30;
  --dark-2: #232428;
  --orange: #F4510B;
  --orange-deep: #A8380A;
  --orange-dim: #5C2A16;
  --white: #FFFFFF;
  --grey: #D9D9D7;
  --grey-light: #ECECEA;
  --on-dark-muted: #B7B8B5;
  --on-light-muted: #4A4C50;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(30, 31, 35, .18);

  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1440px;
  --section: clamp(96px, 12vw, 176px);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .35s;
  --t-slow: .9s;

  --z-nav: 100;
  --z-bar: 150;
  --z-menu: 200;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

/* skip-link: alleen zichtbaar bij toetsenbordfocus */
.skip { position: absolute; left: -999px; top: 8px; z-index: 300; background: var(--orange); color: var(--black); padding: 10px 16px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.skip:focus { left: 8px; }

/* ---------- type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.display--xl { font-size: clamp(3.75rem, 10.5vw, 9rem); font-weight: 900; line-height: .88; }
.display--l  { font-size: clamp(3rem, 6.8vw, 6.5rem); }
.display--m  { font-size: clamp(1.75rem, 3.6vw, 3.25rem); }
.display--s  { font-size: clamp(1.5rem, 2.2vw, 2rem); }

.label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8125rem;
  line-height: 1;
}
.lede { font-size: clamp(1.125rem, 1.4vw, 1.375rem); line-height: 1.55; max-width: 34em; text-wrap: pretty; }
.muted { color: var(--on-dark-muted); }
.light .muted, .white .muted { color: var(--on-light-muted); }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 32px); }
.section { position: relative; padding-block: var(--section); }
.light { background: var(--grey-light); color: var(--black); }
.white { background: var(--white); color: var(--black); }

/* sectieteller: cijfer + drie chevrons, alleen waar de volgorde iets betekent */
.counter { display: flex; align-items: center; gap: 16px; }
.counter__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(4rem, 8vw, 7.5rem); line-height: .8; letter-spacing: -.02em; }
.light .counter__num { color: var(--grey); }
.dark-counter .counter__num { color: var(--dark); }

/* ---------- chevron (logo-geometrie) ---------- */
.chev {
  display: inline-block;
  width: .6em; height: 1em;
  background: var(--orange);
  clip-path: polygon(0 0, 56% 0, 100% 50%, 56% 100%, 0 100%, 44% 50%);
  flex: none;
}
.chevs { display: inline-flex; gap: .12em; font-size: 1em; }
.chevs .chev:nth-child(2) { background: var(--orange-deep); }
.chevs .chev:nth-child(3) { background: var(--orange-dim); }
.light .chevs .chev:nth-child(2), .white .chevs .chev:nth-child(2) { background: #F0A07C; }
.light .chevs .chev:nth-child(3), .white .chevs .chev:nth-child(3) { background: #F7CDB9; }

/* wegmarkering: onderbroken lijn 3:9 */
.marking { height: 2px; background: repeating-linear-gradient(90deg, currentColor 0 36px, transparent 36px 108px); opacity: .35; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 56px; padding: 0 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1;
  border: 1px solid transparent;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .chev { width: .5em; height: .85em; transition: transform var(--t-fast) var(--ease); }
.btn:hover .chev { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: var(--black); border-color: var(--orange); }
.btn--primary .chev { background: var(--black); }
.btn--primary:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--white); color: var(--white); }
.btn--black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black .chev { background: var(--orange); }
.btn--black:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--outline-black { color: var(--black); border-color: rgba(30,31,35,.55); }
.btn--outline-black .chev { background: var(--black); }
.btn--outline-black:hover { background: var(--black); color: var(--white); }
.btn--outline-black:hover .chev { background: var(--orange); }

/* ---------- navigatie ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  height: 84px;
  display: flex; align-items: center;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(30,31,35,.92); border-bottom-color: var(--line-dark); backdrop-filter: blur(10px); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav__logo { display: block; }
.nav__logo img { height: 60px; width: auto; }
.nav__links { display: flex; gap: clamp(20px, 3vw, 44px); }
.nav__links a {
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem;
  letter-spacing: .12em; text-transform: uppercase; padding: 8px 0; color: var(--white);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-fast) var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { min-height: 46px; padding: 0 20px; font-size: 1rem; }
.nav__burger { display: none; width: 48px; height: 48px; position: relative; }
.nav__burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--white); transition: transform var(--t-fast) var(--ease), opacity var(--t-fast); }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger span:nth-child(3) { top: 30px; }
.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu { color: var(--white);
  position: fixed; inset: 0; z-index: var(--z-menu); background: var(--black);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 110px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden;
}
.menu-open .menu { transform: translateY(0); visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 4px; }
.menu__links a { display: flex; align-items: center; gap: 18px; padding: 10px 0; font-size: clamp(2.75rem, 12vw, 4rem); }
.menu__links a .chev { width: .35em; height: .6em; opacity: 0; transform: translateX(-8px); transition: opacity var(--t-fast), transform var(--t-fast) var(--ease); }
.menu__links a:hover .chev { opacity: 1; transform: none; }
.menu__foot { display: flex; flex-direction: column; gap: 8px; color: var(--on-dark-muted); font-size: .9375rem; }
.menu__foot strong { color: var(--white); font-weight: 600; }
.menu-open { overflow: hidden; }
.menu-open .nav { background: var(--black); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 0 clamp(72px, 10vh, 120px);
  isolation: isolate; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; opacity: .6; filter: saturate(.8) contrast(1.05); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,31,35,.55) 0%, rgba(30,31,35,.15) 35%, rgba(30,31,35,.75) 75%, var(--black) 100%),
    linear-gradient(90deg, rgba(30,31,35,.7) 0%, rgba(30,31,35,.1) 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero__mark {
  position: absolute; right: -2vw; top: 18vh; z-index: -1; pointer-events: none;
  font-size: clamp(180px, 34vw, 520px); opacity: .07;
}
.hero__mark .chevs { gap: .06em; }
.hero__mark .chev { background: var(--white); }
.hero__content { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; }
.hero__title { grid-column: 1 / 11; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title .line:nth-child(2) { color: var(--orange); }
.hero__aside { grid-column: 1 / 7; display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { grid-column: 9 / 13; justify-self: end; align-self: end; display: flex; flex-direction: column; gap: 6px; text-align: right; color: var(--on-dark-muted); font-size: .9375rem; }
.hero__meta strong { color: var(--white); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.scroll-cue { position: absolute; left: var(--gutter); bottom: 32px; display: flex; align-items: center; gap: 12px; color: var(--on-dark-muted); }
.scroll-cue .chev { transform: rotate(90deg); width: .55em; height: .9em; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(6px); } }

/* ---------- intro / positionering ---------- */
.intro { padding-top: clamp(80px, 10vw, 140px); }
.intro__head { grid-column: 1 / 4; display: flex; flex-direction: column; gap: 28px; }
.intro__title { grid-column: 4 / 10; }
.intro__text { grid-column: 8 / 13; display: flex; flex-direction: column; gap: 24px; margin-top: clamp(40px, 6vw, 96px); }
.intro__text p:first-child { font-size: clamp(1.125rem, 1.4vw, 1.375rem); line-height: 1.55; }
.intro__rule { grid-column: 1 / 13; margin-top: clamp(56px, 8vw, 120px); color: var(--black); }
.intro__lanes { grid-column: 1 / 13; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; margin-top: 40px; }
.intro__lanes li { display: flex; align-items: baseline; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .06em; text-transform: uppercase; }
.intro__lanes .chev { width: .45em; height: .75em; align-self: center; }

/* ---------- diensten ---------- */
.services { background: var(--black); }
.services__head { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; margin-bottom: clamp(48px, 6vw, 96px); }
.services__head h2 { grid-column: 1 / 7; }
.services__head p { grid-column: 8 / 13; }
.service-list { border-top: 1px solid var(--line-dark); }
.service {
  position: relative;
  display: grid; grid-template-columns: 96px minmax(0,1fr) minmax(0,1fr) 64px; align-items: center; gap: 32px;
  padding: clamp(28px, 3.2vw, 44px) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background var(--t-fast) var(--ease);
}
.service::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.service::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .6s var(--ease);
  background: linear-gradient(90deg, var(--dark-2), transparent 70%);
}
.service:hover::before, .service:focus-within::before { transform: scaleX(1); }
.service:hover::after, .service:focus-within::after { opacity: 1; }
.service__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3vw, 3rem); line-height: 1; color: var(--on-dark-muted); transition: color var(--t-fast); }
.service:hover .service__num { color: var(--orange); }
.service__title { transition: transform .5s var(--ease); }
.service:hover .service__title { transform: translateX(10px); }
.service__text { color: var(--on-dark-muted); max-width: 32em; }
.service__go { justify-self: end; display: flex; align-items: center; }
.service__go .chevs { font-size: 1.5rem; }
.service__go .chev { transition: transform .5s var(--ease); }
.service:hover .service__go .chev:nth-child(1) { transform: translateX(8px); }
.service:hover .service__go .chev:nth-child(2) { transform: translateX(5px); }
.service:hover .service__go .chev:nth-child(3) { transform: translateX(2px); }

/* ---------- statement ---------- */
.statement {
  position: relative; min-height: 88vh; display: flex; align-items: center; isolation: isolate; overflow: hidden;
  padding-block: clamp(120px, 16vw, 220px);
}
.statement__bg { position: absolute; inset: 0; z-index: -1; }
.statement__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: saturate(.8); }
.statement__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--black) 0%, rgba(30,31,35,.35) 30%, rgba(30,31,35,.35) 70%, var(--black) 100%); }
.statement__inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; }
.statement__title { grid-column: 1 / 11; }
.statement__title em { font-style: normal; color: var(--orange); }
.statement__line { grid-column: 9 / 13; display: flex; align-items: center; gap: 14px; color: var(--on-dark-muted); }
.statement__line .chevs { font-size: 1rem; }

/* ---------- werkwijze ---------- */
.process__head { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; margin-bottom: clamp(64px, 8vw, 128px); }
.process__head .counter { grid-column: 1 / 3; }
.process__head h2 { grid-column: 3 / 11; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(24px, 3vw, 48px); }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 2px; background: repeating-linear-gradient(90deg, var(--black) 0 36px, transparent 36px 108px); opacity: .3; }
.timeline__track { position: absolute; left: 0; top: 11px; height: 2px; width: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.step { position: relative; padding-top: 44px; }
.step::before { content: ""; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--grey-light); border: 2px solid var(--black); }
.step.is-first::before { background: var(--orange); border-color: var(--orange); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .14em; color: var(--on-light-muted); margin-bottom: 14px; }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--on-light-muted); max-width: 22em; text-wrap: pretty; }

/* ---------- waarom ---------- */
.why { background: var(--dark-2); }
.why__head { margin-bottom: clamp(48px, 6vw, 96px); display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; }
.why__head h2 { grid-column: 1 / 8; }
.why__head p { grid-column: 8 / 13; }
.usp-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.usp { position: relative; background: var(--dark-2); padding: clamp(32px, 3.5vw, 56px) clamp(24px, 2.5vw, 40px); min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; transition: background var(--t-fast) var(--ease); }
.usp:hover { background: var(--dark); }
.usp .chev { width: 12px; height: 20px; background: var(--on-dark-muted); opacity: .5; transition: background var(--t-fast), opacity var(--t-fast), transform .5s var(--ease); }
.usp:hover .chev { background: var(--orange); opacity: 1; transform: translateX(4px); }
.usp h3 { font-size: clamp(2.25rem, 3.4vw, 3.5rem); }
.usp p { color: var(--on-dark-muted); max-width: 22em; }
.usp--accent h3 { color: var(--orange); }

/* ---------- vakkennis ---------- */
.certs__head { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.certs__head h2 { grid-column: 1 / 7; }
.certs__head p { grid-column: 8 / 13; }
.spec { border-top: 2px solid var(--black); }
.spec__row { display: grid; grid-template-columns: 200px 1fr 1fr 220px; gap: 32px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line-light); }
.spec__row--head { padding: 14px 0; border-bottom: 1px solid var(--black); }
.spec__row--head span { color: var(--on-light-muted); }
.spec__code { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.25rem, 3.5vw, 3.25rem); line-height: .9; }
.spec__name { font-weight: 600; }
.spec__desc { color: var(--on-light-muted); }
.spec__status { justify-self: end; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid var(--black); font-family: var(--font-display); font-weight: 700; font-size: .9375rem; letter-spacing: .12em; text-transform: uppercase; }
.spec__status .chev { width: .45em; height: .75em; }
.certs__note { margin-top: 32px; color: var(--on-light-muted); font-size: .9375rem; max-width: 60ch; }

/* ---------- over ---------- */
.about { background: var(--black); padding-block: 0; overflow: hidden; }
.about__inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; min-height: 90vh; }
.about__media { grid-column: 1 / 6; position: relative; margin-left: calc(-1 * var(--gutter)); }
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: 40% center; filter: saturate(.8) contrast(1.05); }
.about__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,31,35,.15) 0%, rgba(30,31,35,.05) 40%, var(--black) 100%), linear-gradient(180deg, var(--black) 0%, rgba(30,31,35,.1) 30%, rgba(30,31,35,.1) 70%, var(--black) 100%); }
.about__body { grid-column: 7 / 13; display: flex; flex-direction: column; justify-content: center; gap: 32px; padding-block: var(--section); }
.about__body h2 { margin-bottom: 8px; }
.about__body p { color: var(--on-dark-muted); max-width: 36em; text-wrap: pretty; }
.about__body p strong { color: var(--white); font-weight: 600; }
.about__tags { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 8px; }
.about__tags li { font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .9375rem; display: flex; align-items: center; gap: 10px; }
.about__tags .chev { width: .4em; height: .7em; }

/* ---------- eind-cta ---------- */
.cta { background: var(--orange); color: var(--black); overflow: hidden; }
.cta__inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; position: relative; }
.cta__title { grid-column: 1 / 11; font-size: clamp(3.5rem, 9vw, 8.5rem); font-weight: 900; }
.cta__body { grid-column: 1 / 7; display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }
.cta__body p { font-size: 1.25rem; max-width: 30em; font-weight: 500; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta__mail { grid-column: 8 / 13; justify-self: end; align-self: end; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 2px solid var(--black); padding-bottom: 4px; }
.cta__mail:hover { color: var(--white); border-color: var(--white); }
.cta__mark { position: absolute; right: -4vw; top: -20%; font-size: clamp(240px, 30vw, 460px); opacity: .1; pointer-events: none; }
.cta__mark .chev { background: var(--black); }

/* ---------- contact ---------- */
.contact { background: var(--black); }
.contact__inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; }
.contact__info { grid-column: 1 / 6; display: flex; flex-direction: column; gap: 48px; }
.contact__list { display: flex; flex-direction: column; border-top: 1px solid var(--line-dark); }
.contact__item { display: flex; flex-direction: column; gap: 10px; padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.contact__item .label { color: var(--on-dark-muted); }
.contact__item a { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 2.6vw, 2.5rem); line-height: 1; text-transform: uppercase; letter-spacing: .01em; display: inline-flex; align-items: center; gap: 16px; }
.contact__item a .chev { width: .4em; height: .7em; transition: transform var(--t-fast) var(--ease); }
.contact__item a:hover .chev { transform: translateX(6px); }
.contact__item small { color: var(--on-dark-muted); font-size: .9375rem; }
.form { grid-column: 7 / 13; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 32px; align-content: start; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field--full { grid-column: 1 / -1; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field label { color: var(--on-dark-muted); }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.35);
  padding: 12px 0; color: var(--white); border-radius: 0; resize: vertical; min-height: 48px;
  transition: border-color var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: #8E8F8C; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--orange); }
.form__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 8px; }
.form__foot small { color: var(--on-dark-muted); max-width: 32ch; }
.form__status { grid-column: 1 / -1; color: var(--orange); font-weight: 600; min-height: 1.5em; }

/* ---------- footer ---------- */
.footer { background: var(--black); color: var(--white); padding: 72px 0 40px; border-top: 1px solid var(--line-dark); }
.footer__inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: start; }
.footer__brand { grid-column: 1 / 5; display: flex; flex-direction: column; gap: 20px; }
.footer__brand img { height: 64px; width: auto; }
.footer__brand p { color: var(--on-dark-muted); }
.footer__brand p strong { color: var(--white); font-weight: 600; display: block; }
.footer__nav { grid-column: 7 / 10; display: flex; flex-direction: column; gap: 10px; }
.footer__legal { grid-column: 10 / 13; display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__legal a { font-family: var(--font-display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 1rem; }
.footer__bottom { grid-column: 1 / 13; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: var(--on-dark-muted); font-size: .875rem; }
.footer__bottom .chevs { justify-self: end; }
.footer__bottom .chevs { font-size: .875rem; }

/* ---------- whatsapp zwevend (desktop) ---------- */
.wa-float {
  position: fixed; right: 28px; bottom: 28px; z-index: var(--z-bar);
  display: inline-flex; align-items: center; gap: 12px; height: 56px; padding: 0 20px 0 18px;
  background: var(--dark); color: var(--white); border: 1px solid var(--line-dark);
  font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .9375rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.wa-float:hover { background: var(--black); border-color: var(--orange); color: var(--white); }
.wa-float .chev { width: .55em; height: .95em; }

/* ---------- mobiele contactbalk ---------- */
.mobile-bar { display: none; }

/* ---------- reveal (progressieve verbetering: alles is zichtbaar zonder JS) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal="line"] { opacity: 1; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease); }
.js [data-reveal="line"].in { transform: scaleX(1); }
.js .timeline__track.in { transform: scaleX(1); transition: transform 1.6s var(--ease) .2s; }
.js .hero__title .line > span { transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.js .hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.js .hero__aside { opacity: 0; animation: fade 1s var(--ease) .5s forwards; }
.js .hero__meta { opacity: 0; animation: fade 1s var(--ease) .7s forwards; }
@keyframes rise { to { transform: none; } }
@keyframes fade { to { opacity: 1; } }

/* subtiele parallax alleen waar de browser scroll-timelines kent */
@supports (animation-timeline: view()) {
  .statement__bg img { animation: drift linear both; animation-timeline: view(); transform-origin: center; }
  @keyframes drift { from { transform: translateY(-6%) scale(1.08); } to { transform: translateY(6%) scale(1.08); } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal], .js .hero__title .line > span, .js .hero__aside, .js .hero__meta { opacity: 1; transform: none; }
  .js .timeline__track { transform: scaleX(1); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .intro__head { grid-column: 1 / 13; flex-direction: row; align-items: flex-end; gap: 32px; }
  .intro__title { grid-column: 1 / 12; margin-top: 32px; }
  .intro__text { grid-column: 3 / 13; }
  .service { grid-template-columns: 72px minmax(0,1fr) 56px; }
  .service__text { grid-column: 2; }
  .service__go { grid-column: 3; grid-row: 1 / span 2; }
  .about__media { grid-column: 1 / 7; }
  .about__body { grid-column: 7 / 13; }
  .contact__info { grid-column: 1 / 13; }
  .form { grid-column: 1 / 13; margin-top: 48px; }
  .spec__row { grid-template-columns: 140px 1fr 180px; }
  .spec__desc { grid-column: 2; }
  .spec__status { grid-column: 3; grid-row: 1 / span 2; }
  .spec__row--head { grid-template-columns: 140px 1fr 180px; }
  .spec__row--head .spec__desc { display: none; }
}

@media (max-width: 900px) {
  :root { --section: clamp(80px, 14vw, 120px); }
  .display--xl { font-size: clamp(2.5rem, 11.5vw, 6rem); }
  body { padding-bottom: 72px; }
  .nav { height: 72px; }
  .nav__logo img { height: 46px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero { padding-top: 120px; }
  .hero__title { grid-column: 1 / 13; }
  .hero__aside { grid-column: 1 / 13; margin-top: 24px; }
  .hero__meta { grid-column: 1 / 13; justify-self: start; text-align: left; margin-top: 8px; }
  .hero__mark { right: -20vw; top: 10vh; font-size: 70vw; }
  .scroll-cue { display: none; }
  .intro__head { flex-direction: column; align-items: flex-start; }
  .intro__text { grid-column: 1 / 13; margin-top: 40px; }
  .intro__lanes { grid-template-columns: 1fr; gap: 14px; }
  .services__head h2, .services__head p, .why__head h2, .why__head p, .certs__head h2, .certs__head p { grid-column: 1 / 13; }
  .service { grid-template-columns: 48px minmax(0,1fr) 36px; gap: 14px 16px; padding: 28px 0; }
  .service__num { font-size: 1.5rem; }
  .service__go .chevs { font-size: 1.125rem; }
  .service:hover .service__title { transform: none; }
  .statement { min-height: 70vh; }
  .statement__title { grid-column: 1 / 13; }
  .statement__line { grid-column: 1 / 13; margin-top: 8px; }
  .process__head .counter { grid-column: 1 / 13; }
  .process__head h2 { grid-column: 1 / 13; margin-top: 24px; }
  /* verticale tijdlijn */
  .timeline { grid-template-columns: 1fr; gap: 0; padding-left: 40px; }
  .timeline::before { left: 11px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--black) 0 24px, transparent 24px 72px); }
  .timeline__track { left: 11px; top: 0; width: 2px; height: 100%; transform: scaleY(0); transform-origin: top; }
  .js .timeline__track.in { transform: scaleY(1); }
  .step { padding: 0 0 48px 0; }
  .step::before { left: -40px; top: 2px; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp { min-height: 0; gap: 24px; }
  .spec__row, .spec__row--head { grid-template-columns: 96px 1fr; gap: 12px 20px; }
  .spec__status { grid-column: 1 / -1; grid-row: auto; justify-self: start; }
  .spec__row--head .spec__status { display: none; }
  .about__inner { grid-template-columns: 1fr; min-height: 0; }
  .about__media { grid-column: 1; margin-inline: calc(-1 * var(--gutter)); height: 70vw; max-height: 520px; }
  .about__media::after { background: linear-gradient(180deg, transparent 40%, var(--black) 100%); }
  .about__body { grid-column: 1; padding-top: 24px; }
  .cta__title { grid-column: 1 / 13; }
  .cta__body { grid-column: 1 / 13; margin-top: 32px; }
  .cta__mail { grid-column: 1 / 13; justify-self: start; margin-top: 8px; }
  .cta__actions .btn { flex: 1 1 100%; justify-content: center; }
  .form { grid-template-columns: 1fr; }
  .footer__brand, .footer__nav, .footer__legal { grid-column: 1 / 13; }
  .footer__legal { flex-direction: row; gap: 24px; }
  .footer__bottom { grid-template-columns: 1fr; }
  .footer__bottom .footer__credit, .footer__bottom .chevs { justify-self: start; }
  .wa-float { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-bar);
    display: grid; grid-template-columns: 1fr 1fr; height: 72px; padding-bottom: env(safe-area-inset-bottom);
    background: var(--black); border-top: 1px solid var(--line-dark);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: .1em; text-transform: uppercase;
  }
  .mobile-bar a:first-child { background: var(--orange); color: var(--black); }
  .mobile-bar a:first-child .chev { background: var(--black); }
  .mobile-bar a:last-child { color: var(--white); border-left: 1px solid var(--line-dark); }
  .mobile-bar .chev { width: .5em; height: .85em; }
  .menu { padding-bottom: 96px; }
}

@media (max-width: 480px) {
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .display--xl { font-size: clamp(2.5rem, 11.5vw, 5rem); }
  .counter__num { font-size: 3.5rem; }
}

/* ==========================================================================
   COOKIEBANNER, JURIDISCHE PAGINA'S, 404
   ========================================================================== */
.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: var(--z-menu);
  width: min(100% - 40px, 520px);
  background: var(--black); color: var(--white); border: 1px solid var(--line-dark); border-top: 3px solid var(--orange);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}
.cookie[hidden] { display: none; }
.cookie p { font-size: .9375rem; line-height: 1.5; color: var(--on-dark-muted); }
.cookie p a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.cookie p a:hover { color: var(--orange); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie__actions .btn { min-height: 46px; padding: 0 20px; font-size: 1rem; }
@media (max-width: 900px) { .cookie { left: 12px; bottom: 84px; width: min(100% - 24px, 520px); } .cookie__actions .btn { flex: 1 1 auto; justify-content: center; } }

.footer__credit { color: var(--on-dark-muted); justify-self: center; text-align: center; }
.footer__credit:hover { color: var(--orange); }

/* juridische pagina's */
.nav--solid { position: sticky; background: var(--black); border-bottom-color: var(--line-dark); }
.legal { padding: clamp(56px, 8vw, 112px) 0 var(--section); }
.legal__head { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.legal__head h1 { grid-column: 1 / 9; }
.legal__head p { grid-column: 9 / 13; color: var(--on-light-muted); font-size: .9375rem; }
.legal__body { max-width: 72ch; display: flex; flex-direction: column; gap: 18px; }
.legal__body h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1; margin-top: 28px; display: flex; align-items: center; gap: 12px; }
.legal__body h2 .chev { width: .4em; height: .7em; }
.legal__body p, .legal__body li { color: var(--on-light-muted); text-wrap: pretty; }
.legal__body ul { padding-left: 20px; list-style: square; display: flex; flex-direction: column; gap: 8px; }
.legal__body ul li::marker { color: var(--orange); }
.legal__body strong { color: var(--black); font-weight: 600; }
.legal__body a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--orange); }
.legal__meta { border-top: 2px solid var(--black); margin-top: 8px; padding-top: 18px; display: grid; grid-template-columns: 180px 1fr; gap: 10px 24px; font-size: .9375rem; }
.legal__meta dt { font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.legal__meta dd { margin: 0; color: var(--on-light-muted); }
@media (max-width: 900px) { .legal__head h1, .legal__head p { grid-column: 1 / 13; } .legal__meta { grid-template-columns: 1fr; gap: 4px 0; } .legal__meta dd { margin-bottom: 10px; } }

/* 404 */
.notfound { min-height: 100svh; display: flex; align-items: center; padding: 140px 0 120px; background: var(--black); position: relative; overflow: hidden; }
.notfound__mark { position: absolute; right: -6vw; top: 10vh; font-size: clamp(240px, 36vw, 560px); opacity: .06; pointer-events: none; }
.notfound__mark .chev { background: var(--white); }
.notfound__inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 32px; }
.notfound__code { grid-column: 1 / 13; font-family: var(--font-display); font-weight: 900; font-size: clamp(6rem, 22vw, 20rem); line-height: .8; color: var(--orange); letter-spacing: -.02em; }
.notfound__title { grid-column: 1 / 10; margin-top: 24px; }
.notfound__text { grid-column: 1 / 7; display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.notfound__text p { color: var(--on-dark-muted); max-width: 34em; }
