/* =========================================================================
   eikenprocessierups-verwijderen.nl, premium design system
   ========================================================================= */

:root {
  /* Colors */
  --oak:        #2F4733; /* diep eikengroen, primair */
  --oak-deep:   #233529; /* dieper groen voor footer/cta */
  --sand:       #F6F3EC; /* warm zandwit, achtergrond */
  --sand-2:     #EFEBE0; /* iets dieper zand voor panelen */
  --ink:        #1C1B19; /* antraciet-inkt, tekst */
  --ink-soft:   #4A4842; /* zachtere tekst */
  --moss:       #5C7355; /* zacht mosgroen, secundair */
  --moss-soft:  #8A9C84; /* lichte hairline / details */
  --brick:      #B23A2E; /* gedempt baksteenrood, waarschuwing */
  --paper:      #FFFFFF;

  /* Type */
  --display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* 8px raster */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

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

  /* Schaduwen, laag opacity, grote blur */
  --shadow-sm: 0 2px 8px rgba(28,27,25,0.06);
  --shadow-md: 0 12px 32px -8px rgba(28,27,25,0.12);
  --shadow-lg: 0 30px 70px -20px rgba(35,53,41,0.28);

  /* Layout */
  --maxw: 1200px;
  --gutter: 24px;
  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  /* room for sticky mobile bar */
  padding-bottom: 76px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--s6); }
@media (min-width: 768px) { .section { padding-block: var(--s7); } }

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s3);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--oak);
  flex: none;
}

.section-head { max-width: 640px; }
.section-head .eyebrow { margin-bottom: var(--s2); }
h2.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
}
.section-head p.lead {
  margin-top: var(--s2);
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* hairline divider in mosgroen */
.hairline { height: 1px; background: var(--moss-soft); opacity: 0.5; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--r-sm);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--oak); color: var(--sand); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--oak-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--paper); color: var(--oak); border-color: var(--oak); }
.btn-ghost:hover { background: var(--oak); color: var(--sand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: var(--sand); color: var(--oak); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--sand); border-color: rgba(246,243,236,0.5); }
.btn-outline-light:hover { background: rgba(246,243,236,0.1); border-color: var(--sand); }
.btn-block { width: 100%; }

/* ---------- Image placeholder (striped) ---------- */
.ph {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background-color: var(--sand-2);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(92,115,85,0.10) 0, rgba(92,115,85,0.10) 1px,
    transparent 1px, transparent 11px
  );
  border: 1px solid rgba(92,115,85,0.25);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--moss);
  background: rgba(246,243,236,0.85);
  padding: 6px 10px;
  margin: 12px;
  border-radius: 6px;
  backdrop-filter: blur(2px);
}

/* ---------- Foto-frame ---------- */
.frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sand-2);
}
.frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame .credit {
  position: absolute;
  right: 8px; bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: rgba(246,243,236,0.92);
  background: rgba(28,27,25,0.42);
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(2px);
  text-decoration: none;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.frame .credit:hover { background: rgba(28,27,25,0.62); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246,243,236,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(92,115,85,0.18);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--oak);
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--oak);
  display: grid; place-items: center;
  color: var(--sand);
  flex: none;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media (max-width: 460px){ .brand-suffix { display: none; } }
.header-actions { display: flex; align-items: center; gap: var(--s2); }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
}
.header-phone svg { width: 18px; height: 18px; color: var(--oak); }
.header-phone span { white-space: nowrap; }
.header-phone small { display: block; font-family: var(--body); font-weight: 400; font-size: 11px; color: var(--moss); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-toggle { order: 3; }
.header-cta { display: none; }
@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
}
@media (min-width: 1040px) {
  .header-cta { display: inline-flex; }
}

/* ---------- Hoofdmenu (desktop) ---------- */
.main-nav { display: none; }
@media (min-width: 1040px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 6px;
  }
  .main-nav > a, .nav-dd-btn {
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 9px;
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s ease, color .15s ease;
  }
  .main-nav > a:hover, .nav-dd-btn:hover { background: rgba(92,115,85,0.12); color: var(--oak); }
  .main-nav a[aria-current="page"] { color: var(--oak); background: rgba(92,115,85,0.1); }
  .nav-dd { position: relative; }
  .nav-dd-btn svg { width: 14px; height: 14px; transition: transform .2s ease; }
  .nav-dd:hover .nav-dd-btn svg, .nav-dd:focus-within .nav-dd-btn svg { transform: rotate(180deg); }
  .nav-dd-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 200px;
    background: var(--paper);
    border: 1px solid rgba(92,115,85,0.2);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 60;
  }
  .nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-dd-menu a {
    font-family: var(--display); font-weight: 500; font-size: 0.95rem;
    color: var(--ink); text-decoration: none;
    padding: 9px 12px; border-radius: 8px;
    transition: background .15s ease, color .15s ease;
  }
  .nav-dd-menu a:hover { background: rgba(92,115,85,0.12); color: var(--oak); }
}

