/* =========================================================
   de Vet'plant — Design System
   Palet: fris groen + beige/bruin (visitekaartje) met oranje accent (werkbus)
   ========================================================= */

:root {
  /* Groen — afgestemd op het logo-groen (lichter, levendiger) */
  --green-900: #33512b;
  --green-800: #3e6234;
  --green-700: #4e7440;
  --green-600: #5f8a4c;
  --sage-500:  #85a267;
  --sage-500b: #7f9a63;
  --sage-400:  #9cb385;
  --sage-300:  #c3d2b0;
  --sage-200:  #dbe4cd;

  /* Beige / zand / crème */
  --cream:     #f6f1e6;
  --cream-2:   #efe8d8;
  --sand:      #e5dac2;
  --sand-deep: #d8caac;

  /* Bruin */
  --brown:     #6e5745;
  --brown-2:   #8a7360;

  /* Oranje accent (werkbus) */
  --orange:      #e86a24;
  --orange-600:  #d25a18;
  --orange-100:  #fbe6d6;

  /* Inkt / tekst */
  --ink:       #232c1d;
  --ink-2:     #4c5544;
  --ink-3:     #6b7360;

  /* Roles */
  --bg:        #fbf8f1;
  --bg-alt:    var(--cream);
  --surface:   #ffffff;
  --line:      #e6e0d1;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(37, 61, 32, .06);
  --sh-md: 0 12px 30px rgba(37, 61, 32, .10);
  --sh-lg: 0 30px 70px rgba(37, 61, 32, .16);

  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-700); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--green-900); }
em { font-style: italic; color: var(--green-600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--green-600);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-100); }

.section__eyebrow {
  display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage-500); margin-bottom: 14px;
}
.section__eyebrow--accent { color: var(--orange); }
.section__title { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.section__intro { color: var(--ink-2); font-size: 1.08rem; max-width: 60ch; margin-top: 16px; }
.section__head { max-width: 780px; margin-bottom: 44px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .section__intro { margin-left: auto; margin-right: auto; }

.section { padding: 84px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 52px 0; } .feature { padding: 48px 0; } }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .98rem; padding: 13px 24px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  min-height: 46px; white-space: nowrap; line-height: 1;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; min-height: 54px; }
.btn--sm { padding: 9px 16px; font-size: .88rem; min-height: 40px; }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: 0 8px 20px rgba(59, 93, 52, .25); }
.btn--primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(59, 93, 52, .34); }
.btn--accent { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(232, 106, 36, .30); }
.btn--accent:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232, 106, 36, .40); }
.btn--wa { background: var(--green-700); color: #fff; box-shadow: 0 8px 20px rgba(59, 93, 52, .28); }
.btn--wa:hover { background: var(--green-800); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--green-800); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--green-800); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.34); }
.btn--glass { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn--glass svg { fill: #fff; }
.btn--ghost { background: transparent; border: 1.5px solid var(--sand-deep); color: var(--green-800); }
.btn--ghost:hover { border-color: var(--green-600); background: var(--cream); transform: translateY(-2px); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo img {
  height: 58px; width: auto; transition: height .35s var(--ease);
}
.nav.scrolled { background: rgba(251, 248, 241, .88); backdrop-filter: blur(14px); box-shadow: 0 2px 20px rgba(37, 61, 32, .08); padding: 8px 0; }
.nav.scrolled .nav__logo img { height: 46px; }
/* Over de donkere hero: lichte nav */
.nav:not(.scrolled) .nav__logo img { filter: drop-shadow(0 2px 10px rgba(0,0,0,.6)) drop-shadow(0 0 2px rgba(0,0,0,.4)); }
.nav:not(.scrolled) .nav__links a { color: rgba(246,241,230,.86); }
.nav:not(.scrolled) .nav__links a:hover { color: #fff; }
.nav:not(.scrolled) .nav__phone { color: #fff; }
.nav:not(.scrolled) .nav__burger span { background: #fff; }
.nav:not(.scrolled) .nav__cta { background: var(--cream); color: var(--green-800); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.nav:not(.scrolled) .nav__cta:hover { background: #fff; }
.nav__links { display: flex; gap: 20px; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--ink-2); position: relative; padding: 6px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--orange); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--green-800); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: var(--green-800); white-space: nowrap; flex: none; }
.nav__phone span { white-space: nowrap; }
.nav__phone svg { width: 18px; height: 18px; fill: var(--orange); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__burger span { width: 24px; height: 2px; background: var(--green-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  padding: 100px 28px 40px; display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__links a { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-800); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }

/* =========================================================
   Decorative shapes
   ========================================================= */
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; z-index: 0; }
.blob--1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--sage-300), transparent 70%); top: -120px; right: -80px; }
.blob--2 { width: 420px; height: 420px; background: radial-gradient(circle, var(--sand), transparent 70%); bottom: -100px; left: -120px; }
.blob--3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--orange-100), transparent 70%); top: 40%; left: 45%; opacity: .5; }
.blob--soft { width: 500px; height: 500px; background: radial-gradient(circle, var(--sage-200), transparent 70%); top: -60px; left: -80px; opacity: .7; }
.blob--orange { width: 460px; height: 460px; background: radial-gradient(circle, var(--orange-100), transparent 70%); top: -40px; right: -60px; opacity: .8; }

.leaf { position: absolute; width: 70px; height: 70px; color: var(--sage-400); opacity: .35; z-index: 0; }
.leaf--a { top: 18%; left: 6%; animation: float 9s ease-in-out infinite; }
.leaf--b { top: 62%; right: 10%; width: 50px; height: 50px; color: var(--sage-500); animation: float 11s ease-in-out infinite reverse; }
.leaf--c { top: 30%; right: 24%; width: 40px; height: 40px; opacity: .25; animation: float 13s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(10deg); } }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate; padding: 120px 0 72px;
  background: #22371c;
}
/* Beeld + video-laag met cinematische inrij-animatie */
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__img, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__img { animation: heroDriveIn 1.8s var(--ease) both, heroKen 26s ease-in-out 1.8s infinite alternate; }
.hero__video { opacity: 0; transition: opacity 1.1s var(--ease); z-index: 1; animation: heroDriveIn 1.8s var(--ease) both; }
.hero__video.is-playing { opacity: 1; }
.hero__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(12,20,8,.92) 0%, rgba(12,20,8,.66) 44%, rgba(12,20,8,.22) 72%, rgba(12,20,8,0) 90%),
    linear-gradient(180deg, rgba(12,20,8,.55) 0%, rgba(12,20,8,.05) 26%, rgba(12,20,8,.05) 55%, rgba(12,20,8,.66) 100%); }
