/* Garage De Wilde — style.css
   Bron: design-export "Redesign v3 High-end.dc.html" (visuele stijl, Anton-koppen, rood accent)
   + "Redesign.dc.html" artboard 2 (mobiel gedrag) en artboard 3 (stijlblad, states).
   Geen frameworks, geen externe requests. Mobile-first, breakpoints ~600 / 900 / 1200px. */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; color: inherit; }
a { text-decoration: none; }
button { cursor: pointer; }

/* ---------- 2. Custom properties ---------- */
:root {
  /* palet — design-export/Redesign v3 High-end.dc.html + artboard 3 (stijlblad) */
  --c-antraciet: #141517;
  --c-antraciet-2: #101113;
  --c-grafiet: #1B1D20;
  --c-veld-bg: #16181B;
  --c-rook: #2C2F34;
  --c-lijn-grafiet: #33373C;
  --c-chrome: #C9CFD6;
  --c-wit-zacht: #F2F4F6;
  --c-koptekst: #E9EBEE;
  --c-body: #B7BCC3;
  --c-body-zacht: #D3D7DC;
  --c-gedempt: #868D95;
  --c-gedempt-2: #868D95; /* stijlblad: gedempt grijs, 5.4:1 op antraciet */
  --c-gedempt-3: #9AA1A9;
  --c-fout: #D08C8C;
  --c-fout-bg: #1E1719;
  --c-fout-rand: #4A3236;
  --c-accent: #A63D34;
  --c-accent-hover: #C4574C;
  --c-placeholder: #5C636B;

  --font-display: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
  --font-body: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, Menlo, monospace;

  --radius: 2px;
  --container-max: 1440px;

  --pad-inline: 20px;
  --section-pad: 64px;

  --header-h: 60px;
  --metabar-h: 0px;
  --bottombar-h: 58px;

  --reveal-d: 0s;
}

@media (min-width: 600px) {
  :root { --pad-inline: 32px; --section-pad: 88px; }
}

@media (min-width: 900px) {
  :root {
    --pad-inline: 40px;
    --section-pad: 120px;
    --header-h: 72px;
    --metabar-h: 38px;
    --bottombar-h: 0px;
  }
}

@media (min-width: 1200px) {
  :root { --section-pad: 140px; }
}

/* ---------- 3. Basis ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--metabar-h) + 12px);
}

body {
  background: var(--c-antraciet-2);
  color: var(--c-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: var(--bottombar-h);
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

main { display: block; }

.page {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--c-antraciet-2);
  /* geen overflow:hidden — hero, statement en partners lopen op brede schermen tot de schermrand */
}
/* Full-bleed: hero, statement en partners laten hun achtergrond van schermrand tot schermrand lopen
   (left/right: calc(50% - 50vw)); de inhoud blijft binnen de 1440-container. overflow-x: clip op html
   voorkomt de horizontale scroll die 100vw anders veroorzaakt. */
html { overflow-x: clip; }

a { color: var(--c-chrome); }
a:hover { color: var(--c-wit-zacht); }

input::placeholder, textarea::placeholder { color: var(--c-placeholder); }

/* Skip-link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--c-accent);
  color: var(--c-wit-zacht);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* Focus-stijl (chrome-kleur) */
:focus-visible {
  outline: 2px solid var(--c-chrome);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 4. Scroll-reveal / teller — begintoestand enkel met JS ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease var(--reveal-d), transform 0.8s ease var(--reveal-d);
}
html.js [data-reveal].is-zichtbaar {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- 5. Meta-balk ---------- */
.meta-bar {
  display: none;
  position: relative;
  isolation: isolate;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 40px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--c-gedempt-2);
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .meta-bar { display: flex; }
}
.meta-bar::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -1;
  border-bottom: 1px solid #202327;
}

/* ---------- 6. Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad-inline);
}
/* Achtergrond en lijn van de header lopen tot de schermrand; de inhoud blijft in de container. */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -1;
  border-bottom: 1px solid var(--c-rook);
  background: rgba(16, 17, 19, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-link { display: block; line-height: 0; }
.logo-link img { height: 28px; width: auto; }
@media (min-width: 900px) { .logo-link img { height: 36px; } }

.site-nav { display: none; }
@media (min-width: 900px) {
  .site-nav {
    display: flex;
    gap: 28px;
  }
  .site-nav a {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-body);
  }
  .site-nav a:hover { color: var(--c-wit-zacht); }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 900px) {
  .site-header__actions { gap: 24px; }
}

