/* ==========================================================================
   WETRUPLAN — onafhankelijk adviesbureau bouwprojecten
   Stijl: licht & modern, met brand-blauw (#0F3DFF) als accent
   ========================================================================== */

:root {
  /* Brand */
  --accent: #0F3DFF;
  --accent-hover: #0828B5;
  --accent-soft: #EAF0FF;
  --accent-soft-2: #DCE5FF;
  --accent-glow: rgba(15, 61, 255, 0.18);

  /* Surfaces (light) */
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;
  --bg-soft-2: #EEF2F9;
  --surface: #FFFFFF;

  /* Dark accent surface (used sparingly) */
  --bg-dark: #0A1228;
  --bg-dark-2: #0F1A38;

  /* Lines */
  --line: #E6EAF1;
  --line-strong: #D2D8E3;
  --line-on-dark: rgba(255,255,255,0.10);

  /* Text */
  --text: #0A1228;
  --text-2: #1F2A48;
  --text-muted: #5A647A;
  --text-dim: #8892A6;
  --text-on-dark: #F5F7FB;
  --text-on-dark-muted: #B6C0D6;

  /* Type */
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heavy: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: 28px;

  /* Radii */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(13,20,40,0.05), 0 4px 14px rgba(13,20,40,0.06);
  --shadow-2: 0 14px 40px rgba(13,20,40,0.08), 0 2px 6px rgba(13,20,40,0.04);
  --shadow-3: 0 30px 80px rgba(13,20,40,0.18);
  --shadow-blue: 0 14px 40px -12px rgba(15,61,255,0.45);

  --transition: 220ms cubic-bezier(.2,.7,.3,1);
}

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* overflow-x: clip ipv hidden, zodat position: sticky op de header blijft werken.
     'clip' creëert geen scroll-context (wel een visuele clip). */
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: clip;
  min-width: 320px;
}
img, svg { max-width: 100%; display: block; }
figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--transition); word-break: break-word; }
a:hover { color: var(--accent); }
input, textarea, select, button { font-family: inherit; font-size: 1rem; max-width: 100%; }
::selection { background: var(--accent-soft-2); color: var(--accent); }
/* Voorkom dat lange URL's / e-mails layout breken */
p, li, dd, h1, h2, h3, h4 { overflow-wrap: break-word; word-wrap: break-word; }

/* Typography ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
}
h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
p { margin: 0 0 1.1em; color: var(--text-2); }
.lead {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.section-dark .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.10);
}

/* Layout -------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(48px, 7vw, 90px) 0; }
section[id] { scroll-margin-top: 90px; }

/* Contact-sectie landt mooi onder de sticky header bij een #contact-anker:
   kleinere top-padding zodat het woord "Contact" net onder de header zit. */
#contact {
  padding-top: clamp(28px, 4vw, 44px);
  scroll-margin-top: 78px;
}
@media (max-width: 420px) {
  #contact { scroll-margin-top: 64px; }
}
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(15,61,255,0.30), transparent 70%),
    radial-gradient(600px 400px at 10% 90%, rgba(15,61,255,0.18), transparent 70%);
  pointer-events: none;
}
.section-dark > .container { position: relative; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p, .section-dark li { color: var(--text-on-dark-muted); }
.section-dark .lead { color: var(--text-on-dark-muted); }

/* Header -------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.brand img { height: 32px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
}
.nav a:hover { color: var(--accent); background: var(--accent-soft); }
.nav a[aria-current="page"] { color: var(--accent); }

/* CTA-knop in de nav: blijft altijd wit-op-blauw, ook op huidige pagina/hover */
.nav .btn-cta { margin-left: 14px; padding: 11px 20px; color: #fff; }
.nav .btn-cta:hover,
.nav .btn-cta[aria-current="page"] {
  background: var(--accent-hover);
  color: #fff;
}
.nav .btn-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle span { width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-cta, .btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-cta:hover, .btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--bg);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.btn-on-dark, .btn-on-light {
  background: #fff;
  color: var(--accent);
}
.btn-on-dark:hover, .btn-on-light:hover { background: var(--accent-soft); color: var(--accent-hover); }

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 9vw, 120px);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 90% -10%, rgba(15,61,255,0.10), transparent 70%),
    radial-gradient(700px 500px at -10% 50%, rgba(15,61,255,0.06), transparent 70%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,20,40,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,20,40,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 80% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 80% 20%, black 30%, transparent 75%);
  z-index: -1;
  opacity: 0.6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
