/* ============================================
   Knossen Webdesign — stylesheet
   Kleuren afgeleid van het logo:
   olijfgroen + beige op een warme cremekleur
   ============================================ */

:root {
  --olive: #6B7A36;
  --olive-dark: #515E27;
  --olive-deep: #333D18;
  --beige: #D5C7A1;
  --beige-soft: #E9E0C8;
  --beige-light: #F3EDDC;
  --cream: #FAF6EC;
  --cream-deep: #F4EDDD;
  --ink: #2B2F1E;
  --muted: #676B57;
  --line: #E2D9C2;
  --white: #FFFFFF;
  --wa: #25D366;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(51, 61, 24, 0.10);
  --shadow-soft: 0 4px 16px rgba(51, 61, 24, 0.07);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

img { max-width: 100%; display: block; }
a { color: var(--olive-dark); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { background: var(--olive-dark); box-shadow: 0 8px 22px rgba(81, 94, 39, 0.32); }
/* glans die over de knop schiet bij hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg);
}
.btn-primary:hover::after { animation: glans .7s ease; }
@keyframes glans { to { left: 130%; } }
.btn-outline { border-color: var(--olive); color: var(--olive-dark); background: transparent; }
.btn-outline:hover { background: rgba(107, 122, 54, 0.08); }
.btn-light { background: var(--white); color: var(--olive-dark); box-shadow: var(--shadow-soft); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.gescrolld {
  background: rgba(250, 246, 236, 0.97);
  box-shadow: 0 6px 24px rgba(51, 61, 24, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  transition: height .25s ease;
}
.site-header.gescrolld .nav { height: 66px; }
.nav-logo img { height: 62px; width: auto; transition: height .25s ease; }
.site-header.gescrolld .nav-logo img { height: 52px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color .15s ease;
}
/* groeiende onderstreping bij hover */
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.btn):hover { color: var(--olive); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: .2s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
/* het Regthuys op een eigen laag, zodat het mee kan bewegen */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, var(--cream) 38%, rgba(250, 246, 236, 0.55) 62%, rgba(250, 246, 236, 0) 100%),
    url("regthuys.png") right center / cover no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
/* zacht zwevende kleurvlekken */
.hero-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: .5;
}
.blob-1 {
  width: 320px; height: 320px;
  top: -60px; left: -40px;
  background: radial-gradient(circle, rgba(107,122,54,.34), transparent 70%);
  animation: zweef 13s ease-in-out infinite;
}
.blob-2 {
  width: 260px; height: 260px;
  bottom: -50px; left: 30%;
  background: radial-gradient(circle, rgba(213,199,161,.55), transparent 70%);
  animation: zweef 17s ease-in-out infinite reverse;
}
.blob-3 {
  width: 220px; height: 220px;
  top: 30%; right: 12%;
  background: radial-gradient(circle, rgba(107,122,54,.22), transparent 70%);
  animation: zweef 15s ease-in-out infinite 1s;
}
@keyframes zweef {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(28px, -22px) scale(1.08); }
  66% { transform: translate(-20px, 18px) scale(.95); }
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  padding: 116px 0 132px;
  max-width: 620px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 58px);
  margin-bottom: 22px;
}
.hero h1 em {
  position: relative;
  font-style: italic;
  color: var(--olive);
  white-space: nowrap;
}
/* handgetekende lijn die zichzelf tekent onder 'werkt' */
.onderstreep {
  position: absolute;
  left: -2%;
  bottom: -.16em;
  width: 104%;
  height: .42em;
  overflow: visible;
}
.onderstreep path {
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  animation: teken 1s ease-out 1.1s forwards;
}
@keyframes teken { to { stroke-dashoffset: 0; } }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}
.hero-usps li { display: flex; align-items: center; gap: 8px; }
.hero-usps svg { flex: none; }

/* pulserende status-indicator */
.status-dot {
  display: inline-block;
  width: 9px; height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--olive);
  position: relative;
  vertical-align: middle;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--olive);
  animation: dot-puls 2s ease-out infinite;
}
@keyframes dot-puls {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(3.2); opacity: 0; }
}