.header-tel {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-chrome);
  white-space: nowrap;
}
@media (min-width: 900px) { .header-tel { font-size: 13px; } }

.header-tel:hover { color: var(--c-wit-zacht); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  background: transparent;
}
@media (min-width: 900px) { .btn { height: 42px; padding: 0 24px; } }

.btn--primary {
  background: var(--c-accent);
  color: #F4EFEE;
}
.btn--primary:hover, .btn--primary:focus-visible { background: var(--c-accent-hover); color: #F4EFEE; }
.btn--primary:disabled { background: #24262A; color: var(--c-placeholder); cursor: not-allowed; }

.btn--outline {
  border: 1px solid rgba(201, 207, 214, 0.55);
  color: var(--c-wit-zacht);
  background: rgba(16, 17, 19, 0.4);
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
}
.btn--outline:hover, .btn--outline:focus-visible { border-color: var(--c-wit-zacht); color: var(--c-wit-zacht); }

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 44px;
  padding: 6px;
  background: transparent;
  border: none;
}
@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-koptekst);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.progress-bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: var(--c-accent);
}

/* ---------- 7. Mobiele drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--c-antraciet);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  visibility: hidden;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media (min-width: 900px) { .drawer { display: none; } }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad-inline);
  border-bottom: 1px solid var(--c-rook);
  flex: none;
}

.drawer__close {
  position: relative;
  width: 32px;
  height: 44px;
  background: transparent;
  border: none;
}
.drawer__close::before, .drawer__close::after {
  content: "";
  position: absolute;
  top: 50%; left: 6px;
  width: 20px;
  height: 1.5px;
  background: var(--c-koptekst);
}
.drawer__close::before { transform: rotate(45deg); }
.drawer__close::after { transform: rotate(-45deg); }

.drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px var(--pad-inline) 0;
  overflow-y: auto;
}

.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-rook);
  color: var(--c-koptekst);
}
.drawer__link:hover { color: var(--c-wit-zacht); }

.drawer__link-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-gedempt);
}
.drawer__link-label {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c-koptekst);
}

.drawer__footer {
  margin-top: auto;
  padding: 24px var(--pad-inline) 32px;
}
.drawer__hours {
  font-size: 13px;
  color: var(--c-gedempt);
  line-height: 1.8;
}
.drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.drawer__actions .btn { width: 100%; height: 50px; font-size: 14px; }

body.drawer-open { overflow: hidden; }

/* ---------- 8. Sticky mobiele onderbalk ---------- */
.bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: flex;
  gap: 1px;
  background: var(--c-rook);
  border-top: 1px solid var(--c-rook);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 900px) { .bottom-bar { display: none; } }

.bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--bottombar-h);
  font-size: 14px;
  color: var(--c-koptekst);
  background: #191B1E;
  font-family: var(--font-mono);
}
.bottom-bar a.bottom-bar__cta {
  flex: 1.4;
  background: var(--c-accent);
  color: #F4EFEE;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
}

/* ---------- 9. Sectie-basis ---------- */
.section {
  padding: var(--section-pad) var(--pad-inline);
}
.section--tight-top { padding-top: 0; }
.section--tight-bottom { padding-bottom: 0; }

.section__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 24px;
  border-bottom: 1px solid var(--c-rook);
  padding-bottom: 20px;
}
.section__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-accent-hover);
}
.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--c-koptekst);
}
@media (min-width: 600px) { .section__title { font-size: 32px; } }
@media (min-width: 900px) { .section__title { font-size: 38px; } }
@media (min-width: 1200px) { .section__title { font-size: 44px; } }

.section__note {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--c-gedempt-2);
}
@media (min-width: 600px) {
  .section__note { width: auto; margin-left: auto; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gedempt);
}

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 900px) {
  .hero { min-height: calc(100vh - var(--header-h) - var(--metabar-h)); }
}

.hero__media {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  overflow: hidden;
  z-index: -1;
}
.hero__video {
  position: absolute;
  left: -4%; top: -4%;
  width: 108%; height: 108%;
  object-fit: cover;
  filter: saturate(1.25) brightness(0.62) contrast(1.1);
  background-color: var(--c-antraciet);
}