@keyframes heroDriveIn { from { transform: translateX(7%) scale(1.18); } to { transform: translateX(0) scale(1.06); } }
@keyframes heroKen { from { transform: scale(1.06) translate(0, 0); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
.hero__mesh { position: absolute; inset: -12%; z-index: 0; filter: blur(64px); }
.mesh { position: absolute; border-radius: 50%; mix-blend-mode: screen; will-change: transform; }
.mesh--1 { width: 46vw; height: 46vw; background: radial-gradient(circle, #8aa76a, transparent 62%); top: -8%; left: -6%; opacity: .6; animation: meshA 17s ease-in-out infinite; }
.mesh--2 { width: 42vw; height: 42vw; background: radial-gradient(circle, #e86a24, transparent 60%); bottom: -14%; right: -6%; opacity: .42; animation: meshB 21s ease-in-out infinite; }
.mesh--3 { width: 38vw; height: 38vw; background: radial-gradient(circle, #d3e0c2, transparent 62%); top: 14%; right: 16%; opacity: .5; animation: meshC 19s ease-in-out infinite; }
.mesh--4 { width: 36vw; height: 36vw; background: radial-gradient(circle, #4a6b3e, transparent 60%); bottom: 2%; left: 16%; opacity: .55; animation: meshA 24s ease-in-out infinite reverse; }
@keyframes meshA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.16); } }
@keyframes meshB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-8%,-6%) scale(1.2); } }
@keyframes meshC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6%,10%) scale(1.1); } }

.hero__glow { position: absolute; width: 520px; height: 520px; left: 50%; top: 40%; border-radius: 50%; z-index: 1; pointer-events: none; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(232,106,36,.20), transparent 60%); opacity: 0; transition: opacity .5s var(--ease); }
.hero__grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__leaves { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hleaf { position: absolute; color: #fff; opacity: .07; }
.hleaf--1 { width: 90px; height: 90px; top: 16%; left: 8%; transform: rotate(18deg); animation: float 12s ease-in-out infinite; }
.hleaf--2 { width: 64px; height: 64px; bottom: 18%; right: 12%; transform: rotate(-24deg); animation: float 15s ease-in-out infinite reverse; }
.hleaf--3 { width: 48px; height: 48px; top: 60%; left: 18%; opacity: .05; animation: float 18s ease-in-out infinite; }

.hero__inner { position: relative; z-index: 3; text-align: left; max-width: 680px; margin: 0; }
.hero__pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; border-radius: var(--r-pill); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(8px); color: var(--cream); font-weight: 600; font-size: .8rem; letter-spacing: .03em; }
.hero__pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: dotpulse 2.4s ease-in-out infinite; }
@keyframes dotpulse { 0%,100% { box-shadow: 0 0 0 4px rgba(232,106,36,.28); } 50% { box-shadow: 0 0 0 8px rgba(232,106,36,.04); } }
.hero__title { margin: 18px 0 16px; font-weight: 500; line-height: 1.0; }
.hero__title span { display: block; }
.hero__title-sub { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.3rem, 3vw, 2.1rem); color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero__title-grad {
  font-weight: 700; font-size: clamp(2.9rem, 8vw, 5.8rem); letter-spacing: -.02em;
  color: #ffffff; -webkit-text-fill-color: #ffffff;
}
.hero__title-em { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(2.3rem, 6.4vw, 4.8rem); color: #ffffff; }
.hero__lead { max-width: 52ch; margin: 0; color: rgba(246,241,230,.9); font-size: clamp(1rem, 1.5vw, 1.16rem); text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hero__title { text-shadow: 0 2px 6px rgba(0,0,0,.55), 0 4px 30px rgba(0,0,0,.5); }
.hero__lead strong { color: #fff; font-weight: 700; }
.hero__cta { display: flex; gap: 14px; justify-content: flex-start; align-items: center; flex-wrap: wrap; margin: 26px 0 22px; }
.hero__trust { display: flex; gap: 22px; justify-content: flex-start; flex-wrap: wrap; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: rgba(246,241,230,.8); }
.hero__trust svg { width: 18px; height: 18px; color: var(--sage-300); background: rgba(255,255,255,.1); border-radius: 50%; padding: 3px; }

.hero__spin { position: absolute; bottom: 30px; right: 42px; width: 112px; height: 112px; z-index: 3; }
.hero__spin-svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.hero__spin-svg text { font-size: 8.2px; letter-spacing: 1.1px; fill: rgba(246,241,230,.65); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; }
.hero__spin-leaf { position: absolute; top: 50%; left: 50%; width: 30px; height: 30px; transform: translate(-50%,-50%); color: var(--sage-300); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(219,228,205,.5); border-radius: 14px; z-index: 3; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--sage-300); border-radius: 2px; animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* =========================================================
   USP strip
   ========================================================= */
.usps { background: var(--green-800); color: var(--cream); padding: 40px 0; position: relative; z-index: 3; }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp svg { width: 34px; height: 34px; color: var(--sage-400); flex: none; }
.usp h3 { color: #fff; font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.usp p { font-size: .88rem; color: var(--sage-300); line-height: 1.4; }

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--sage-300); }
.service-card__icon { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--sage-200); display: grid; place-items: center; margin-bottom: 18px; }
.service-card__icon svg { width: 30px; height: 30px; color: var(--green-700); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-2); font-size: .96rem; flex: 1; }
.service-card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.service-card__list li { position: relative; padding-left: 22px; font-size: .9rem; color: var(--ink-2); }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--sage-400); }
.service-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--orange); }
.service-card__link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.service-card__link:hover svg { transform: translateX(4px); }