/* ---------- Hamburger ---------- */
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1.5px solid rgba(92,115,85,0.4);
  border-radius: 10px;
  background: var(--paper);
  color: var(--oak);
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }
@media (min-width: 1040px) { .nav-toggle { display: none; } }

/* ---------- Mobiel menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 55;
  background: var(--sand);
  border-bottom: 1px solid rgba(92,115,85,0.2);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .wrap { display: flex; flex-direction: column; padding-block: var(--s2) var(--s4); }
.mobile-menu .m-link {
  font-family: var(--display); font-weight: 500; font-size: 1.15rem;
  color: var(--ink); text-decoration: none;
  padding: 15px 4px; border-bottom: 1px solid rgba(92,115,85,0.16);
}
.mobile-menu .m-link[aria-current="page"] { color: var(--oak); }
.mobile-menu .m-head {
  font-family: var(--display); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss);
  padding: 16px 4px 6px;
}
.mobile-menu .m-sub-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(92,115,85,0.16);
}
.mobile-menu .m-sub {
  font-family: var(--body); font-size: 1rem; color: var(--ink-soft);
  text-decoration: none; padding: 9px 4px;
}
.mobile-menu .m-sub:hover, .mobile-menu .m-link:hover { color: var(--oak); }
.mobile-menu .m-region-note { margin: 10px 4px 0; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.45; }
.mobile-menu .m-actions { display: flex; gap: 10px; margin-top: var(--s3); }
.mobile-menu .m-actions .btn { flex: 1; min-height: 48px; }
@media (min-width: 1040px) { .mobile-menu { display: none; } }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { padding-top: var(--s5); padding-bottom: var(--s6); }
@media (min-width: 900px){ .hero { padding-top: var(--s7); padding-bottom: var(--s7); } }
.hero-grid { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s6); }
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: -0.035em;
  margin-bottom: var(--s3);
}
.hero .sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 30ch;
  margin-bottom: var(--s4);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s2); }
.hero-cta .btn { flex: 1 1 auto; }
@media (min-width: 480px){ .hero-cta .btn { flex: 0 0 auto; } }
.hero-media { position: relative; }
.hero-media .ph, .hero-media .frame {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px){ .hero-media .ph, .hero-media .frame { aspect-ratio: 5 / 6; } }
.hero-trust {
  margin-top: var(--s4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s4);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--moss); flex: none;
}

/* =========================================================================
   Waarschuwingsblok, rood-wit signatuur
   ========================================================================= */
.warn {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
/* fijn rood-wit gestreept randje, het signatuur-detail */
.stripe-rule {
  height: 8px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--brick) 0, var(--brick) 12px,
    var(--paper) 12px, var(--paper) 24px
  );
}
.warn-body { padding: var(--s4) var(--s4) var(--s5); }
@media (min-width: 768px){ .warn-body { padding: var(--s5) var(--s6); } }
.warn-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brick);
  border: 1.5px solid var(--brick);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: var(--s3);
}
.warn h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: var(--s3);
  max-width: 18ch;
}
.warn p { color: var(--ink-soft); max-width: 62ch; font-size: 1.08rem; }
.warn-points {
  list-style: none;
  margin: var(--s4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--s2);
}
@media (min-width: 640px){ .warn-points { grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s4); } }
.warn-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem;
}
.warn-points li svg { width: 20px; height: 20px; color: var(--brick); flex: none; margin-top: 2px; }

/* =========================================================================
   Stappen
   ========================================================================= */
.steps { display: grid; gap: var(--s4); margin-top: var(--s5); }
@media (min-width: 768px){ .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s5); } }
.step { position: relative; }
.step-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--moss);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--s2);
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }
.step + .step { padding-top: var(--s4); border-top: 1px solid rgba(92,115,85,0.3); }
@media (min-width: 768px){
  .step + .step { padding-top: 0; border-top: 0; border-left: 1px solid rgba(92,115,85,0.3); padding-left: var(--s5); }
}