.hero__scrim {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg, rgba(16,17,19,0.55) 0%, rgba(16,17,19,0.15) 45%, #101113 100%);
}

.hero__tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 207, 214, 0.75);
  display: none;
}
@media (min-width: 900px) {
  .hero__tag { display: block; top: 28px; font-size: 10.5px; letter-spacing: 0.2em; }
}
.hero__tag--left { left: var(--pad-inline); }
.hero__tag--right { right: var(--pad-inline); }

.hero__content {
  position: relative;
  padding: 64px var(--pad-inline) 40px;
}
@media (min-width: 900px) { .hero__content { padding: 96px var(--pad-inline) 56px; } }

.hero__rule {
  width: 44px;
  height: 3px;
  background: var(--c-accent);
  margin-bottom: 20px;
}
@media (min-width: 900px) { .hero__rule { width: 52px; margin-bottom: 26px; } }

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.03;
  letter-spacing: 0.005em;
  color: var(--c-koptekst);
  text-transform: uppercase;
}
@media (min-width: 600px) { .hero__title { font-size: 56px; } }
@media (min-width: 900px) { .hero__title { font-size: 84px; } }
@media (min-width: 1200px) { .hero__title { font-size: 124px; line-height: 0.96; } }

.hero__title span { display: block; }
.hero__title .hero__title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-chrome);
}

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
@media (min-width: 900px) { .hero__row { margin-top: 32px; } }

.hero__lead {
  margin: 0;
  max-width: 50ch;
  font-size: 15.5px;
  color: var(--c-body-zacht);
}
@media (min-width: 900px) { .hero__lead { font-size: 17px; } }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__ctas .btn { height: 48px; padding: 0 24px; }
@media (min-width: 900px) { .hero__ctas .btn { height: 52px; padding: 0 28px; } }
.hero__ctas .btn--primary { font-size: 13px; }
@media (min-width: 900px) { .hero__ctas .btn--primary { font-size: 13.5px; } }
.hero__ctas .btn--outline { font-size: 13.5px; }
@media (min-width: 900px) { .hero__ctas .btn--outline { font-size: 14.5px; } }

.hero__facts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  border-top: 1px solid rgba(201, 207, 214, 0.25);
  padding-top: 14px;
}
@media (min-width: 900px) { .hero__facts { gap: 28px; margin-top: 28px; padding-top: 16px; } }

.hero__fact {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gedempt);
}
@media (min-width: 900px) { .hero__fact { font-size: 11.5px; letter-spacing: 0.18em; } }
.hero__fact--main { color: var(--c-chrome); }

/* ---------- 11. Positie ---------- */
.positie {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .positie { grid-template-columns: repeat(12, 1fr); gap: 32px; }
}

.positie__eyebrow {
  border-top: 1px solid var(--c-rook);
  padding-top: 16px;
}
@media (min-width: 900px) { .positie__eyebrow { grid-column: 1 / span 3; } }

.positie__body { }
@media (min-width: 900px) { .positie__body { grid-column: 4 / span 5; } }

.positie__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--c-koptekst);
  max-width: 20ch;
}
@media (min-width: 600px) { .positie__title { font-size: 32px; } }
@media (min-width: 900px) { .positie__title { font-size: 38px; } }
@media (min-width: 1200px) { .positie__title { font-size: 44px; } }

.positie__text {
  margin: 20px 0 0;
  max-width: 62ch;
  color: var(--c-body);
}

.positie__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  border-top: 1px solid var(--c-rook);
  padding-top: 20px;
}
@media (min-width: 900px) {
  .positie__stats {
    display: flex;
    gap: 40px;
    margin-top: 44px;
    padding-top: 22px;
  }
}

.stat__value {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-koptekst);
}
@media (min-width: 900px) { .stat__value { font-size: 24px; } }
.stat__label {
  font-size: 12.5px;
  color: var(--c-gedempt);
  margin-top: 4px;
}

.positie__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--c-rook);
  min-height: 260px;
}
@media (min-width: 900px) { .positie__image { grid-column: 10 / span 3; min-height: 460px; } }

.positie__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.7) contrast(1.08);
  transition: transform 0.7s ease;
}
.positie__image:hover img { transform: scale(1.03); }

.image-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 235, 238, 0.85);
  background: rgba(16, 17, 19, 0.6);
  padding: 5px 9px;
  border-radius: var(--radius);
}