/* tekstkolom in natuurlijke blok-flow: laatste regel (knoppen) zit op cel-bodem;
   foto erbij krijgt dezelfde celhoogte en lijnt zo gelijk uit met de knoppen */
.hero-text { display: block; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent), #4F76FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--font-display);
}
.hero p.lead { max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* Brand-origin tagline (WETRUPLAN binnen "WE TREKKEN UW PLAN") */
.brand-tagline {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: #8B92A6;
}
.brand-tagline .line { display: block; }
.brand-tagline .hl { color: var(--accent); }
.brand-tagline .dim { color: #8B92A6; }
.brand-tagline-caption {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.brand-tagline-caption b { color: var(--accent); font-weight: 700; }

.hero-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hero-meta .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
}
.hero-meta .stat-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--bg-soft);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.hero-tag {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  background: rgba(10,18,40,0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.hero-tag strong { font-weight: 600; }

/* Decorative blue card overlay on hero */
.hero-side-card {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.2;
  max-width: 240px;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

/* Page hero (smaller, for inner pages) -------------------------------------- */
.page-hero {
  background: var(--bg-soft);
  padding: clamp(40px, 5vw, 70px) 0 clamp(40px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.page-hero h1 .accent {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
}
/* Korte titels op service-pagina's op één regel houden */
.page-hero h1.is-short { white-space: nowrap; }
.page-hero .lead { max-width: 60ch; margin-top: 0; }
.page-hero { padding-bottom: clamp(20px, 3vw, 36px); }
@media (max-width: 760px) {
  .page-hero h1 { white-space: normal; font-size: clamp(1.9rem, 8vw, 2.6rem); }
}
.crumbs {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--accent); }

/* Services grid (home) ------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 36px 36px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-1);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft-2);
  box-shadow: var(--shadow-2);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform var(--transition);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { transform: rotate(-6deg); }
.service-card .num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-card h3 { color: var(--text); margin-bottom: 14px; }
.service-card p { color: var(--text-muted); margin-bottom: 22px; }
.service-card .more {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more .arrow { transition: transform var(--transition); }
.service-card:hover .more .arrow { transform: translateX(6px); }

/* Approach / phases --------------------------------------------------------- */
.approach {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.approach .phase {
  padding: 30px 26px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.approach .phase:hover { border-color: var(--accent-soft-2); transform: translateY(-2px); }
.approach .phase .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.approach .phase h4 { color: var(--text); margin-bottom: 8px; }
.approach .phase p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Two-column content -------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}
.two-col-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}
.two-col-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Achterwaarts-compatibele fallback voor losse <img> rechtstreeks in .two-col */
.two-col > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

/* Service detail ------------------------------------------------------------ */
.service-detail {
  max-width: 100%;
  margin: 0 auto;
}
.service-detail .body p {
  color: var(--text-2);
  margin-bottom: 1.2em;
}

/* Intro-paragraaf met grotere font + accent op kerntermen */
.service-detail .body .lead-intro {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.6em;
  max-width: none;
}

/* "Highlighter"-effect — een zachte blauwe stift onder een keyterm.
   Animeert in van links naar rechts wanneer hij in beeld komt. */
.hl-mark {
  position: relative;
  display: inline;
  color: var(--text);
  font-weight: 600;
  background-image: linear-gradient(120deg, var(--accent-soft-2) 0%, var(--accent-soft-2) 100%);
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 0% 38%;
  padding: 0 2px;
  transition: background-size 900ms cubic-bezier(.2,.7,.3,1);
}
.hl-mark.is-in { background-size: 100% 38%; }
@media (prefers-reduced-motion: reduce) { .hl-mark { background-size: 100% 38%; transition: none; } }

/* Twee-koloms tekst voor body-paragrafen — vol gebruik van paginabreedte
   zonder dat regels onleesbaar lang worden */
.body-cols {
  columns: 2;
  column-gap: clamp(40px, 5vw, 70px);
  margin: 0 0 2em;
}
.body-cols p {
  break-inside: avoid;
  margin-bottom: 1.2em;
}
.body-cols p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .body-cols { columns: 1; }
}

.service-detail .body > h3,
.service-detail .body > .checklist,
.service-detail .body > .service-groups,
.service-detail .body > .pull-quote,
.service-detail .body > .callout,
.service-detail .body > .body-cols,
.service-detail .body > figure { max-width: 100%; }

/* Inline figure binnen de body — afgeronde hoeken + subtiele schaduw */
.body-figure {
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.body-figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 460px;
  object-fit: cover;
}

/* Twee foto's naast elkaar, beide kleiner — voor/tijdens vergelijking */
.body-figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}
.body-figure-pair img {
  width: 100%;
  height: clamp(200px, 26vw, 300px);
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
@media (max-width: 760px) {
  .body-figure-pair { grid-template-columns: 1fr; gap: 10px; }
  .body-figure-pair img { height: clamp(180px, 50vw, 260px); }
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.checklist li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px; height: 22px;
  background: var(--accent-soft);
  border-radius: 50%;
  transform: translateY(-50%);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 7px; top: 50%;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translate(0, -75%) rotate(-45deg);
}

/* Pakket-van-diensten gegroepeerd in 3 fases ------------------------------- */
.service-groups {
  display: grid;
  gap: 28px;
  margin: 28px 0 36px;
}
.service-group {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px 8px;
}
.service-group h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.service-group .checklist { margin: 12px 0; }
.service-group .checklist li { padding: 11px 0 11px 38px; }
.service-group .checklist li:last-child { padding-bottom: 12px; }

/* Geanimeerde fase-iconen */
.phase-icon {
  display: block;
  width: 56px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 10px;
}
.phase-icon svg { width: 100%; height: 100%; overflow: visible; }

@media (prefers-reduced-motion: no-preference) {
  /* Voorbereiding: lijnen die zichzelf tekenen, met pen aan het einde */
  .phase-icon-prep .ln {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: lineDraw 7s ease-in-out infinite;
  }
  .phase-icon-prep .ln-1 { animation-delay: 0s; }
  .phase-icon-prep .ln-2 { animation-delay: 0.5s; }
  .phase-icon-prep .ln-3 { animation-delay: 1s; }
  .phase-icon-prep .pen {
    animation: penMove 7s ease-in-out infinite;
  }
  @keyframes lineDraw {
    0%   { stroke-dashoffset: 48; }
    35%  { stroke-dashoffset: 0; }
    80%  { stroke-dashoffset: 0; opacity: 1; }
    92%  { stroke-dashoffset: 0; opacity: 0; }
    93%  { stroke-dashoffset: 48; opacity: 0; }
    100% { stroke-dashoffset: 48; opacity: 1; }
  }
  @keyframes penMove {
    0%   { transform: translateX(-36px) translateY(0); opacity: 0; }
    5%   { opacity: 1; }
    35%  { transform: translateX(0)     translateY(0); }
    40%  { transform: translateX(-30px) translateY(8px); }
    55%  { transform: translateX(-4px)  translateY(8px); }
    60%  { transform: translateX(-30px) translateY(16px); }
    75%  { transform: translateX(-2px)  translateY(16px); }
    85%  { opacity: 1; }
    95%  { opacity: 0; }
    100% { transform: translateX(-36px) translateY(0); opacity: 0; }
  }

  /* Uitvoering: kraan-arm zwaait zachtjes heen en weer */
  .phase-icon-build .crane-arm {
    transform-origin: 12px 8px;
    animation: craneSwing 5.5s ease-in-out infinite;
  }
  .phase-icon-build .hook {
    animation: hookBob 5.5s ease-in-out infinite;
    transform-origin: 44px 8px;
  }
  @keyframes craneSwing {
    0%, 100% { transform: rotate(-4deg); }
    50%      { transform: rotate(4deg); }
  }
  @keyframes hookBob {
    0%, 100% { transform: scaleY(1); }
    50%      { transform: scaleY(1.12); }
  }

  /* Afsluiting: sleutel draait subtiel in het slot */
  .phase-icon-finish .key-shape {
    transform-origin: 16px 24px;
    animation: keyTurn 5s ease-in-out infinite;
  }
  @keyframes keyTurn {
    0%, 60%, 100% { transform: rotate(0deg); }
    30%, 40%      { transform: rotate(-22deg); }
  }
}

/* Pull-quote tussen tekstblokken ------------------------------------------- */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--text);
  margin: 48px auto;
  padding: 12px 0 12px 28px;
  border-left: 3px solid var(--accent);
  max-width: 60ch;
}

.service-aside {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px clamp(28px, 4vw, 44px);
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 24px;
}
.service-aside h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.service-aside .price-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1;
}
.service-aside p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 48ch;
}
.service-aside .aside-text { min-width: 0; }
.service-aside .aside-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}
.service-aside .btn { justify-content: center; }