.service-card--feature { border: 2px solid var(--orange); background: linear-gradient(170deg, #fff, var(--orange-100) 220%); box-shadow: 0 14px 36px rgba(232, 106, 36, .12); }
.service-card--feature .service-card__icon { background: var(--orange); }
.service-card--feature .service-card__icon svg { color: #fff; }
.service-card--feature .service-card__list li::before { background: var(--orange); }
.service-card__badge {
  position: absolute; top: -12px; right: 18px; background: var(--orange); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill); box-shadow: 0 6px 14px rgba(232, 106, 36, .3);
}
.services__featured { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.services__featured .service-card { padding: 34px 30px; }
.services__featured .service-card h3 { font-size: 1.6rem; }
.services__note {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px dashed var(--sand-deep); border-radius: var(--r-pill);
  padding: 12px 22px; font-size: .95rem; color: var(--ink-2);
}
.services__note svg { width: 20px; height: 20px; color: var(--brown); flex: none; }
.services__note strong { color: var(--green-700); }

/* =========================================================
   Feature sections (specialisaties)
   ========================================================= */
.feature { overflow: hidden; padding: 84px 0; }
.feature--clean { background: linear-gradient(180deg, var(--bg), var(--cream)); position: relative; }
.feature--business { background: var(--green-900); color: var(--cream); }
.feature__bg { position: absolute; inset: 0; z-index: 0; }
.feature__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.feature__inner--rev .feature__copy { order: 1; }
.feature__lead { font-size: 1.12rem; margin: 8px 0 26px; }
.feature--business .feature__lead, .feature--business .section__title { color: var(--cream); }
.feature--business .section__title { color: #fff; }

.feature__media-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 8px solid #fff; }
.feature__media-frame > img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
/* foto vult de volledige kolomhoogte zodat er geen lege ruimte naast/onder ontstaat */
.feature .feature__inner { align-items: stretch; }
.feature .feature__media { display: flex; }
.feature .feature__media-frame { width: 100%; height: 100%; }
.feature--business .feature__media-frame { border-color: rgba(255,255,255,.1); }
.feature__placeholder {
  aspect-ratio: 4 / 3.4; background: repeating-linear-gradient(135deg, var(--sage-200), var(--sage-200) 20px, var(--sage-300) 20px, var(--sage-300) 40px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 24px; color: var(--green-700);
}
.feature__placeholder svg { width: 54px; height: 54px; opacity: .8; }
.feature__placeholder span { font-family: var(--font-display); font-size: 1.25rem; }
.feature__placeholder small { font-size: .85rem; color: var(--ink-2); opacity: .8; }
.feature__placeholder--accent { background: repeating-linear-gradient(135deg, #34502e, #34502e 20px, #3d5c36 20px, #3d5c36 40px); color: var(--sage-300); }
.feature__placeholder--accent span { color: #fff; }
.feature__placeholder--accent small { color: var(--sage-300); }

.feature__checks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.feature__checks li { display: flex; gap: 14px; align-items: flex-start; }
.feature__checks svg { width: 24px; height: 24px; flex: none; color: #fff; background: var(--sage-500); border-radius: 50%; padding: 4px; margin-top: 2px; }
.feature__checks strong { display: block; font-size: 1.02rem; color: var(--green-800); }
.feature__checks span { font-size: .94rem; color: var(--ink-2); }

.feature__disclaimer {
  display: flex; gap: 12px; align-items: flex-start; background: var(--orange-100);
  border-left: 4px solid var(--orange); border-radius: var(--r-sm); padding: 16px 18px; margin-bottom: 26px;
}
.feature__disclaimer svg { width: 24px; height: 24px; flex: none; color: var(--orange-600); }
.feature__disclaimer p { font-size: .95rem; color: var(--brown); }
.feature__disclaimer strong { color: var(--orange-600); }

/* Bedrijven grid */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.biz-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 20px 18px; }
.biz-item svg { width: 30px; height: 30px; color: var(--sage-400); margin-bottom: 10px; }
.biz-item h3 { color: #fff; font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.biz-item p { font-size: .86rem; color: var(--sage-300); line-height: 1.45; }

/* =========================================================
   Promo
   ========================================================= */
.promo { position: relative; overflow: hidden; background: linear-gradient(120deg, #ef7a34, var(--orange) 42%, var(--orange-600)); color: #fff; padding: 46px 0; }
.promo::before { content: ''; position: absolute; top: 0; bottom: 0; left: -40%; width: 40%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.20), transparent); transform: skewX(-18deg); animation: promoShine 6s ease-in-out infinite; pointer-events: none; }
@keyframes promoShine { 0%, 100% { left: -40%; } 55%, 72% { left: 130%; } }
.promo__deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.promo__leaf { position: absolute; color: #fff; opacity: .12; }
.promo__leaf--1 { width: 120px; height: 120px; top: -26px; right: 14%; transform: rotate(20deg); }
.promo__leaf--2 { width: 82px; height: 82px; bottom: -22px; left: 20%; transform: rotate(-30deg); }
.promo__leaf--3 { width: 56px; height: 56px; top: 28%; right: 40%; opacity: .09; }
.promo__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.promo__badge { flex: none; width: 132px; height: 132px; border-radius: 50%; background: rgba(255,255,255,.14); border: 3px dashed rgba(255,255,255,.7); display: grid; place-items: center; text-align: center; transform: rotate(-6deg); box-shadow: 0 12px 30px rgba(0,0,0,.15); animation: promoPulse 3s ease-in-out infinite; }
@keyframes promoPulse { 0%, 100% { transform: rotate(-6deg) scale(1); } 50% { transform: rotate(-6deg) scale(1.04); } }
.promo__badge-num { display: block; font-family: var(--font-display); font-size: 2.9rem; font-weight: 600; line-height: .9; }
.promo__badge-num span { font-size: 1.4rem; vertical-align: top; }
.promo__badge-lbl { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; margin-top: 3px; }
.promo__text { flex: 1; min-width: 260px; }
.promo__tag { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.2); padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 10px; }
.promo__text h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.5rem); max-width: 22ch; line-height: 1.08; }
.promo__text h2 strong { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255,255,255,.55); text-underline-offset: 5px; }
.promo__text p { margin-top: 8px; color: rgba(255,255,255,.92); max-width: 46ch; }
.promo__btn { flex: none; }

/* =========================================================
   Over Michiel
   ========================================================= */
.michiel { background: var(--cream); }
.michiel .feature__inner { grid-template-columns: 400px 1fr; gap: 52px; align-items: center; }
.michiel__media { position: relative; }
.michiel__frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 8px solid #fff; aspect-ratio: 4 / 4.2; max-width: 380px; }
.michiel__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.michiel__sig { position: absolute; bottom: -26px; right: 10px; width: 130px; height: 130px; background: #fff; border-radius: 50%; box-shadow: var(--sh-md); display: grid; place-items: center; padding: 14px; }
.michiel__sig img { width: 100%; height: auto; }
.michiel__copy p { color: var(--ink-2); margin-bottom: 16px; font-size: 1.04rem; }
.michiel__copy strong { color: var(--green-700); }
.michiel__quote { background: var(--surface); border-radius: var(--r-md); padding: 24px 26px; margin: 26px 0; position: relative; box-shadow: var(--sh-sm); border-left: 4px solid var(--sage-400); }
.michiel__quote svg { width: 32px; height: 32px; color: var(--sage-300); margin-bottom: 6px; }
.michiel__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--green-800); margin-bottom: 8px; }
.michiel__quote span { font-weight: 700; font-size: .9rem; color: var(--brown); }
.michiel__contact { display: flex; flex-wrap: wrap; gap: 12px; }
.michiel__contact svg { width: 18px; height: 18px; }

/* =========================================================
   Bus & materiaal
   ========================================================= */
.gear { background: var(--bg); overflow: hidden; }
.gear__bg { position: absolute; inset: 0; z-index: 0; }
.gear .container { position: relative; z-index: 2; }
.gear__showcase { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 8px solid #fff; margin-bottom: 40px; }
.gear__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gear__point { text-align: center; padding: 20px; }
.gear__num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--green-700); line-height: 1; }
.gear__word { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--orange); line-height: 1; }
.gear__unit { font-family: var(--font-display); font-size: 1.4rem; color: var(--orange); margin-left: 2px; }
.gear__point p { margin-top: 8px; color: var(--ink-2); font-size: .95rem; }

/* =========================================================
   Realisaties / galerij
   ========================================================= */
.gallery { background: var(--cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-rows: 240px; }
.gallery__item { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 5px solid #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.gallery__item:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__ph { width: 100%; height: 100%; display: grid; place-items: center; background: repeating-linear-gradient(135deg, var(--sage-200), var(--sage-200) 22px, var(--sage-300) 22px, var(--sage-300) 44px); }
.gallery__ph svg { width: 54px; height: 54px; color: var(--green-600); opacity: .55; }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; background: linear-gradient(to top, rgba(37,61,32,.82), transparent); color: #fff; }
.gallery__item figcaption strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.gallery__tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--orange); color: #fff; padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 8px; }
.gallery__note { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--ink-2); }
.gallery__note svg { width: 20px; height: 20px; color: var(--brown); flex: none; }
.gallery__note a { color: var(--orange); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================
   Werkgebied
   ========================================================= */
.area { background: var(--green-800); color: var(--cream); overflow: hidden; }
.area .section__title { color: #fff; }
.area .section__eyebrow { color: var(--sage-400); }
.area .section__intro { color: var(--sage-300); }
.area__marquee { margin: 20px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.area__track { display: flex; gap: 18px; width: max-content; animation: marquee 34s linear infinite; }
.area__track span { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.6rem); color: rgba(255,255,255,.18); font-style: italic; white-space: nowrap; transition: color .3s; }
.area__track span:hover { color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }
.area__note { text-align: center; color: var(--sage-300); margin-top: 20px; }
.area__note a { color: var(--orange); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Waarom + Reviews
   ========================================================= */
.why { background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; }
.why__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.why__item:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.why__no { font-family: var(--font-display); font-size: 1.5rem; color: var(--orange); font-weight: 600; }
.why__item h3 { font-size: 1.2rem; margin: 10px 0 8px; }
.why__item p { color: var(--ink-2); font-size: .94rem; }

.reviews { background: var(--cream); border-radius: var(--r-xl); padding: 46px; }
.reviews__head { text-align: center; margin-bottom: 30px; }
.reviews__head h3 { font-size: 1.7rem; }
.reviews__head p { color: var(--ink-2); margin-top: 8px; }
/* Verticaal scrollende testimonial-kolommen */
.reviews__cols { display: flex; gap: 20px; justify-content: center; max-height: 500px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent); }
.reviews__col { flex: 1 1 0; max-width: 340px; }
.reviews__col--md, .reviews__col--lg { display: none; }
.reviews__col-inner { display: flex; flex-direction: column; gap: 20px; animation: reviewsScroll var(--dur, 30s) linear infinite; will-change: transform; }
@keyframes reviewsScroll { to { transform: translateY(-50%); } }
.reviews__cols:hover .reviews__col-inner { animation-play-state: paused; }
@media (min-width: 768px) { .reviews__col--md { display: block; } }
@media (min-width: 1024px) { .reviews__col--lg { display: block; } }
.review__av { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--av, var(--sage-500)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .82rem; }
.review__who { display: flex; flex-direction: column; line-height: 1.25; }
.review__who strong { color: var(--green-800); font-size: .95rem; }
.review__who small { color: var(--ink-3); font-size: .82rem; font-weight: 500; }
.review { position: relative; background: var(--surface); border-radius: var(--r-md); padding: 26px; box-shadow: var(--sh-sm); }
.review__ex { position: absolute; top: 12px; right: 12px; font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brown-2); background: var(--cream-2); border: 1px solid var(--sand-deep); padding: 3px 8px; border-radius: var(--r-pill); }
.review figcaption strong { color: var(--green-800); }

/* Review achterlaten */
.review-cta { display: grid; grid-template-columns: .82fr 1.18fr; gap: 30px; align-items: center; }
.review-cta__intro h3 { font-size: 1.4rem; }
.review-cta__intro p { color: var(--ink-2); margin-top: 8px; font-size: .96rem; }
.review-cta__form { display: flex; flex-direction: column; gap: 12px; }
.review-cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-cta__form input, .review-cta__form textarea { font: inherit; font-size: .96rem; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--ink); width: 100%; transition: border-color .2s, box-shadow .2s; }
.review-cta__form input:focus, .review-cta__form textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(74,107,62,.12); outline: none; }
.review-cta__form textarea { resize: vertical; min-height: 84px; }
.review-cta__stars { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 3px; }
.review-cta__stars input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.review-cta__stars label { font-size: 1.8rem; color: var(--sand-deep); cursor: pointer; transition: color .15s var(--ease); line-height: 1; }
.review-cta__stars label:hover, .review-cta__stars label:hover ~ label, .review-cta__stars input:checked ~ label { color: var(--orange); }
.review-cta__stars input:focus-visible + label { outline: 2px solid var(--green-600); outline-offset: 2px; border-radius: 3px; }
.review-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 2px; }
.review-cta__status { font-size: .9rem; font-weight: 600; min-height: 1.1em; }
.review-cta__status.ok { color: var(--green-700); }
.review-cta__status.err { color: #c0392b; }
.review__stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 12px; }
.review blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--green-800); line-height: 1.5; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review--placeholder { border: 1.5px dashed var(--sand-deep); box-shadow: none; background: rgba(255,255,255,.5); }
.review--placeholder blockquote { color: var(--ink-3); }
.review--placeholder figcaption { color: var(--sage-500); }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--green-900); color: var(--cream); overflow: hidden; }
.contact__bg { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.contact .container { position: relative; z-index: 2; }
.contact .section__title { color: #fff; }
.contact .section__intro { color: var(--sage-300); }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }

.contact__methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.contact__method { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 16px 18px; transition: background .25s var(--ease), transform .25s var(--ease); }
.contact__method:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact__method-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-500); display: grid; place-items: center; flex: none; }
.contact__method-ic svg { width: 24px; height: 24px; color: #fff; fill: currentColor; }
.contact__method--wa .contact__method-ic { background: var(--green-600); }
.contact__method--wa .contact__method-ic svg { fill: #fff; }
.contact__method-tx strong { display: block; color: #fff; font-size: 1.02rem; }
.contact__method-tx small { color: var(--sage-300); font-size: .85rem; }

.contact__qr { display: flex; align-items: center; gap: 18px; background: var(--cream); color: var(--ink); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 14px; }
.contact__qr-code { width: 108px; height: 108px; flex: none; background: #fff; border-radius: 12px; padding: 6px; box-shadow: var(--sh-sm); }
.contact__qr-code svg { width: 100%; height: 100%; display: block; }
.contact__qr-tx strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--green-800); }
.contact__qr-tx p { font-size: .88rem; color: var(--ink-2); margin-top: 4px; }
.contact__qr-tx span { color: var(--orange); font-weight: 700; }

.contact__map { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 16px 18px; transition: background .25s; }
.contact__map:hover { background: rgba(255,255,255,.12); }
.contact__map svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
.contact__map strong { display: block; color: #fff; font-size: .96rem; }
.contact__map small { color: var(--sage-300); font-size: .84rem; }

.contact__socials { margin-bottom: 14px; }
.contact__socials-label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-300); margin-bottom: 10px; }
.contact__socials-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 16px; border-radius: var(--r-md); font-weight: 700; font-size: .96rem; color: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease); }
.social-btn svg { width: 22px; height: 22px; }
.social-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.social-btn--ig { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(232,106,36,.35); }
.social-btn--fb { background: var(--cream); color: var(--green-800); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

/* Form */
.contact__form-wrap { background: var(--surface); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--sh-lg); }
.cform { display: flex; flex-direction: column; gap: 18px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cform__field { display: flex; flex-direction: column; gap: 7px; }
.cform label, .cform legend { font-weight: 600; font-size: .9rem; color: var(--green-800); }
.cform input, .cform select, .cform textarea {
  font: inherit; font-size: .98rem; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: var(--bg); color: var(--ink); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(74, 107, 62, .12); outline: none; }
.cform textarea { resize: vertical; min-height: 110px; }
.cform input[aria-invalid="true"], .cform textarea[aria-invalid="true"] { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, .12); }
.cform__checks { border: none; padding: 0; }
.cform__checks legend { margin-bottom: 10px; }
.cform__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cform__checks legend { grid-column: 1 / -1; }
.chk { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 11px 14px; cursor: pointer; font-weight: 500 !important; transition: border-color .2s, background .2s; }
.chk:hover { border-color: var(--sage-400); }
.chk input { width: auto; accent-color: var(--green-700); }
.chk input:checked + span { color: var(--green-700); font-weight: 700; }
.cform__consent { display: flex; gap: 12px; align-items: flex-start; font-weight: 500 !important; font-size: .88rem !important; color: var(--ink-2) !important; }
.cform__consent input { width: auto; margin-top: 3px; accent-color: var(--green-700); }
.cform__consent a { color: var(--green-700); font-weight: 700; text-decoration: underline; }
.cform__submit { margin-top: 4px; }
.cform__hint { font-size: .88rem; color: var(--ink-3); text-align: center; }
.cform__hint a { color: var(--orange); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cform__status { font-size: .95rem; font-weight: 600; text-align: center; padding: 4px; }
.cform__status.ok { color: var(--green-700); }
.cform__status.err { color: #c0392b; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--green-900); color: var(--sage-300); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__logo { height: 82px; width: auto; margin-bottom: 14px; padding: 8px 14px; border-radius: 16px; background: radial-gradient(ellipse at center, rgba(246,241,230,.16), rgba(246,241,230,0) 72%); }
.footer__tag { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.footer__slogan { font-size: .92rem; max-width: 34ch; line-height: 1.6; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__social { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); transition: background .25s, border-color .25s, transform .25s; }
.footer__social:hover { transform: translateY(-3px); }
.footer__social svg { width: 22px; height: 22px; color: var(--sage-300); }
.footer__social:hover { background: var(--orange); border-color: var(--orange); }
.footer__social:hover svg { color: #fff; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; font-size: .94rem; color: var(--sage-300); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }
.footer__cookiebtn { font-size: .94rem; color: var(--sage-300); padding: 5px 0; text-decoration: underline; text-underline-offset: 3px; }
.footer__cookiebtn:hover { color: var(--orange); }
.footer__legal { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer__legal-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: var(--sage-500); }
.footer__legal a { color: var(--sage-300); }
.footer__legal a:hover { color: var(--orange); }

/* =========================================================
   Cookiebanner
   ========================================================= */
.cookie { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 720px; margin: 0 auto; z-index: 150; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); border: 1px solid var(--line); padding: 22px 24px; animation: cookieUp .5s var(--ease); }
@keyframes cookieUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie__inner { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.cookie__text { flex: 1; min-width: 260px; }
.cookie__text h3 { font-size: 1.15rem; margin-bottom: 6px; }
.cookie__text p { font-size: .9rem; color: var(--ink-2); }
.cookie__text a { color: var(--green-700); font-weight: 700; text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__prefs { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.cookie__pref { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cookie__pref span { display: flex; flex-direction: column; }
.cookie__pref strong { font-size: .96rem; color: var(--green-800); }
.cookie__pref small { font-size: .82rem; color: var(--ink-3); }
.cookie__pref input { width: 20px; height: 20px; accent-color: var(--green-700); }
.cookie__prefs .btn { align-self: flex-start; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .12s; }

/* ===== Motion / effecten-laag ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 3px; z-index: 200;
  pointer-events: none;
  background: linear-gradient(90deg, var(--green-600), var(--sage-500), var(--orange));
  box-shadow: 0 1px 6px rgba(232,106,36,.4);
}
.tiltable {
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease) !important;
  transform-style: preserve-3d;
}
.btn--primary, .btn--accent { position: relative; overflow: hidden; }
.btn--primary::after, .btn--accent::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -150%; width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn--primary:hover::after, .btn--accent:hover::after { animation: btnShine .85s var(--ease); }
@keyframes btnShine { from { left: -150%; } to { left: 170%; } }
.leaf--x { position: absolute; color: var(--sage-400); animation: float 10s ease-in-out infinite; z-index: 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .leaf, .leaf--x, .hero__scroll span, .area__track, .mesh, .hleaf, .hero__spin-svg, .hero__title-grad, .hero__pill-dot, .hero__img, .hero__video { animation: none !important; }
  .hero__img { transform: scale(1.02); }
  .area__track { transform: none; }
  .scroll-progress { display: none; }
  .btn--primary::after, .btn--accent::after { display: none; }
  .promo::before, .promo__badge, .promo__leaf { animation: none !important; }
  .fab__toggle::after, .beam::before, .reviews__col-inner { animation: none !important; }
}

/* =========================================================
   Motion & effecten (extra)
   ========================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200; background: linear-gradient(90deg, var(--sage-500), var(--orange)); box-shadow: 0 0 12px rgba(232,106,36,.55); border-radius: 0 3px 3px 0; }

/* reveal richtingsvarianten */
.reveal--left { transform: translateX(-46px); }
.reveal--right { transform: translateX(46px); }
.reveal--scale { transform: scale(.9); }
.reveal--left.in, .reveal--right.in, .reveal--scale.in { transform: none; }
.reveal { transition-duration: .8s; }

/* beeld-zoom bij hover */
.gallery__item img { transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.feature__media-frame > img { transition: transform 1s var(--ease); }
.feature:hover .feature__media-frame > img { transform: scale(1.05); }
.gear__showcase { overflow: hidden; }
.gear__showcase img { transition: transform 1.1s var(--ease); }
.gear__showcase:hover img { transform: scale(1.035); }
.michiel__frame img { transition: transform 1s var(--ease); }
.michiel__frame:hover img { transform: scale(1.05); }

/* =========================================================
   Hero responsive + mobiele compactie (kortere pagina)
   ========================================================= */
@media (max-width: 940px) {
  .hero { min-height: auto; padding: 112px 0 58px; }
  .hero__spin, .hero__glow { display: none; }
}
@media (max-width: 620px) {
  .hero { padding: 98px 0 46px; }
  .hero__title { margin: 16px 0; }
  .hero__pill { font-size: .72rem; padding: 8px 14px; }
  .hleaf { display: none; }
  .hero__cta { gap: 10px; margin: 22px 0 0; }
  .hero__cta .beam { flex: 0 0 auto; }
  .hero__cta .btn { padding: 12px 20px; font-size: .95rem; min-height: 46px; }
  .hero__trust { display: none; }
  .hero__scroll { display: none; }

  .section { padding: 30px 0; }
  .section__head { margin-bottom: 16px; }
  .section__intro { font-size: 1rem; margin-top: 10px; }
  .section__eyebrow { margin-bottom: 8px; }
  .service-card { padding: 20px 18px; }
  .services__grid { gap: 12px; }
  .services__featured { gap: 12px; margin-top: 12px; }
  .services__featured .service-card { padding: 22px 20px; }
  .service-card__list { margin-top: 10px; gap: 6px; }
  .services__note { margin-top: 18px; }
  .usps { padding: 26px 0; }
  .usps__grid { gap: 16px; }
  .feature { padding: 44px 0; }
  .feature { padding: 28px 0; }
  .feature__checks { gap: 10px; margin-bottom: 16px; }
  .feature__lead { margin-bottom: 16px; }
  .gallery__grid { grid-auto-rows: 168px; gap: 12px; }
  .why__grid { margin-bottom: 30px; gap: 14px; }
  .why__item { padding: 22px 20px; }
  .gear__showcase { margin-bottom: 24px; }
  .gear__points { gap: 8px; }
  .gear__point { padding: 12px; }
  .promo { padding: 34px 0; }
  .promo__badge { display: none; }
  .michiel__quote { padding: 18px 20px; margin: 18px 0; }
  .michiel__copy p { margin-bottom: 12px; }
  .reviews { padding: 24px 16px; }
  .contact__form-wrap { padding: 22px; }
  .footer { padding-top: 40px; }
  .footer__inner { gap: 24px; padding-bottom: 30px; }
}

/* =========================================================
   Zwevende contactknop (FAB)
   ========================================================= */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 140; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.fab__btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 14px; border-radius: var(--r-pill); background: var(--surface); color: var(--green-800); font-weight: 700; font-size: .9rem; box-shadow: var(--sh-md); transform: translateY(14px) scale(.85); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s var(--ease); white-space: nowrap; }
.fab__btn svg { width: 22px; height: 22px; flex: none; }
.fab__btn--wa { color: #0a3d20; }
.fab__btn--wa svg { fill: #25d366; }
.fab__btn--tel svg { fill: var(--green-700); }
.fab__btn--mail svg { color: var(--orange); }
.fab.open .fab__btn { transform: none; opacity: 1; pointer-events: auto; }
.fab.open .fab__btn:nth-child(1) { transition-delay: .04s; }
.fab.open .fab__btn:nth-child(2) { transition-delay: .09s; }
.fab.open .fab__btn:nth-child(3) { transition-delay: .14s; }
.fab__toggle { position: relative; width: 60px; height: 60px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,61,32,.4); transition: transform .3s var(--ease), background .3s var(--ease); }
.fab__toggle:hover { transform: scale(1.06); background: var(--green-800); }
.fab__toggle svg { position: absolute; width: 26px; height: 26px; transition: opacity .25s var(--ease), transform .3s var(--ease); }
.fab__ic-close { opacity: 0; transform: rotate(-90deg); }
.fab.open .fab__toggle { background: var(--orange); }
.fab.open .fab__ic-open { opacity: 0; transform: rotate(90deg); }
.fab.open .fab__ic-close { opacity: 1; transform: rotate(0); }
.fab__toggle::after { content: ''; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(59,93,52,.5); animation: fabPulse 2.8s ease-out infinite; pointer-events: none; }
.fab.open .fab__toggle::after { animation: none; }
@keyframes fabPulse { 0% { box-shadow: 0 0 0 0 rgba(59,93,52,.5); } 70%,100% { box-shadow: 0 0 0 18px rgba(59,93,52,0); } }
@media (max-width: 620px) { .fab { right: 14px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); } .fab__toggle { width: 54px; height: 54px; } .fab__btn { font-size: .86rem; } }

/* =========================================================
   Animerende beam-border op CTA (aandacht)
   ========================================================= */
.beam { position: relative; display: inline-flex; border-radius: var(--r-pill); padding: 2px; overflow: hidden; isolation: isolate; }
.beam::before { content: ''; position: absolute; inset: -70%; z-index: -1; background: conic-gradient(from 0deg, transparent 0 60%, var(--orange) 78%, #ffd8b8 88%, transparent 100%); animation: beamSpin 3.6s linear infinite; }
.beam > .btn { border-radius: calc(var(--r-pill) - 2px); }
.beam--block { display: flex; width: 100%; }
.beam--block > .btn { width: 100%; }
@keyframes beamSpin { to { transform: rotate(360deg); } }

/* =========================================================
   FAQ (inklapbaar, alle schermen)
   ========================================================= */
.faq { background: var(--bg); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq__item.open { border-color: var(--sage-300); box-shadow: var(--sh-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 22px; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--green-800); cursor: pointer; }
.faq__q:hover { background: var(--cream); }
.faq__ic { width: 22px; height: 22px; flex: none; color: var(--orange); transition: transform .3s var(--ease); }
.faq__item.open .faq__ic { transform: rotate(180deg); }
.faq__a { display: none; }
.faq__item.open .faq__a { display: block; animation: faqIn .28s var(--ease); }
.faq__a-in { padding: 0 22px 18px; }
.faq__a-in p { color: var(--ink-2); font-size: .96rem; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Quick slide bar — snelnavigatie (enkel mobiel) */
.quicknav { display: none; }
@media (max-width: 700px) {
  .quicknav { display: block; position: sticky; top: 58px; z-index: 80; background: var(--green-800); box-shadow: 0 6px 18px rgba(0,0,0,.16); }
  .quicknav__track { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 10px 14px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 94%, transparent); }
  .quicknav__track::-webkit-scrollbar { display: none; }
  .quicknav__track a { flex: none; padding: 7px 15px; border-radius: var(--r-pill); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .82rem; font-weight: 700; color: var(--cream); white-space: nowrap; transition: background .2s var(--ease), color .2s var(--ease); }
  .quicknav__track a:active { background: var(--orange); color: #fff; border-color: var(--orange); }
  section[id] { scroll-margin-top: 112px; }
}

/* "Lees meer"-knop (enkel mobiel actief) */
.rm-btn { display: none; }
@media (max-width: 700px) {
  .rm-btn { display: inline-flex; align-items: center; gap: 6px; margin: 4px 0 6px; padding: 4px 0; background: none; color: var(--orange); font-weight: 700; font-size: .92rem; cursor: pointer; }
  .feature--business .rm-btn { color: #ffd0ac; }
}

/* =========================================================
   Finale afwerking
   ========================================================= */
.promo__badge { display: none !important; }  /* 10%-bol overal weg (ook desktop) */

@media (max-width: 700px) {
  /* Hero-knoppen even breed, netjes onder elkaar */
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 330px; margin: 22px 0 6px; }
  .hero__cta .beam { width: 100%; display: flex; flex: 0 0 auto; }
  .hero__cta .beam > .btn { width: 100%; }

  /* Footer strak: logo + slogan weg tussen adres en socials */
  .footer { padding-top: 20px; }
  .footer__logo, .footer__tag { display: none; }
  .footer__brand { margin-bottom: 6px; }
  .footer__social { margin-top: 0; }
  .footer__col { padding: 11px 0; }

  /* Hero-tekst extra leesbaar op mobiel (sterkere overlay) */
  .hero__scrim { background:
    linear-gradient(180deg, rgba(12,20,8,.74) 0%, rgba(12,20,8,.5) 42%, rgba(12,20,8,.4) 60%, rgba(12,20,8,.72) 100%),
    linear-gradient(95deg, rgba(12,20,8,.55), rgba(12,20,8,.1) 85%); }

  /* Laatste tightening: diensten & contact compacter */
  .services__featured .service-card { padding: 18px 18px; }
  .services__featured .service-card h3 { font-size: 1.3rem; }
  .services__featured .service-card p { font-size: .92rem; }
  .cform { gap: 10px; }
  .cform__field { gap: 5px; }
  .cform input, .cform select, .cform textarea { padding: 10px 12px; }
  .contact__form-wrap { padding: 18px; }
}

/* =========================================================
   Realisaties als slideshow (bespaart hoogte)
   ========================================================= */
.gallery__grid { display: flex; gap: 16px; grid-auto-rows: initial !important; grid-template-columns: none !important; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 4px 4px 12px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 92%, transparent); }
.gallery__grid::-webkit-scrollbar { display: none; }
.gallery__item { flex: 0 0 clamp(250px, 34%, 340px); height: 300px; scroll-snap-align: start; grid-column: auto !important; }
.gallery__item--wide { flex-basis: clamp(250px, 34%, 340px); }
.gallery__hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .86rem; color: var(--ink-3); }
.gallery__hint svg { width: 18px; height: 18px; }
@media (max-width: 620px) { .gallery__item { flex-basis: 80%; height: 260px; } }

/* =========================================================
   Mobiele accordions (dropdowns) — pc blijft open (display:contents)
   ========================================================= */
.acc-head, .acc-body, .acc-inner { display: contents; }

@media (max-width: 700px) {
  .services__grid .service-card, .why__item, .footer__col { display: block; }
  .acc-head { display: flex; align-items: center; gap: 12px; cursor: pointer; }
  .acc-head::after { content: ''; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: auto; opacity: .45; transition: transform .3s var(--ease); flex: none; }
  .acc-open > .acc-head::after { transform: rotate(-135deg); }
  .acc-body { display: none; }
  .acc-open > .acc-body { display: block; }
  .acc-inner { display: block; }

  /* Diensten compact */
  .services__grid { gap: 10px; }
  .services__grid .service-card { padding: 14px 18px; }
  .services__grid .service-card:hover { transform: none; }
  .services__grid .service-card .service-card__icon { width: 40px; height: 40px; margin-bottom: 0; border-radius: 12px; }
  .services__grid .service-card .service-card__icon svg { width: 22px; height: 22px; }
  .services__grid .service-card h3 { font-size: 1.12rem; margin: 0; }
  .services__grid .service-card .acc-inner > p { margin-top: 12px; }

  /* Waarom compact */
  .why__item { padding: 14px 18px; }
  .why__item:hover { transform: none; }
  .why__item .why__no { font-size: 1.1rem; }
  .why__item h3 { font-size: 1.02rem; margin: 0; }
  .why__item .acc-inner > p { margin-top: 8px; }

  /* Footer compact + dropdowns onderaan */
  .footer { padding-top: 32px; }
  .footer__inner { display: block; padding-bottom: 18px; }
  .footer__brand { margin-bottom: 14px; }
  .footer__logo { height: 56px; }
  .footer__slogan { display: none; }
  .footer__social { margin-top: 12px; }
  .footer__col { border-top: 1px solid rgba(255,255,255,.12); padding: 12px 0; }
  .footer__col h4 { margin: 0; }
  .footer__col .acc-inner { padding-top: 4px; }
  .footer__col a, .footer__col span, .footer__cookiebtn { padding: 7px 0; }

  /* Contact: formulier centraal, methodes compact */
  .contact__grid { display: flex; flex-direction: column; gap: 16px; }
  .contact__form-wrap { order: -1; padding: 20px; }
  .contact__methods { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
  .contact__method { padding: 11px 12px; gap: 10px; }
  .contact__method--wa { grid-column: 1 / -1; }
  .contact__method-ic { width: 38px; height: 38px; }
  .contact__method-ic svg { width: 20px; height: 20px; }
  .contact__method-tx small { display: none; }
  .contact__method-tx strong { font-size: .9rem; }
  .contact__qr { padding: 12px 14px; margin-bottom: 10px; }
  .contact__qr-code { width: 80px; height: 80px; }
  .contact__map { padding: 12px 14px; }

  /* USP's 2-koloms + compact */
  .usps { padding: 22px 0; }
  .usps__grid { grid-template-columns: 1fr 1fr; gap: 12px 14px; }
  .usp { gap: 10px; }
  .usp svg { width: 28px; height: 28px; }
  .usp p { font-size: .8rem; }

  /* Contact strakker: QR apart downloadbaar, velden compacter */
  .contact__qr { display: none; }
  .cform { gap: 11px; }
  .cform__row, .cform__checks { gap: 10px; }
  .section.contact { padding: 32px 0; }

  /* Beeld-secties compacter op mobiel */
  .feature__media-frame > img { min-height: 0; height: 208px; }
  .feature__inner, .feature__inner--rev { gap: 24px; }
  /* witte fotoranden verzachten (geen witte strook) */
  .feature__media-frame { border-width: 4px; }
  .feature--business .feature__media-frame { border: 4px solid rgba(255,255,255,.14); }
  .michiel__frame { border-width: 4px; }
  .gallery__item { border-width: 3px; }
  .gear__showcase { border-width: 4px; }
  /* Foto boven Exterieurreiniging-uitleg weg op mobiel + strak aansluiten */
  #reiniging .feature__media { display: none !important; }
  #reiniging .feature__inner { gap: 0; display: block; }
  #reiniging .feature__copy { padding-top: 0; }
  #reiniging { padding: 26px 0; }
  /* "geen daken of gevels"-note onder de specialisaties weg (de disclaimer in de reiniging-sectie blijft) */
  .services__note { display: none; }
  .promo { padding: 26px 0; }
  .michiel__quote { margin: 14px 0; }
  .gear__points { gap: 6px; }
  .faq__list { gap: 8px; }
  .faq__q { padding: 14px 18px; font-size: .96rem; }
  .faq__a-in { padding: 0 18px 14px; }
  .michiel__frame { aspect-ratio: auto; max-width: 100%; }
  .michiel__frame img { height: 280px; object-position: center 22%; }
  .michiel .feature__inner { gap: 26px; }
  .michiel__sig { width: 84px; height: 84px; bottom: -18px; }
  .gear__showcase { margin-bottom: 18px; }
  .reviews { padding: 22px 16px; }
}

/* driftende blobs */
@keyframes drift { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(34px,-26px) scale(1.07); } 66% { transform: translate(-22px,20px) scale(.95); } 100% { transform: translate(0,0) scale(1); } }
.blob--1 { animation: drift 19s ease-in-out infinite; }
.blob--2 { animation: drift 24s ease-in-out infinite reverse; }
.blob--3 { animation: drift 15s ease-in-out infinite; }
.blob--orange, .blob--soft { animation: drift 21s ease-in-out infinite; }

/* glans-sweep over specialisatie-kaarten */
.service-card--feature { position: relative; overflow: hidden; }
.service-card--feature::after { content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); transition: left .8s var(--ease); pointer-events: none; z-index: 1; }
.service-card--feature:hover::after { left: 130%; }
.service-card--feature > * { position: relative; z-index: 2; }

/* zwevende opbouw van tellers */
.gear__num { display: inline-block; }

/* magnetische lift op CTA's */
.btn--primary, .btn--accent, .btn--wa { will-change: transform; }

/* subtiele glow-puls op de eyebrow-dot */
.eyebrow__dot { animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 4px var(--orange-100); } 50% { box-shadow: 0 0 0 7px rgba(232,106,36,.12); } }

@media (prefers-reduced-motion: reduce) {
  .blob, .eyebrow__dot { animation: none !important; }
  .scroll-progress { display: none; }
  .gallery__item:hover img, .feature:hover .feature__media-frame > img, .gear__showcase:hover img, .michiel__frame:hover img { transform: none; }
}

/* =========================================================
   Legal pages
   ========================================================= */
.legal { padding: 130px 0 80px; background: var(--bg); min-height: 70vh; }
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-700); margin-bottom: 24px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal__updated { color: var(--ink-3); font-size: .9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.4rem; margin: 34px 0 12px; color: var(--green-800); }
.legal h3 { font-size: 1.1rem; margin: 20px 0 8px; font-family: var(--font-body); font-weight: 700; color: var(--green-800); }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal__box { background: var(--cream); border-radius: var(--r-md); padding: 22px 26px; margin: 20px 0; border-left: 4px solid var(--sage-400); }
.legal__box p { margin-bottom: 6px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .92rem; }
.legal th, .legal td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--cream); color: var(--green-800); font-weight: 700; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .services__grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .usps__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services__featured { grid-template-columns: 1fr; }
  .hero__inner { gap: 40px; }
}
@media (max-width: 1090px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { height: 420px; width: 100%; max-width: 460px; margin: 0 auto; order: -1; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .feature__inner, .feature__inner--rev { grid-template-columns: 1fr; gap: 26px; }
  .feature__inner--rev .feature__copy { order: 0; }
  .feature .feature__media-frame > img { min-height: 0; aspect-ratio: 16 / 10; height: auto; }
  .feature .feature__media { display: block; }
  .michiel .feature__inner { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .reviews__track .review { flex-basis: calc((100% - 20px) / 2); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .services__grid, .why__grid { grid-template-columns: 1fr; }
  .usps__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery__item--wide { grid-column: span 1; }
  .gear__points { grid-template-columns: 1fr; gap: 12px; }
  .cform__row, .cform__checks { grid-template-columns: 1fr; }
  .reviews { padding: 30px 18px; }
  .reviews__track .review { flex-basis: 88%; }
  .reviews__arrow { display: none; }
  .review-cta { grid-template-columns: 1fr; gap: 18px; }
  .review-cta__row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .promo__inner { flex-direction: column; align-items: flex-start; }
  .hero__badge { top: 14px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__legal-inner { flex-direction: column; }
  .michiel__frame { max-width: 100%; }
  .cookie { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
}
