/* ============================================================
   SPRAYPAL — design system
   Palet: fris blauw op koel wit, diep navy als ink
   Type: Archivo (variable, wdth+wght)
   ============================================================ */

:root {
  --bg: #f4f6f8;
  --paper: #ffffff;
  --ink: #0d2742;
  --ink-soft: #16334f;
  --muted: #50677e;
  --accent: #2a7fdb;
  --accent-ink: #1c5fae;
  --soft: #e3edf7;
  --line: #d8e1ea;
  --navy-deep: #0a1e35;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 2px 6px rgba(13, 39, 66, 0.05), 0 18px 44px -18px rgba(13, 39, 66, 0.18);
  --font: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html[data-anims="off"] { scroll-behavior: auto; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

.container { width: min(1180px, 92vw); margin: 0 auto; }
.container-narrow { width: min(840px, 92vw); }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; }
p { text-wrap: pretty; }

.h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 760;
  font-stretch: 104%;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.kicker-light { color: #8fc0f5; }

.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-tint { background: linear-gradient(180deg, #eef3f8, #f4f6f8); }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 650;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 26px -10px color-mix(in oklab, var(--accent) 70%, transparent);
}
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 19px 32px; font-size: 17px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, #ffffff 86%, transparent); }
.nav-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.wordmark {
  font-size: 26px;
  font-weight: 800;
  font-stretch: 106%;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark .dot { color: var(--accent); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 560;
  font-size: 15.5px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 0;
  background:
    radial-gradient(640px 420px at 88% -10%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%),
    radial-gradient(520px 380px at -6% 75%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .spray-zone { display: none; }
}
.hero-title {
  font-size: clamp(42px, 5.4vw, 84px);
  font-weight: 790;
  font-stretch: 106%;
  max-width: 13ch;
  margin: 8px 0 26px;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
}
.trust-row li { display: flex; align-items: center; gap: 9px; }
.trust-row li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.hero-visual { margin-top: clamp(26px, 4vw, 52px); position: relative; }
.giant {
  font-size: clamp(76px, 14.5vw, 212px);
  font-weight: 820;
  font-stretch: 108%;
  letter-spacing: -0.05em;
  line-height: 0.84;
  color: var(--accent);
  pointer-events: none;
  position: relative;
  z-index: 2;
}
.giant .dot { color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .giant-spray {
    -webkit-mask-image: linear-gradient(100deg, #000000 42%, transparent 58%);
    mask-image: linear-gradient(100deg, #000000 42%, transparent 58%);
    -webkit-mask-size: 280% 100%;
    mask-size: 280% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  html:not([data-anims="off"]) .giant-spray.spray-go {
    animation: sprayReveal 2s cubic-bezier(0.3, 0.6, 0.2, 1) 0.15s both;
  }
  html:not([data-anims="off"]) .giant-spray.spray-go .spray-mist {
    animation: sprayMist 2s cubic-bezier(0.3, 0.6, 0.2, 1) 0.15s both;
  }
}
@keyframes sprayReveal {
  from { -webkit-mask-position: 100% 0; mask-position: 100% 0; }
  to { -webkit-mask-position: 0% 0; mask-position: 0% 0; }
}
.spray-mist {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(160px, 24vw, 360px);
  height: 130%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 55%, #ffffff), transparent 72%);
  filter: blur(16px);
  opacity: 0;
  pointer-events: none;
}
@keyframes sprayMist {
  0% { left: 0%; opacity: 0; }
  12% { opacity: 0.85; }
  85% { opacity: 0.6; }
  100% { left: 103%; opacity: 0; }
}

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .hero-title {
    animation: heroWipe 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s both;
  }
  html:not([data-anims="off"]) .hero .rv,
  html:not([data-anims="off"]) .hero-visual {
    animation: heroRise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  html:not([data-anims="off"]) .hero .kicker { animation-delay: 0.05s; }
  html:not([data-anims="off"]) .hero-sub { animation-delay: 0.25s; }
  html:not([data-anims="off"]) .hero-ctas { animation-delay: 0.35s; }
  html:not([data-anims="off"]) .trust-row { animation-delay: 0.45s; }
  html:not([data-anims="off"]) .hero-visual { animation-delay: 0.5s; }
}
@keyframes heroWipe {
  from { clip-path: inset(0 100% 0 0); opacity: 0.4; transform: translateY(14px); }
  to { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Spray-zone (hero rechts) ---------- */
.spray-zone {
  position: relative;
  height: clamp(360px, 32vw, 520px);
  align-self: stretch;
}
.spray-zone canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  touch-action: none;
}
.spray-hint {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.7;
  white-space: nowrap;
  pointer-events: none;
}
.spray-nozzle {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 65%, #ffffff), transparent 75%);
  filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* ---------- Ticker ---------- */
.ticker {
  margin-top: clamp(22px, 3vw, 44px);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  font-size: 17px;
  font-weight: 680;
  font-stretch: 105%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ticker-track i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .ticker-track { animation: tickerMove 28s linear infinite; }
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Story (huis-scrollverhaal) ---------- */
.story { background: linear-gradient(180deg, #eaf1f8 0%, #f4f6f8 100%); }
.story-pin { height: 1150vh; position: relative; }
.story-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.house-viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.house-cam {
  width: min(880px, 88vw);
  will-change: transform;
}
.house-cam svg { width: 100%; height: auto; display: block; }

.story-cards {
  position: relative;
  z-index: 5;
  width: min(1180px, 92vw);
  margin: 0 auto;
  pointer-events: none;
}
.story-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 80vw);
  background: color-mix(in srgb, #ffffff 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow);
  opacity: 0;
}
.story-card h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 740;
  font-stretch: 104%;
  margin-bottom: 12px;
}
.story-card p { color: var(--muted); font-size: 16px; }
.story-card .story-kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.story-card .btn { pointer-events: auto; margin-top: 8px; }
.story-hint { margin-top: 14px; font-weight: 650; color: var(--ink) !important; }

.story-dots {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 6;
}
.story-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}
.story-dots span.active { background: var(--accent); transform: scale(1.5); }

/* statische fallback (reduced motion / tweak uit / smal scherm) */
html[data-anims="off"] .story-pin,
html.story-static .story-pin { height: auto; }
html[data-anims="off"] .story-stage,
html.story-static .story-stage {
  position: static;
  height: auto;
  overflow: visible;
  display: block;
  padding: 60px 0 30px;
}
html[data-anims="off"] .house-viewport,
html.story-static .house-viewport { position: static; }
html[data-anims="off"] .house-cam,
html.story-static .house-cam { transform: none !important; margin: 0 auto; }
html[data-anims="off"] .story-cards,
html.story-static .story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 40px 0 70px;
  pointer-events: auto;
}
html[data-anims="off"] .story-card,
html.story-static .story-card {
  position: static;
  transform: none;
  opacity: 1 !important;
  width: auto;
  pointer-events: auto;
}
html[data-anims="off"] .story-dots,
html.story-static .story-dots { display: none; }
html[data-anims="off"] .story-hint,
html.story-static .story-hint { display: none; }
@media (prefers-reduced-motion: reduce) {
  .story-pin { height: auto; }
  .story-stage { position: static; height: auto; overflow: visible; display: block; padding: 60px 0 30px; }
  .house-viewport { position: static; }
  .house-cam { transform: none !important; margin: 0 auto; }
  .story-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; padding: 40px 0 70px; pointer-events: auto; }
  .story-card { position: static; transform: none; opacity: 1 !important; width: auto; }
  .story-dots, .story-hint { display: none; }
}

/* ---------- Diensten ---------- */
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .dienst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .dienst-grid { grid-template-columns: 1fr; } }

.dienst-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-family: var(--font);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.dienst-nr {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1.5px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px;
  padding: 5px 12px;
}
.dienst-card h3 { font-size: 22px; font-weight: 720; font-stretch: 103%; }
.dienst-card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.dienst-more {
  margin-top: auto;
  white-space: nowrap;
  font-weight: 680;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.dienst-card:hover .dienst-more { color: var(--accent-ink); }

/* ---------- USP's ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .usp-grid { grid-template-columns: 1fr; } }
.usp {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.usp h3 {
  font-size: 19px;
  font-weight: 720;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.usp h3::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--accent);
  flex: none;
  transform: rotate(45deg);
}
.usp p { color: var(--muted); font-size: 15.5px; }

/* ---------- Werkwijze ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  overflow: hidden;
}
.step-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-ink);
  font-weight: 780;
  font-size: 19px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 720; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- Realisaties ---------- */
.note-chip {
  display: inline-block;
  background: var(--soft);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 620;
  border-radius: 999px;
  padding: 5px 14px;
  margin-left: 4px;
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .real-grid { grid-template-columns: 1fr; } }
.real-pair {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 1px 3px rgba(13,39,66,0.04);
}
.real-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.real-half { position: relative; }
.real-half image-slot { display: block; width: 100%; height: 230px; }
.real-half img { display: block; width: 100%; height: 230px; object-fit: cover; border-radius: 16px; }
.real-tag {
  position: absolute;
  left: 10px; bottom: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
  pointer-events: none;
}
.real-tag-na { background: var(--accent); }
.real-pair figcaption {
  font-weight: 650;
  font-size: 15.5px;
  padding: 14px 8px 6px;
}

/* ---------- Over + reviews ---------- */
.over-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) { .over-grid { grid-template-columns: 1fr; } }
.over-text .h2 { margin-bottom: 22px; }
.over-text p { color: var(--muted); margin-bottom: 18px; max-width: 54ch; }
.over-text .btn { margin-top: 8px; }

.reviews { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 1px 3px rgba(13,39,66,0.04);
}
.review-card:nth-child(2) { margin-left: clamp(0px, 4vw, 56px); }
.review-stars { color: var(--accent); font-size: 15px; letter-spacing: 3px; display: block; margin-bottom: 10px; }
.review-card p { font-size: 16px; margin-bottom: 12px; }
.review-card footer {
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-note {
  font-weight: 560;
  font-size: 12px;
  background: var(--soft);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 2px 10px;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 26px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 680;
  font-size: 17.5px;
  padding: 22px 36px 22px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 24px; max-width: 64ch; }

/* ---------- WhatsApp-paneel (vervangt formulier) ---------- */
.wa-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 46px);
}
.wa-kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #8fc0f5;
}
.wa-panel h3 {
  color: #ffffff;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 760;
  letter-spacing: -0.025em;
}
.wa-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: wa;
}
.wa-steps li {
  counter-increment: wa;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #a9c2dc;
  font-size: 16.5px;
  line-height: 1.45;
}
.wa-steps li::before {
  content: counter(wa);
  flex: 0 0 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 750;
  transform: translateY(5px);
}
.btn-wa {
  background: #25d366;
  color: #07301b;
  width: 100%;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.45);
}
.btn-wa:hover { background: #1fc05a; transform: translateY(-2px); }
.wa-note { font-size: 14px; color: #7e9ab6; align-self: center; text-align: center; }

/* ---------- Contact ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 4vw, 70px);
  background: var(--navy-deep);
  color: #eaf1f8;
  border-radius: clamp(24px, 3vw, 40px);
  padding: clamp(36px, 5vw, 70px);
  box-shadow: 0 30px 70px -30px rgba(10, 30, 53, 0.55);
}
@media (max-width: 920px) { .contact-card { grid-template-columns: 1fr; } }
.contact-info .h2 { color: #ffffff; margin-bottom: 18px; }
.contact-sub { color: #a9c2dc; margin-bottom: 30px; max-width: 44ch; }
.contact-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 15px 20px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.18s ease, transform 0.18s ease;
}
.contact-row:hover { background: rgba(255, 255, 255, 0.12); transform: translateX(4px); }
.contact-label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8fc0f5; }
.contact-value { font-weight: 650; font-size: 16.5px; }
.contact-area { font-size: 14.5px; color: #7e9ab6; }

.contact-form { position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: #a9c2dc;
}
.form-full { margin-bottom: 18px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6e8aa6; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.1); }
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.form-submit { width: 100%; }
.form-note { font-size: 13px; color: #6e8aa6; margin-top: 12px; text-align: center; }
.form-success[hidden] { display: none; }
.form-success {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border-radius: 16px;
}
.form-success h3 { font-size: 30px; font-weight: 760; color: #ffffff; }
.form-success p { color: #a9c2dc; max-width: 34ch; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #a9c2dc;
  margin-top: clamp(72px, 9vw, 130px);
  padding-top: clamp(56px, 7vw, 90px);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.wordmark-footer { color: #ffffff; font-size: 34px; }
.footer-slogan { margin-top: 10px; font-size: 16px; color: #7e9ab6; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h4 {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-col a { color: #a9c2dc; text-decoration: none; font-size: 15.5px; transition: color 0.15s ease; }
.footer-col a:hover { color: #ffffff; }
.footer-muted { font-size: 15.5px; color: #7e9ab6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 14px;
}
.footer-bottom a { color: #a9c2dc; text-decoration: none; }
.footer-bottom a:hover { color: #ffffff; }
.footer-giant {
  font-size: clamp(90px, 17vw, 260px);
  font-weight: 820;
  font-stretch: 108%;
  letter-spacing: -0.05em;
  line-height: 0.74;
  text-align: center;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  pointer-events: none;
  transform: translateY(10%);
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 53, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 92vw);
  max-height: 86vh;
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 40px 90px -30px rgba(10, 30, 53, 0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .modal:not([hidden]) .modal-panel { animation: modalIn 0.32s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .modal:not([hidden]) .modal-backdrop { animation: fadeIn 0.25s ease both; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.96); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.modal-close:hover { color: var(--ink); border-color: var(--ink); }
.modal-body article { display: none; }
.modal-body article.active { display: block; }
.modal-body h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 760;
  font-stretch: 104%;
  margin-bottom: 22px;
}
.modal-body h4 {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0.04em;
  color: var(--accent-ink);
  margin: 20px 0 6px;
}
.modal-body p { color: var(--muted); font-size: 16px; }
.modal-cta { width: 100%; margin-top: 30px; }

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .section .rv,
  html:not([data-anims="off"]) .footer .rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  html:not([data-anims="off"]) .section .rv.in,
  html:not([data-anims="off"]) .footer .rv.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* image-slot harmonisatie */
image-slot { border-radius: 16px; }
.contact-row .contact-label small { font-weight: 500; opacity: 0.75; font-size: 0.85em; }

/* ---------- Sectie-animaties: staggers, stappen, realisaties ---------- */
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .dienst-grid .rv:nth-child(2),
  html:not([data-anims="off"]) .usp-grid .rv:nth-child(2),
  html:not([data-anims="off"]) .steps .rv:nth-child(2),
  html:not([data-anims="off"]) .real-grid .rv:nth-child(2) { transition-delay: 0.12s; }
  html:not([data-anims="off"]) .dienst-grid .rv:nth-child(3),
  html:not([data-anims="off"]) .usp-grid .rv:nth-child(3),
  html:not([data-anims="off"]) .steps .rv:nth-child(3),
  html:not([data-anims="off"]) .real-grid .rv:nth-child(3) { transition-delay: 0.24s; }
  html:not([data-anims="off"]) .dienst-grid .rv:nth-child(4),
  html:not([data-anims="off"]) .usp-grid .rv:nth-child(4),
  html:not([data-anims="off"]) .steps .rv:nth-child(4) { transition-delay: 0.36s; }
  html:not([data-anims="off"]) .dienst-grid .rv:nth-child(5),
  html:not([data-anims="off"]) .usp-grid .rv:nth-child(5) { transition-delay: 0.48s; }
  html:not([data-anims="off"]) .dienst-grid .rv:nth-child(6) { transition-delay: 0.6s; }
}

/* Werkwijze: nummers floepen aan zodra de stap in beeld komt */
.step.in .step-nr { background: var(--accent); color: #ffffff; }
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .step.in .step-nr { animation: stepPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  html:not([data-anims="off"]) .step:nth-child(2).in .step-nr { animation-delay: 0.27s; }
  html:not([data-anims="off"]) .step:nth-child(3).in .step-nr { animation-delay: 0.39s; }
  html:not([data-anims="off"]) .step:nth-child(4).in .step-nr { animation-delay: 0.51s; }
}
@keyframes stepPop {
  0% { transform: scale(0.3); }
  60% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.step { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Realisaties: voor/na schuiven naar elkaar toe + spray-glans */
.real-imgs { position: relative; overflow: hidden; border-radius: 12px; }
.real-imgs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.55) 50%, transparent 62%);
  transform: translateX(-130%);
  pointer-events: none;
}
.real-pair { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.real-pair:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: no-preference) {
  html:not([data-anims="off"]) .real-grid .rv .real-half {
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  html:not([data-anims="off"]) .real-grid .rv .real-half:first-child { transform: translateX(-28px); }
  html:not([data-anims="off"]) .real-grid .rv .real-half:last-child { transform: translateX(28px); }
  html:not([data-anims="off"]) .real-grid .rv.in .real-half { opacity: 1; transform: none; }
  html:not([data-anims="off"]) .real-grid .rv.in .real-half:first-child { transition-delay: 0.15s; }
  html:not([data-anims="off"]) .real-grid .rv.in .real-half:last-child { transition-delay: 0.28s; }
  html:not([data-anims="off"]) .real-grid .rv.in .real-imgs::after { animation: realSweep 1.1s ease 0.6s both; }
}
@keyframes realSweep {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}