/* =========================================================================
   Gemeente blok
   ========================================================================= */
.split {
  background: var(--sand-2);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s4);
  display: grid;
  gap: var(--s4);
}
@media (min-width: 880px){
  .split { grid-template-columns: 1fr 1fr; gap: var(--s6); padding: var(--s6); align-items: center; }
}
.split h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: var(--s3); }
.split p { color: var(--ink-soft); font-size: 1.08rem; }
.split p + p { margin-top: var(--s2); }
.split .accent { color: var(--oak); font-weight: 600; font-family: var(--display); }
.compare {
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: var(--s3);
  display: grid;
  gap: var(--s2);
}
.compare-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 4px; }
.compare-row + .compare-row { border-top: 1px solid rgba(92,115,85,0.25); }
.compare-row .ic {
  width: 36px; height: 36px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
}
.compare-row .ic.muni { background: var(--sand-2); color: var(--moss); }
.compare-row .ic.you  { background: var(--oak); color: var(--sand); }
.compare-row .ic svg { width: 19px; height: 19px; }
.compare-row b { font-family: var(--display); font-weight: 500; display: block; }
.compare-row span { color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================================
   Over de rups
   ========================================================================= */
.about-grid { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 880px){ .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--s6); } }
.about-media .ph, .about-media .frame { aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); }
.about-text h2 { font-size: clamp(1.6rem,4vw,2.3rem); margin-bottom: var(--s3); }
.about-text p { color: var(--ink-soft); font-size: 1.08rem; }
.about-text p + p { margin-top: var(--s2); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: var(--s3);
  font-family: var(--display); font-weight: 500;
  color: var(--oak); text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .18s ease, gap .18s ease;
}
.link-arrow:hover { border-color: var(--oak); gap: 12px; }
.link-arrow svg { width: 18px; height: 18px; }

/* =========================================================================
   Verhaal / Over Olle
   ========================================================================= */
.story { background: var(--sand-2); }
.story-grid { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 880px){ .story-grid { grid-template-columns: 0.82fr 1.18fr; gap: var(--s6); } }
.story-media { position: relative; }
.story-media .ph, .story-media .frame { aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.story-badge {
  position: absolute; left: -14px; bottom: 22px;
  background: var(--oak); color: var(--sand);
  border-radius: var(--r-md); padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-family: var(--display); font-weight: 600; line-height: 1.1;
}
.story-badge b { font-size: 1.6rem; display: block; letter-spacing: -0.02em; }
.story-badge span { font-family: var(--body); font-weight: 400; font-size: 0.82rem; color: var(--moss-soft); }
.story-text h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); margin-bottom: var(--s3); max-width: 18ch; }
.story-text p { color: var(--ink-soft); font-size: 1.08rem; }
.story-text p + p { margin-top: var(--s2); }
.story-text .pull {
  color: var(--oak); font-family: var(--display); font-weight: 500;
  font-size: 1.15rem; line-height: 1.4; letter-spacing: -0.01em;
  border-left: 3px solid var(--moss); padding-left: 18px; margin: var(--s3) 0;
}
.story-sign {
  display: flex; align-items: center; gap: 14px;
  margin-top: var(--s4); padding-top: var(--s4);
  border-top: 1px solid rgba(92,115,85,0.3);
}
.story-sign .who b { font-family: var(--display); font-weight: 600; display: block; font-size: 1.05rem; }
.story-sign .who span { color: var(--ink-soft); font-size: 0.95rem; }
.story-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s2); margin-top: var(--s4); }
.story-facts .f { background: var(--paper); border-radius: var(--r-sm); padding: var(--s2) 10px; box-shadow: var(--shadow-sm); min-width: 0; overflow-wrap: break-word; }
.story-facts .f b { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 4.4vw, 1.5rem); color: var(--oak); display: block; letter-spacing: -0.02em; line-height: 1; }
.story-facts .f span { font-size: 0.78rem; color: var(--ink-soft); display: block; margin-top: 6px; }

/* Intake-tips lijstje in stap / formulier */
.intake-tips { list-style: none; margin: var(--s2) 0 0; padding: 0; display: grid; gap: 8px; }
.intake-tips li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.intake-tips li svg { width: 18px; height: 18px; color: var(--moss); flex: none; margin-top: 3px; }
/* Breadcrumbs + regio-strip */
.crumbs { padding-top: var(--s3); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--moss); }
.crumbs a { color: var(--moss); text-decoration: none; }
.crumbs a:hover { color: var(--oak); text-decoration: underline; }
.crumbs li[aria-current] { color: var(--ink-soft); }
.crumbs .sep { opacity: 0.6; }