.callout {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.callout p { margin: 0; color: var(--text); font-weight: 500; }

/* Gallery ------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.gallery a {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow-1);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.gallery a:hover img { transform: scale(1.05); }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,18,40,0.5));
  opacity: 0; transition: opacity var(--transition);
}
.gallery a:hover::after { opacity: 1; }

/* About --------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}
.about-grid .portrait {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}
.about-grid > .two-col-img { min-height: 320px; }
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.value {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.value:hover { border-color: var(--accent-soft-2); transform: translateY(-2px); }
.value .v-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.value .v-num {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.value h4 { margin-bottom: 6px; color: var(--text); }
.value p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* FAQ ----------------------------------------------------------------------- */
.faq { display: grid; gap: 10px; margin-top: 40px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq details[open] { border-color: var(--accent-soft-2); box-shadow: var(--shadow-1); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image:
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent));
  background-size: 10px 2px, 2px 10px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--transition), background-size var(--transition);
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background-size: 10px 2px, 2px 10px;
}
.faq .answer {
  padding: 0 26px 24px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq .answer p:last-child { margin-bottom: 0; }

/* Contact / form ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
}
.contact-info dl {
  margin: 0;
  display: grid;
  gap: 26px;
}
.contact-info dt {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-info dd {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 500;
}
.contact-info dd a:hover { color: var(--accent); }

/* Geruststelling onder de contactgegevens */
.contact-promise {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
}
.contact-promise .item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-2);
  line-height: 1.45;
}
.contact-promise .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  position: relative;
  margin-top: 1px;
}
.contact-promise .check::after {
  content: "";
  position: absolute;
  left: 7px; top: 50%;
  width: 9px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-75%) rotate(-45deg);
}
.contact-promise strong { color: var(--text); font-weight: 600; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--font-sans); }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
  margin: 6px 0 22px;
  line-height: 1.55;
}
.checkbox-row input { accent-color: var(--accent); margin-top: 4px; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.95rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: #FFE6E6; color: #B23030; }

/* Hero banner (afgeronde foto met witruimte onder service page-hero) -------- */
.hero-banner {
  margin: clamp(24px, 3vw, 40px) auto 0;
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  position: relative;
}
/* Sectie direct na een hero-banner krijgt minder top-padding */
.hero-banner + section { padding-top: clamp(40px, 6vw, 80px); }
.hero-banner img {
  width: 100%;
  height: clamp(240px, 32vw, 380px);
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 3px solid var(--accent);
  box-shadow: 0 14px 44px -14px rgba(15, 61, 255, 0.35), 0 4px 12px rgba(13, 20, 40, 0.08);
}

/* Bleed banner (afgeronde foto met witruimte op de homepage) --------------- */
.bleed-banner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: clamp(28px, 4vw, 56px) auto;
  padding: 0 var(--gutter);
}
.bleed-banner img {
  width: 100%;
  height: clamp(260px, 36vw, 420px);
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  /* Subtiele rand + zachte schaduw met lichte blauwe tint */
  border: 1px solid var(--accent-soft-2);
  box-shadow: 0 18px 48px -16px rgba(15, 61, 255, 0.22), 0 4px 12px rgba(13, 20, 40, 0.06);
}
.bleed-banner-text {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--gutter); right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  pointer-events: none;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.bleed-banner-text h2 {
  color: #fff;
  max-width: 22ch;
  margin: 0;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

/* OVAM tijdslijn / asbestveilig Vlaanderen --------------------------------- */
.ovam-alert .ovam-lead { max-width: 64ch; color: var(--text-on-dark-muted); }
.ovam-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 44px 0 36px;
}
.ovam-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.ovam-step:hover {
  border-color: rgba(15,61,255,0.55);
  transform: translateY(-2px);
}
.ovam-step .ovam-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.ovam-step h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.ovam-step p {
  color: var(--text-on-dark-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}
.ovam-step.is-now { padding-top: 46px; }
.ovam-step.is-now::before {
  content: "Nu van toepassing";
  position: absolute;
  top: 16px; left: 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 1;
}
.ovam-note {
  color: var(--text-on-dark-muted);
  max-width: 72ch;
  margin: 0 0 28px;
}

@media (max-width: 860px) {
  .ovam-timeline { grid-template-columns: 1fr; gap: 14px; }
  .ovam-step .ovam-year { font-size: 2.4rem; margin-bottom: 10px; }
}

/* CTA banner ---------------------------------------------------------------- */
.cta-banner {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(15,61,255,0.40), transparent 60%),
    radial-gradient(500px 350px at 90% 100%, rgba(15,61,255,0.20), transparent 70%);
}
.cta-banner > .container { position: relative; }
.cta-banner h2 { color: #fff; max-width: 22ch; margin: 0 auto 14px; }
.cta-banner p { color: rgba(255,255,255,0.82); max-width: 56ch; margin: 0 auto 32px; }
.cta-banner .eyebrow {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

/* Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--line-on-dark);
  padding: 80px 0 30px;
  color: var(--text-on-dark-muted);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% 0%, rgba(15,61,255,0.18), transparent 70%);
  pointer-events: none;
}
.site-footer > .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--text-on-dark-muted); }
.site-footer a:hover { color: #fff; }
.site-footer .brand {
  display: inline-flex;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  align-items: center;
  height: auto;
}
.site-footer .brand img { height: 24px; filter: none; }
.site-footer .footer-tag { margin-top: 18px; max-width: 36ch; line-height: 1.65; color: var(--text-on-dark-muted); }

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Cursor-spotlight bij hover op de kaartjes -------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .values .value,
  .approach .phase,
  .ovam-timeline .ovam-step,
  .services-grid .service-card {
    overflow: hidden;
  }
  .values .value::after,
  .approach .phase::after,
  .services-grid .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      450px circle at var(--mx, 50%) var(--my, 50%),
      rgba(15, 61, 255, 0.12),
      transparent 55%
    );
    opacity: 0;
    transition: opacity 360ms ease;
    pointer-events: none;
    border-radius: inherit;
  }
  /* OVAM-kaartjes staan op donkere achtergrond, een lichter blauw vlak licht beter op */
  .ovam-timeline .ovam-step::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(80, 130, 255, 0.22),
      transparent 55%
    );
    opacity: 0;
    transition: opacity 360ms ease;
    pointer-events: none;
    border-radius: inherit;
  }
  .values .value:hover::after,
  .approach .phase:hover::after,
  .ovam-timeline .ovam-step:hover::after,
  .services-grid .service-card:hover::after { opacity: 1; }
}