/* ---------- 12. Diensten ---------- */
.diensten-lijst {
  margin-top: 8px;
}

.dienst {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--c-rook);
  padding: 36px 0;
}
@media (min-width: 900px) {
  .dienst { grid-template-columns: repeat(12, 1fr); gap: 32px; padding: 48px 0; align-items: center; }
}
.dienst:last-child { border-bottom: none; padding-bottom: 8px; }

.dienst__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 220px;
}
@media (min-width: 900px) { .dienst__image { min-height: 320px; } }

.dienst__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.7) contrast(1.08);
  transition: transform 0.7s ease;
}
.dienst__image:hover img { transform: scale(1.03); }

.dienst--1 .dienst__image, .dienst--3 .dienst__image { order: 1; }
.dienst--1 .dienst__body, .dienst--3 .dienst__body { order: 2; }
.dienst--2 .dienst__body, .dienst--4 .dienst__body { order: 1; }
.dienst--2 .dienst__image, .dienst--4 .dienst__image { order: 2; }

@media (min-width: 900px) {
  .dienst--1 .dienst__image, .dienst--3 .dienst__image { grid-column: 1 / span 4; }
  .dienst--1 .dienst__body, .dienst--3 .dienst__body { grid-column: 6 / span 6; }
  .dienst--2 .dienst__body, .dienst--4 .dienst__body { grid-column: 2 / span 6; }
  .dienst--2 .dienst__image, .dienst--4 .dienst__image { grid-column: 9 / span 4; }
}

.dienst__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
@media (min-width: 900px) { .dienst__head { gap: 22px; } }

.dienst__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-accent-hover);
}

.dienst__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--c-koptekst);
}
@media (min-width: 900px) { .dienst__title { font-size: 32px; } }
@media (min-width: 1200px) { .dienst__title { font-size: 40px; } }

.dienst__text {
  margin: 12px 0 0;
  max-width: 56ch;
  color: var(--c-body);
  font-size: 14.5px;
}
@media (min-width: 900px) {
  .dienst__text { margin-left: 46px; font-size: 15px; }
}
@media (min-width: 1200px) {
  .dienst__text { margin-left: 62px; }
}

.dienst__nummer {
  font-family: var(--font-mono);
}

/* ---------- 13. Statement ---------- */
.statement {
  position: relative;
  isolation: isolate;
  padding: 72px var(--pad-inline);
}
.statement::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -3;
  background: var(--c-grafiet);
  border-top: 1px solid var(--c-rook);
  border-bottom: 1px solid var(--c-rook);
}
.statement > picture {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  overflow: hidden;
  z-index: -2;
}
@media (min-width: 900px) { .statement { padding: 120px var(--pad-inline); } }

.statement__image {
  position: absolute;
  left: 0; right: 0; top: -14%;
  width: 100%; height: 128%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.32) contrast(1.1);
  will-change: transform;
}

.statement__scrim {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(90deg, var(--c-grafiet) 12%, rgba(20,21,23,0.6) 65%, rgba(20,21,23,0.4) 100%);
}

.statement__inner { position: relative; }

.statement__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.statement__eyebrow-bar {
  width: 30px; height: 2px;
  background: var(--c-accent);
}
.statement__eyebrow span:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-body);
}

.statement__text {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--c-koptekst);
  max-width: 22ch;
}
@media (min-width: 600px) { .statement__text { font-size: 40px; } }
@media (min-width: 900px) { .statement__text { font-size: 52px; } }
@media (min-width: 1200px) { .statement__text { font-size: 64px; } }

.statement__text .statement__outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-chrome);
}

/* ---------- 14. Werkwijze ---------- */
.werkwijze-lijst {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 16px;
}
@media (min-width: 900px) {
  .werkwijze-lijst { grid-template-columns: repeat(4, 1fr); margin-top: 0; }
}

.werkwijze-stap {
  border-top: 1px solid var(--c-lijn-grafiet);
  padding: 24px 0;
}
@media (min-width: 900px) {
  .werkwijze-stap {
    border-top: none;
    border-right: 1px solid var(--c-rook);
    padding: 44px 32px 44px 0;
  }
  .werkwijze-stap:last-child { border-right: none; padding-right: 0; }
  .werkwijze-stap:not(:first-child) { padding-left: 32px; }
}