.neighbors { margin-top: var(--s5); }
.neighbors h3 { font-family: var(--display); font-weight: 500; font-size: 1rem; color: var(--ink-soft); margin-bottom: var(--s2); }
.neighbors-list { display: flex; flex-wrap: wrap; gap: 10px; }
.neighbors-list a {
  font-family: var(--display); font-weight: 500; font-size: 0.95rem;
  text-decoration: none; color: var(--oak);
  background: var(--paper); border: 1px solid rgba(92,115,85,0.3);
  border-radius: var(--r-pill); padding: 8px 18px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.neighbors-list a:hover { background: var(--oak); color: var(--sand); border-color: var(--oak); }
.neighbors-list a svg { width: 15px; height: 15px; }

/* Compacte waarschuwing */
.warn-compact { background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.warn-compact .stripe-rule { height: 6px; }
.warn-compact .wc-body { padding: var(--s4); display: flex; gap: var(--s3); align-items: flex-start; }
.warn-compact .wc-body > svg { width: 28px; height: 28px; color: var(--brick); flex: none; margin-top: 2px; }
.warn-compact h3 { font-size: 1.2rem; margin-bottom: 6px; }
.warn-compact p { color: var(--ink-soft); }
.warn-compact a { color: var(--oak); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Kennisbank */
.kb-grid { display: grid; gap: var(--s4); margin-top: var(--s5); }
@media (min-width: 760px){ .kb-grid { grid-template-columns: repeat(3, 1fr); } }
.kb-card {
  display: flex; flex-direction: column;
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.kb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kb-card .kb-top { aspect-ratio: 16/10; background: var(--sand-2); display: grid; place-items: center; }
.kb-card .kb-top svg { width: 44px; height: 44px; color: var(--moss); }
.kb-card .kb-body { padding: var(--s3) var(--s3) var(--s4); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.kb-card .kb-cat { font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); }
.kb-card h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.kb-card p { color: var(--ink-soft); font-size: 0.96rem; }
.kb-card .kb-more { margin-top: auto; font-family: var(--display); font-weight: 500; color: var(--oak); display: inline-flex; align-items: center; gap: 8px; }
.kb-card .kb-more svg { width: 16px; height: 16px; }

/* Artikel-body */
.article { max-width: 760px; margin-inline: auto; }
.article .lead { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: var(--s4); line-height: 1.55; }
.article h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin: var(--s5) 0 var(--s2); }
.article h3 { font-size: 1.2rem; margin: var(--s4) 0 8px; font-family: var(--display); }
.article p { color: var(--ink); margin-bottom: var(--s2); }
.article ul { margin: 0 0 var(--s3); padding-left: 22px; color: var(--ink); }
.article li { margin-bottom: 8px; }
.article .callout { background: var(--sand-2); border-radius: var(--r-md); padding: var(--s3) var(--s4); margin: var(--s4) 0; border-left: 3px solid var(--moss); }
.article .callout p { margin: 0; color: var(--ink-soft); }
.article-meta { color: var(--moss); font-size: 0.9rem; margin-bottom: var(--s3); }
.req { color: var(--brick); font-weight: 600; }
.nav-dd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-dd-head { display: block; font-family: var(--display); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); padding: 8px 10px 4px; }
@media (min-width: 1040px) { .nav-dd-menu { min-width: 300px; max-height: min(74vh, 600px); overflow-y: auto; } }

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: var(--s5);
  background: rgba(92,115,85,0.25);
  border: 1px solid rgba(92,115,85,0.25);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 640px){ .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px){ .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-cell {
  background: var(--sand);
  padding: var(--s3) var(--s3);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 500;
  text-decoration: none; color: var(--ink);
  transition: background .18s ease, color .18s ease;
}
.area-cell:hover { background: var(--oak); color: var(--sand); }
.area-cell svg { width: 18px; height: 18px; color: var(--moss); flex: none; transition: color .18s ease; }
.area-cell:hover svg { color: var(--sand); }
.area-note { margin-top: var(--s3); color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================================
   Waarom dit bedrijf
   ========================================================================= */
.why { background: var(--sand-2); }
.badges {
  display: grid;
  gap: var(--s2);
  margin-top: var(--s5);
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 880px){ .badges { grid-template-columns: repeat(4, 1fr); gap: var(--s3); } }
.badge {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: var(--s3);
  box-shadow: var(--shadow-sm);
}
.badge .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--oak); color: var(--sand);
  display: grid; place-items: center; margin-bottom: var(--s2);
}
.badge .ic svg { width: 21px; height: 21px; }
.badge b { font-family: var(--display); font-weight: 500; font-size: 1.05rem; display: block; margin-bottom: 4px; }
.badge span { color: var(--ink-soft); font-size: 0.95rem; }
.quote {
  margin-top: var(--s5);
  background: var(--oak);
  color: var(--sand);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s4);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px){ .quote { padding: var(--s6); } }