/* Visually-hidden helper ---------------------------------------------------- */
.sr-only,
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  left: -9999px;
}

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

/* Wide desktop — geen overdreven grote spacing */
@media (min-width: 1440px) {
  :root { --gutter: 32px; }
  .brand img { height: 36px; }
}

/* Tablet landscape & klein laptop scherm */
@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  section { padding: clamp(40px, 6vw, 72px) 0; }
  .container { padding: 0 var(--gutter); }
  .approach { gap: 14px; }
}

/* Tablet portrait & onder, hier klappen multi-kolomlayouts */
@media (max-width: 980px) {
  .hero { padding-top: clamp(40px, 8vw, 80px); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: auto; min-height: 0; aspect-ratio: 16/10; max-height: 440px; }
  .services-grid, .two-col, .service-detail, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .two-col img, .two-col-img, .about-grid .portrait { height: auto; min-height: 0; aspect-ratio: 16/10; max-height: 440px; }
  .approach { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Footer naar 2x2 zodat er geen losse wrappende kolom hangt */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .service-aside { position: static; }
  .hero-meta { gap: 18px; }
  .brand-tagline { font-size: clamp(1.6rem, 6.4vw, 2.6rem); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .service-detail { max-width: 100%; }
  /* Service-aside CTA op tablet: 2 kolommen blijven werken maar niet zo wijd */
  .service-aside { grid-template-columns: 1fr; gap: 20px; }
  .service-aside .aside-actions { flex-direction: row; flex-wrap: wrap; }
  .service-aside .aside-actions .btn { flex: 1; min-width: 200px; }
}

/* Smartphone landscape & tablet smal — hamburger-menu */
@media (max-width: 760px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; }
  h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 0; right: 0; top: 78px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    padding: 14px var(--gutter) 22px;
    display: none;
    gap: 4px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; border-radius: var(--radius-sm); min-height: 44px; }
  .nav .btn-cta { margin: 12px 0 0; justify-content: center; }
  .hero-grid { gap: 32px; }
  .hero-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4/3;
    width: 100%;
    margin-inline: 0;
    max-width: 100%;
  }
  .hero-meta {
    grid-template-columns: 1fr; gap: 14px;
    padding-top: 22px; margin-top: 36px;
  }
  .hero-meta > div { display: flex; align-items: baseline; gap: 14px; }
  .hero-meta .stat-num { font-size: 1.6rem; flex: 0 0 auto; min-width: 64px; }
  .hero-meta .stat-label { margin-top: 0; flex: 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .approach { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; min-height: 48px; }
  .page-hero { padding-top: clamp(28px, 5vw, 50px); padding-bottom: clamp(28px, 5vw, 50px); }
  .crumbs { margin-bottom: 16px; }
  .service-card { padding: 32px 24px; min-height: 0; }
  .service-aside {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 18px;
  }
  .service-aside .aside-actions { flex-direction: column; min-width: 0; }
  .service-aside .aside-actions .btn { width: 100%; }
  .gallery { gap: 8px; }
  .gallery a { aspect-ratio: 4/5; }
  .callout { padding: 22px; flex-direction: column; align-items: flex-start; }
  .callout .btn { width: 100%; justify-content: center; }
  .form-card { padding: 24px 20px; }
  .field input, .field select, .field textarea { padding: 12px 14px; font-size: 16px; /* prevent iOS zoom */ }
  .bleed-banner { margin: 24px auto; }
  .bleed-banner img { height: clamp(220px, 56vw, 320px); border-radius: var(--radius); border-width: 2px; }
  .bleed-banner-text { border-radius: var(--radius); padding: 16px; }
  .bleed-banner-text h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .hero-banner { margin-top: 24px; }
  .hero-banner img { height: clamp(200px, 50vw, 300px); border-radius: var(--radius); }
  .brand-tagline { margin-bottom: 18px; font-size: clamp(1.5rem, 7vw, 2.3rem); }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px 6px 8px; top: 12px; left: 12px; }
  .hero-badge .dot { width: 7px; height: 7px; }
  .hero-tag { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; font-size: 0.88rem; }
  .checklist li { padding: 12px 0 12px 36px; }
  .faq summary { padding: 18px 22px; font-size: 1rem; }
  .faq .answer { padding: 0 22px 20px; }
  .contact-info dd { font-size: 1.05rem; }
  /* Voorkom dat tabel-headers (CTA-banner h2) te krap worden */
  .cta-banner h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .btn { padding: 13px 22px; font-size: 0.92rem; min-height: 44px; }
}