/* scroll-hint onderaan de hero */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: hint-op-neer 2.2s ease-in-out infinite;
}
.scroll-hint svg { width: 22px; height: 22px; }
.scroll-hint:hover { color: var(--olive); }
@keyframes hint-op-neer {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- diensten ---------- */
.pakketten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.pakket {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.pakket.featured {
  background: linear-gradient(160deg, #75843D 0%, var(--olive-dark) 100%);
  border: none;
  color: var(--cream);
  box-shadow: var(--shadow);
}
.pakket.featured h3, .pakket.featured .pakket-sub { color: var(--white); }
.pakket.featured .pakket-sub { opacity: .85; }
.pakket-badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--beige);
  color: var(--olive-deep);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.pakket h3 { font-size: 27px; margin-bottom: 6px; }
.pakket-sub { color: var(--olive); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.pakket > p { font-size: 15.5px; margin-bottom: 24px; }
.pakket.featured > p { opacity: .92; }
.pakket ul { list-style: none; margin-bottom: 30px; flex: 1; }
.pakket ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 7px 0;
  font-size: 15.5px;
}
.pakket ul svg { flex: none; margin-top: 4px; }
.pakket .btn { align-self: flex-start; }
.pakket.featured .btn { background: var(--cream); color: var(--olive-deep); }

/* onderhoud-kaart */
.onderhoud {
  margin-top: 28px;
  background: var(--beige-light);
  border: 1px dashed var(--beige);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.onderhoud .pakket-badge { display: inline-block; background: var(--olive); color: var(--cream); margin-bottom: 24px; }
.onderhoud h3 { font-size: 26px; margin-bottom: 6px; }
.onderhoud-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.onderhoud ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.onderhoud ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; padding: 4px 0; }
.onderhoud ul svg { flex: none; margin-top: 4px; }
.onderhoud .btn { margin-top: 22px; }

.diensten-note {
  margin-top: 36px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- werkwijze ---------- */
.werkwijze { background: var(--cream-deep); }
.stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: stap;
}
.stap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.stap-num {
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--beige);
  display: inline-block;
  margin-bottom: 10px;
  animation: getal-zweef 4.5s ease-in-out infinite;
}
.stap:nth-child(2) .stap-num { animation-delay: .5s; }
.stap:nth-child(3) .stap-num { animation-delay: 1s; }
.stap:nth-child(4) .stap-num { animation-delay: 1.5s; }
@keyframes getal-zweef {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.stap h3 { font-size: 19px; margin-bottom: 8px; }
.stap p { font-size: 14.5px; color: var(--muted); }

/* ---------- over mij ---------- */
.over-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.over-foto { position: relative; }
.over-foto img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.over-foto::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--beige);
  border-radius: var(--radius);
  z-index: -1;
}
.over-tekst h2 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 8px; }
.over-tekst .over-sub { color: var(--olive); font-weight: 600; margin-bottom: 20px; }
.over-tekst p { margin-bottom: 16px; color: #3D4130; }
.over-quote {
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--beige-light);
  border-left: 4px solid var(--olive);
  border-radius: 0 12px 12px 0;
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--olive-deep);
}

/* ---------- contact ---------- */
.contact { background: var(--cream-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 12px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; }
.contact-kaart {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}
.contact-kaart .icoon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-dark);
}
.contact-kaart h3 { font-size: 16.5px; margin-bottom: 2px; }
.contact-kaart p { font-size: 15px; color: var(--muted); }
.contact-kaart a { color: var(--olive-dark); font-weight: 600; text-decoration: none; }
.contact-kaart a:hover { text-decoration: underline; }