.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.quote .stars { color: #E7C24B; margin-bottom: var(--s2); letter-spacing: 2px; }
.quote cite {
  display: block; margin-top: var(--s3);
  font-style: normal; font-family: var(--body);
  color: var(--moss-soft); font-size: 0.95rem;
}
.quote .ctx-eyebrow {
  font-family: var(--display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--moss-soft); margin: 0 0 var(--s2);
}
.quote .ctx-list { list-style: none; margin: var(--s4) 0 0; padding: 0; display: grid; gap: var(--s2); }
@media (min-width: 720px){ .quote .ctx-list { grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s4); } }
.quote .ctx-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(246,243,236,0.92); font-family: var(--body); font-size: 1.02rem; line-height: 1.45; }
.quote .ctx-list li svg { width: 20px; height: 20px; flex: none; color: var(--moss-soft); margin-top: 3px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { margin-top: var(--s5); max-width: 820px; }
.faq-item { border-top: 1px solid rgba(92,115,85,0.3); }
.faq-item:last-child { border-bottom: 1px solid rgba(92,115,85,0.3); }
.faq-q {
  width: 100%;
  background: none; border: 0;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  padding: var(--s3) 4px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q .chev {
  width: 28px; height: 28px; flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--moss-soft);
  display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.faq-q .chev svg { width: 15px; height: 15px; color: var(--oak); transition: color .25s ease; }
.faq-item[open] .faq-q .chev { transform: rotate(45deg); background: var(--oak); border-color: var(--oak); }
.faq-item[open] .faq-q .chev svg { color: var(--sand); }
.faq-a {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 1.05rem;
  display: grid;
  grid-template-rows: 0fr;
}
.faq-a > div { overflow: hidden; }
.faq-item[open] .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 4px var(--s4); max-width: 64ch; }

/* =========================================================================
   Slot-CTA
   ========================================================================= */
.cta {
  background: var(--oak-deep);
  color: var(--sand);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s4);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px){ .cta { padding: var(--s7) var(--s5); } }
.cta .eyebrow { color: var(--moss-soft); justify-content: center; }
.cta .eyebrow::before { background: var(--moss-soft); }
.cta h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: var(--s3); color: var(--sand); }
.cta p { color: var(--moss-soft); max-width: 46ch; margin: 0 auto var(--s4); font-size: 1.1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }
.cta-btns .btn { flex: 1 1 240px; }
@media (min-width: 560px){ .cta-btns .btn { flex: 0 0 auto; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--oak-deep);
  color: var(--moss-soft);
  padding-block: var(--s6) var(--s5);
}
.footer-grid { display: grid; gap: var(--s4); }
@media (min-width: 560px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); } .footer-brand { grid-column: 1 / -1; } }
@media (min-width: 1040px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr; } .footer-brand { grid-column: auto; } }
.footer-contact-quick { margin-top: var(--s2); font-size: 0.92rem; color: var(--moss-soft); }
.footer-contact-quick a { color: var(--sand); text-decoration: none; }
.footer-contact-quick a:hover { color: var(--moss-soft); }
.footer-grid .brand { color: var(--sand); margin-bottom: var(--s2); }
.footer-blurb { font-size: 0.96rem; max-width: 36ch; }
.footer-col h4 {
  font-family: var(--display); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss-soft);
  margin: 0 0 var(--s2);
}
.footer-col a, .footer-col p { color: var(--sand); text-decoration: none; display: block; margin-bottom: 8px; font-size: 0.98rem; }
.footer-col a:hover { color: var(--moss-soft); }
.footer-bottom {
  margin-top: var(--s5); padding-top: var(--s3);
  border-top: 1px solid rgba(138,156,132,0.2);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--sand); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.footer-bottom a:hover { color: var(--moss-soft); }