.werkwijze-stap__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-accent-hover);
}

.werkwijze-stap__title {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-koptekst);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 900px) { .werkwijze-stap__title { margin-top: 60px; font-size: 16px; } }

.werkwijze-stap__text {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--c-body);
}
@media (min-width: 900px) { .werkwijze-stap__text { font-size: 14.5px; } }

/* ---------- 15. Werkplaats ---------- */
.werkplaats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 32px;
}
@media (min-width: 900px) {
  .werkplaats-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 190px;
    gap: 16px;
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .werkplaats-grid { grid-auto-rows: 250px; }
}

.werkplaats-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 150px;
}
.werkplaats-tile--groot {
  grid-column: 1 / -1;
  min-height: 200px;
}
@media (min-width: 900px) {
  .werkplaats-tile { min-height: 0; }
  .werkplaats-tile--groot { grid-column: span 7; grid-row: span 2; }
  .werkplaats-tile--diagnose { grid-column: span 5; }
  .werkplaats-tile--motorwerk { grid-column: span 5; }
  .werkplaats-tile--bruggen { grid-column: span 4; }
  .werkplaats-tile--detail { grid-column: span 4; }
  .werkplaats-tile--bandenwand { grid-column: span 4; }
}

.werkplaats-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.7) contrast(1.08);
  transition: transform 0.7s ease;
}
.werkplaats-tile:hover img { transform: scale(1.03); }

/* ---------- 16. Klanten / reviews ---------- */
.reviews {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(12, 1fr); margin-top: 48px; }
}

.review {
  margin: 0;
  border-top: 1px solid var(--c-rook);
  padding-top: 20px;
}
@media (min-width: 900px) {
  .review:nth-child(1) { grid-column: 1 / span 3; }
  .review:nth-child(2) { grid-column: 4 / span 3; margin-top: 40px; }
  .review:nth-child(3) { grid-column: 7 / span 3; margin-top: 12px; }
  .review:nth-child(4) { grid-column: 10 / span 3; margin-top: 60px; }
}

.review blockquote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-koptekst);
}
@media (min-width: 900px) { .review blockquote { font-size: 18px; } }

.review figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-gedempt);
}

.reviews-footer {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
@media (min-width: 900px) { .reviews-footer { margin-top: 48px; } }

.reviews-link {
  font-family: var(--font-mono);
  font-size: 13px;
  border: 1px solid var(--c-rook);
  padding: 10px 16px;
  border-radius: var(--radius);
}
.reviews-link:hover { border-color: var(--c-chrome); color: var(--c-wit-zacht); }

/* ---------- 17. Partners ---------- */
.partners {
  position: relative;
  isolation: isolate;
  padding: 40px var(--pad-inline);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}
@media (min-width: 900px) { .partners { padding: 56px var(--pad-inline); gap: 28px 44px; } }

.partners::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  z-index: -1;
  background: var(--c-grafiet);
  border-top: 1px solid var(--c-rook);
  border-bottom: 1px solid var(--c-rook);
}
.partners__mark {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: var(--c-gedempt-2);
}
.partners__mark--primair {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--c-gedempt-3);
}

/* ---------- 18. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 8px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: repeat(12, 1fr); gap: 32px; }
}

.contact-info {
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) { .contact-info { grid-column: 1 / span 4; } }

.contact-info__block {
  border-top: 1px solid var(--c-rook);
  padding: 16px 0 22px;
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gedempt);
}

.contact-info__value {
  margin-top: 10px;
  font-size: 15px;
  color: var(--c-koptekst);
  line-height: 1.6;
}

.contact-info__tel {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--c-koptekst);
  letter-spacing: 0.03em;
}
@media (min-width: 900px) { .contact-info__tel { font-size: 34px; } }
.contact-info__tel:hover { color: var(--c-wit-zacht); }

.contact-info__hours {
  margin-top: 10px;
  font-size: 14px;
  color: var(--c-body);
  line-height: 1.9;
}

/* Kaart */
.map-block {
  border-top: 1px solid var(--c-rook);
  padding-top: 16px;
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-panel {
  position: relative;
  flex: 1;
  min-height: 200px;
  background: repeating-linear-gradient(135deg, var(--c-grafiet) 0 14px, #191B1E 14px 28px);
  border: 1px solid var(--c-rook);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-panel__inner {
  text-align: center;
  padding: 20px;
}

.map-panel__text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-gedempt);
  line-height: 1.7;
}

.map-panel__btn {
  margin-top: 14px;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-route {
  font-family: var(--font-mono);
  font-size: 12.5px;
  align-self: flex-start;
}

/* Formulier */
.contact-form-wrap { }
@media (min-width: 900px) { .contact-form-wrap { grid-column: 6 / span 7; } }

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .form { grid-template-columns: 1fr 1fr; gap: 22px 20px; }
}

/* Het hidden-attribuut moet winnen van display:grid/flex — anders blijft het formulier staan na "Aanvraag verzonden". */
.form[hidden], .form__succes[hidden] { display: none !important; }

.form__hp {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1 / -1; }

/* Turnstile-captcha: onzichtbaar tot Cloudflare een controle nodig vindt; dan verschijnt het widget hier. */
.form__turnstile { grid-column: 1 / -1; min-height: 0; }
.form__turnstile:not(:empty) { margin: 4px 0 6px; }
#fout-turnstile { grid-column: 1 / -1; }

.form__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gedempt);
  margin-bottom: 8px;
}