.formulier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.formulier h3 { font-size: 23px; margin-bottom: 6px; }
.formulier > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.veld { margin-bottom: 16px; }
.veld label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.veld input, .veld select, .veld textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .15s;
}
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: var(--white);
}
.veld textarea { resize: vertical; min-height: 130px; }
.formulier .btn { width: 100%; justify-content: center; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}
.form-status.ok { display: block; background: #EAF2DC; color: #3D5215; }
.form-status.fout { display: block; background: #F8E3DC; color: #8A3B22; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--olive-deep);
  color: #D9DCC8;
  padding: 64px 0 32px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer h3 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.footer-merk .merknaam {
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-merk .merksub {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--beige);
  margin-bottom: 16px;
}
.footer-merk p { max-width: 320px; opacity: .85; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #D9DCC8; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13.5px;
  opacity: .8;
}

/* ---------- whatsapp zwever ---------- */
.wa-float {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 60;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform .15s ease;
  animation: wa-binnen .6s cubic-bezier(.34, 1.4, .5, 1) .9s both;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  z-index: -1;
  animation: wa-puls 2.6s ease-out 1.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 38px; height: 38px; }

@keyframes wa-binnen {
  from { opacity: 0; transform: scale(.4); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes wa-puls {
  0% { transform: scale(1); opacity: .5; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- cookiebanner ---------- */
.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 70;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: none;
}
.cookie-banner.zichtbaar { display: block; }
.cookie-banner h3 { font-size: 17px; margin-bottom: 8px; }
.cookie-banner p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.cookie-knoppen { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-knoppen .btn { padding: 10px 20px; font-size: 14px; }

/* ---------- animaties ---------- */
@keyframes verschijn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* hero komt rustig binnen bij het laden */
.hero .eyebrow, .hero h1, .hero p.lead, .hero-cta, .hero-usps {
  animation: verschijn .8s cubic-bezier(.22, .7, .3, 1) both;
}
.hero h1 { animation-delay: .1s; }
.hero p.lead { animation-delay: .2s; }
.hero-cta { animation-delay: .3s; }
.hero-usps { animation-delay: .4s; }

/* secties schuiven in beeld tijdens het scrollen */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .7, .3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in-beeld { opacity: 1; transform: none; }

/* kaarten reageren op hover */
.pakket, .stap, .contact-kaart {
  transition: transform .25s ease, box-shadow .25s ease,
              opacity .7s ease;
}
.reveal.pakket, .reveal.stap, .reveal.contact-kaart {
  transition: transform .7s cubic-bezier(.22, .7, .3, 1), box-shadow .25s ease, opacity .7s ease;
  transition-delay: var(--d, 0s);
}
.pakket.in-beeld:hover, .pakket:not(.reveal):hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stap.in-beeld:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.contact-kaart.in-beeld:hover { transform: translateY(-3px); }

/* foto en quote */
.over-foto img { transition: transform .4s ease; }
.over-foto:hover img { transform: scale(1.02) rotate(-.5deg); }

/* respecteer 'verminder beweging' */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .onderstreep path { stroke-dashoffset: 0; }
  .hero-bg { transform: none !important; }
}

/* ---------- juridische pagina's ---------- */
.juridisch {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.juridisch h1 { font-size: clamp(32px, 5vw, 44px); margin-bottom: 6px; }
.juridisch .bijgewerkt { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.juridisch h2 {
  font-size: 24px;
  margin: 44px 0 14px;
  padding-top: 8px;
}
.juridisch h3 { font-size: 18.5px; margin: 28px 0 10px; }
.juridisch p, .juridisch li { color: #3D4130; margin-bottom: 12px; font-size: 16px; }
.juridisch ol, .juridisch ul { padding-left: 24px; margin-bottom: 16px; }
.juridisch li { margin-bottom: 8px; }
.juridisch table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.juridisch th, .juridisch td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.juridisch th { background: var(--beige-light); font-weight: 600; }
.juridisch .terug {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  color: var(--olive-dark);
}
.juridisch .terug:hover { text-decoration: underline; }

/* ---------- responsief ---------- */
@media (max-width: 920px) {
  .pakketten, .onderhoud-grid, .over-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stappen { grid-template-columns: 1fr 1fr; }
  .over-grid { gap: 40px; }
  .over-foto { max-width: 380px; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(250, 246, 236, 0.88) 0%, rgba(250, 246, 236, 0.82) 100%),
      url("regthuys.png") right bottom / cover no-repeat;
  }
  .scroll-hint { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero-inner { padding: 72px 0 88px; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 17px; }
  .nav-links .btn { margin-top: 8px; }
  .nav-toggle { display: block; }
  .stappen { grid-template-columns: 1fr; }
  .form-rij { grid-template-columns: 1fr; }
  .onderhoud ul { grid-template-columns: 1fr; }
  .wa-float { right: 18px; bottom: 18px; width: 62px; height: 62px; }
  .wa-float svg { width: 34px; height: 34px; }
  .cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 96px; }
}