/* =========================================================================
   Sticky mobiele onderbalk
   ========================================================================= */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246,243,236,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid rgba(92,115,85,0.2);
  box-shadow: 0 -8px 24px -12px rgba(28,27,25,0.18);
}
.mobile-bar .btn { flex: 1; min-height: 50px; padding: 0 12px; font-size: 0.98rem; }
@media (min-width: 768px){ .mobile-bar { display: none; } }
@media (min-width: 768px){ body { padding-bottom: 0; } }

/* =========================================================================
   Contact pagina
   ========================================================================= */
.contact-hero { padding-top: var(--s5); padding-bottom: var(--s4); }
@media (min-width:900px){ .contact-hero { padding-top: var(--s6); } }
.contact-hero h1 { font-size: clamp(2.1rem, 6vw, 3.2rem); letter-spacing: -0.03em; margin-bottom: var(--s2); }
.contact-hero .sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 44ch; }

.contact-actions { display: grid; gap: var(--s2); margin-top: var(--s4); }
@media (min-width: 620px){ .contact-actions { grid-template-columns: 1fr 1fr; gap: var(--s3); } }
.action-card {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 96px;
}
.action-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.action-card.call { background: var(--oak); color: var(--sand); }
.action-card.app  { background: var(--paper); color: var(--oak); border: 1.5px solid var(--oak); }
.action-card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.action-card.call .ic { background: rgba(246,243,236,0.15); }
.action-card.app  .ic { background: var(--sand-2); }
.action-card .ic svg { width: 24px; height: 24px; }
.action-card small { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; font-family: var(--body); }
.action-card b { font-family: var(--display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; }

.contact-grid { display: grid; gap: var(--s5); }
@media (min-width: 920px){ .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--s6); align-items: start; } }

/* Form */
.form-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: var(--s4);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px){ .form-card { padding: var(--s5); } }
.form-card .intro { color: var(--ink-soft); margin-bottom: var(--s4); }
.field { margin-bottom: var(--s3); }
.field label { display: block; font-family: var(--display); font-weight: 500; font-size: 0.95rem; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--body); font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid rgba(92,115,85,0.4);
  border-radius: var(--r-sm);
  background: var(--sand);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--oak);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(47,71,51,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; gap: var(--s3); }
@media (min-width: 560px){ .field-row { grid-template-columns: 1fr 1fr; } }
.upload {
  border: 1.5px dashed rgba(92,115,85,0.5);
  border-radius: var(--r-sm);
  padding: var(--s4);
  text-align: center;
  background: var(--sand);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.upload:hover { border-color: var(--oak); background: var(--paper); }
.upload svg { width: 28px; height: 28px; color: var(--moss); margin: 0 auto 8px; }
.upload b { font-family: var(--display); font-weight: 500; display: block; }
.upload span { color: var(--ink-soft); font-size: 0.9rem; }
.upload input { display: none; }
.form-note { font-size: 0.85rem; color: var(--moss); margin-top: var(--s3); }

/* Contact sidebar */
.info-card {
  background: var(--sand-2);
  border-radius: var(--r-lg);
  padding: var(--s4);
}
.info-card + .info-card { margin-top: var(--s3); }
.info-card h3 { font-size: 1.2rem; margin-bottom: var(--s2); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(92,115,85,0.22); font-size: 0.98rem; }
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { color: var(--ink-soft); }
.hours li.today { font-weight: 600; }
.hours li.today span:last-child { color: var(--oak); }
.reach { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s3); }
.reach li { display: flex; gap: 14px; align-items: flex-start; }
.reach-ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--oak); color: var(--sand); }
.reach-ic svg { width: 20px; height: 20px; }
.reach b { font-family: var(--display); font-weight: 500; display: block; margin-bottom: 3px; letter-spacing: -0.01em; }
.reach span { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.45; }
.map .ph { aspect-ratio: 16/10; border-radius: var(--r-md); }
.map .map-frame { display: block; width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--r-md); }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chips span {
  font-family: var(--display); font-weight: 500; font-size: 0.9rem;
  background: var(--paper); color: var(--oak);
  padding: 6px 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(92,115,85,0.3);
}
.chip-label { font-family: var(--display); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); margin: var(--s2) 0 8px; }
.chip-label:first-child { margin-top: 0; }
.area-group-head { font-family: var(--display); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); margin: var(--s4) 0 var(--s2); display: flex; align-items: center; gap: 10px; }
.area-group-head::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--oak); flex: none; }
.area-grid + .area-group-head { margin-top: var(--s4); }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.instant { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* small helpers */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--oak); color: var(--sand);
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--moss); outline-offset: 2px; border-radius: 4px; }