.form__input, .form__textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--c-veld-bg);
  border: 1px solid var(--c-rook);
  border-radius: var(--radius);
  color: var(--c-koptekst);
  font-size: 15px;
  font-family: var(--font-body);
  padding: 0 14px;
  outline: none;
  min-height: 48px;
}
.form__textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 110px;
}
.form__input:focus, .form__textarea:focus {
  border-color: var(--c-chrome);
}
.form__input.is-fout, .form__textarea.is-fout {
  border-color: var(--c-fout);
  background: var(--c-fout-bg);
}

.form__kenteken { font-family: var(--font-mono); }

.form__fout {
  margin-top: 7px;
  font-size: 12.5px;
  color: var(--c-fout);
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
}
@media (min-width: 600px) { .form__actions { grid-column: 1 / -1; } }
.form__actions .btn { height: 50px; padding: 0 32px; width: 100%; }
@media (min-width: 600px) { .form__actions .btn { width: auto; } }

.form__melding {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  font-size: 13.5px;
}
.form__melding:empty { display: none; }
.form__melding--fout {
  border: 1px solid var(--c-fout-rand);
  background: var(--c-fout-bg);
  padding: 14px 16px;
  color: var(--c-fout);
}

.form__succes {
  border: 1px solid #3A3E44;
  background: var(--c-veld-bg);
  padding: 32px 24px;
  border-radius: var(--radius);
}
@media (min-width: 900px) { .form__succes { padding: 44px; } }

.form__succes-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gedempt);
}

.form__succes-title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--c-koptekst);
  max-width: 26ch;
  line-height: 1.25;
}
@media (min-width: 900px) { .form__succes-title { font-size: 30px; } }

.form__succes-text {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--c-body);
  max-width: 56ch;
}

.form__succes-reset {
  margin-top: 24px;
  height: 44px;
  padding: 0 22px;
  background: transparent;
  border: 1px solid #3A3E44;
  color: var(--c-koptekst);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.form__succes-reset:hover { border-color: var(--c-chrome); }

/* ---------- 19. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--c-rook);
  padding: 36px var(--pad-inline) 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 44px var(--pad-inline);
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__brand img { height: 24px; width: auto; }

.site-footer__address {
  font-size: 13px;
  color: var(--c-gedempt);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer__links a {
  font-size: 13px;
  color: var(--c-gedempt);
}
.site-footer__links a:hover { color: var(--c-wit-zacht); }

.site-footer__credit {
  font-size: 12px;
  color: var(--c-gedempt-2);
  text-decoration: none;
}
.site-footer__credit:hover { color: var(--c-chrome); }
.site-footer__legal a { color: var(--c-gedempt-2); text-decoration: none; }
.site-footer__legal a:hover { color: var(--c-chrome); }

.form__privacy { flex: 1 1 260px; font-size: 12.5px; line-height: 1.6; color: var(--c-gedempt-2); margin: 0; order: 2; }
@media (min-width: 600px) { .form__privacy { order: 0; } }
.form__privacy a { color: var(--c-chrome); }

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--c-gedempt-2);
}
@media (min-width: 900px) {
  .site-footer__legal { text-align: right; }
}