/* Smartphone portrait */
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery a { aspect-ratio: 3/4; }
  .hero h1 { letter-spacing: -0.02em; }
  .service-detail .body p { font-size: 1rem; }
  .approach .phase { padding: 24px 22px 26px; }
  .value { padding: 22px; }
}

/* Heel kleine telefoons (≤420px) */
@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .site-header .container { height: 64px; }
  .brand img { height: 24px; }
  .nav { top: 64px; padding: 10px var(--gutter) 18px; }
  .nav a { padding: 12px 10px; }
  .approach .phase .num { font-size: 2rem; }
  .service-aside .price-line { font-size: 1.5rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery a { aspect-ratio: 4/3; }
  h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .brand-tagline { font-size: clamp(1.3rem, 8vw, 1.9rem); }
  .hero-badge { font-size: 0.68rem; }
  .hero-meta .stat-num { font-size: 1.4rem; min-width: 56px; }
  .form-card { padding: 20px 16px; }
  .service-card { padding: 26px 20px; }
  .footer-grid { gap: 28px; }
  .page-hero { padding-top: 56px; }
  .crumbs { font-size: 0.78rem; }
}

/* Heel kleine schermen (≤360px) */
@media (max-width: 360px) {
  body { font-size: 15px; }
  :root { --gutter: 14px; }
  .nav .btn-cta { padding: 10px 16px; }
}

/* Landscape mobiel: zorg dat hero niet te hoog wordt */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding-top: 30px; padding-bottom: 40px; }
  .hero-meta { margin-top: 24px; padding-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
