/* ============================================================
   Dulger.nl - conceptwebsite
   Bento-grid op een zichtbaar raster | inktnavy + signaaloranje
   ============================================================ */

:root {
  --kleur-primair:     #171A2B;
  --kleur-accent:      #F4511E;
  --kleur-accent-diep: #D84315;
  --kleur-achtergrond: #F7F5F0;
  --kleur-wit:         #FFFFFF;
  --kleur-tekst:       #23263A;
  --kleur-tekst-licht: #C9CBDA;
  --kleur-subtiel:     #6E7185;
  --kleur-lijn:        #DDDAD0;
  --kleur-raster:      #E7E4DB;
  --kleur-navy-vlak:   #20243A;
  --kleur-navy-lijn:   #343850;

  --container: 1200px;
  --pad-x: clamp(20px, 5vw, 40px);
  --sectie-y: clamp(64px, 9vw, 112px);
  --topbalk-h: 64px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-tekst: "Geist", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbalk-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-tekst);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--kleur-tekst);
  background: var(--kleur-achtergrond);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
a { color: inherit; }
p { overflow-wrap: break-word; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- Rasterlaag (vaste verticale lijnen) ---------- */
.rasterlaag {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.rasterlaag__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.rasterlijn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--kleur-raster);
}
.rasterlijn--1   { left: calc(var(--pad-x) + (100% - 2 * var(--pad-x)) * 0.1667); }
.rasterlijn--2   { left: calc(var(--pad-x) + (100% - 2 * var(--pad-x)) * 0.3333); }
.rasterlijn--mid { left: 50%; }
.rasterlijn--3   { left: calc(var(--pad-x) + (100% - 2 * var(--pad-x)) * 0.6667); }
.rasterlijn--4   { left: calc(var(--pad-x) + (100% - 2 * var(--pad-x)) * 0.8333); }

/* content boven de rasterlaag */
.topbalk, main, .footer, .mobielmenu, .conceptbadge { position: relative; z-index: 1; }

/* ---------- Skiplink ---------- */
.skiplink {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--kleur-primair);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
}
.skiplink:focus { left: 8px; top: 8px; }

/* ---------- Eyebrow-labels ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tekst);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 16px;
}
.eyebrow__vk {
  width: 8px; height: 8px;
  background: var(--kleur-accent);
  flex: none;
}
.eyebrow--licht { color: var(--kleur-accent); }

/* ---------- Sectiekop ---------- */
.sectiekop { margin-bottom: clamp(32px, 4vw, 48px); max-width: 720px; }
.sectiekop h2 {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--kleur-primair);
}
.sectiekop__intro {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--kleur-subtiel);
}

/* ---------- Knoppen ---------- */
.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  font-family: var(--font-tekst);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.knop--klein { min-height: 40px; padding: 8px 16px; }
.knop--accent { background: var(--kleur-accent); color: #fff; }
.knop--accent:hover, .knop--accent:focus-visible { background: var(--kleur-accent-diep); }
.knop--lijn { background: transparent; color: var(--kleur-primair); border-color: var(--kleur-primair); }
.knop--lijn:hover, .knop--lijn:focus-visible { background: var(--kleur-primair); color: #fff; }
.knop--lijn-licht { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.knop--lijn-licht:hover, .knop--lijn-licht:focus-visible { background: #fff; color: var(--kleur-primair); border-color: #fff; }
.knop--navy { background: var(--kleur-primair); color: #fff; }
.knop--navy:hover, .knop--navy:focus-visible { background: #000; }

:focus-visible { outline: 3px solid var(--kleur-accent); outline-offset: 3px; }

.tekstlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--kleur-accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: gap 180ms ease;
}
.tekstlink:hover { gap: 12px; text-decoration: underline; }
.tekstlink--navy { color: var(--kleur-primair); }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.topbalk {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbalk-h);
  background: rgba(247,245,240,0.85);
  border-bottom: 1px solid var(--kleur-lijn);
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
}
.topbalk__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.woordmerk {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--kleur-primair);
  text-decoration: none;
}
.woordmerk__nl { color: var(--kleur-accent); }

.hoofdnav { display: flex; align-items: center; gap: 28px; }
.hoofdnav__lijst {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
}
.navlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--kleur-tekst);
  text-decoration: none;
  padding: 6px 0;
  transition: color 180ms ease;
}
.navlink::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--kleur-accent);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}
.navlink:hover { color: var(--kleur-accent); }
.navlink.actief { color: var(--kleur-primair); }
.navlink.actief::before { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--kleur-primair);
  transition: transform 220ms ease, opacity 220ms ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menupaneel */
.mobielmenu {
  position: fixed;
  inset: var(--topbalk-h) 0 0 0;
  background: var(--kleur-primair);
  z-index: 40;
  padding: 40px var(--pad-x);
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
  visibility: hidden;
}
.mobielmenu.open { transform: translateX(0); visibility: visible; }
.mobielmenu__lijst { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mobielmenu__lijst a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--kleur-navy-lijn);
}
.mobielmenu__cta { margin-top: 28px; width: 100%; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero { padding-top: calc(var(--topbalk-h) + clamp(40px, 6vw, 80px)); padding-bottom: var(--sectie-y); }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  align-items: start;
}
.hero__tekst { grid-column: 1 / 5; }
.hero__stapel { grid-column: 5 / 7; display: flex; flex-direction: column; gap: 16px; }

.hero__kop {
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--kleur-primair);
}
.hero__intro {
  margin-top: 24px;
  font-size: 1.2rem;
  color: var(--kleur-subtiel);
  max-width: 44ch;
}
.hero__knoppen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__meta { margin-top: 20px; color: var(--kleur-subtiel); font-size: 0.95rem; }

/* Hero-tegels */
.herotegel {
  border: 1px solid var(--kleur-lijn);
  background: var(--kleur-wit);
  padding: 0;
}
.herotegel--oranje {
  background: var(--kleur-accent);
  color: var(--kleur-primair);
  padding: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.herotegel__cijfer { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1; }
.herotegel__label { font-weight: 600; line-height: 1.25; }
.herotegel--navy { background: var(--kleur-primair); color: var(--kleur-tekst-licht); padding: 20px; }
.herotegel__kop { font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 12px; font-size: 1.05rem; }

.minilijst { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.minilijst li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
}
.minilijst li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--kleur-accent);
}

/* Browserbalk (CSS-tekening) */
.browserbalk {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #EDEAE0;
  border-bottom: 1px solid var(--kleur-lijn);
}
.browserbalk span { width: 9px; height: 9px; border-radius: 50%; background: #C9C5B8; }
.browserbalk span:first-child { background: var(--kleur-accent); }
.browserbalk--donker { background: #20243A; border-bottom: 1px solid var(--kleur-navy-lijn); }
.browserbalk--donker span { background: #3A3F5C; }
.browserbalk--donker span:first-child { background: var(--kleur-accent); }

.herotegel__beeld svg { width: 100%; height: auto; aspect-ratio: 16 / 10; }

/* ============================================================
   2. USP-BAND (rand-tot-rand navy)
   ============================================================ */
.uspband { background: var(--kleur-primair); }
.uspband__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usp {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px) clamp(16px, 3vw, 40px);
  border-left: 1px solid var(--kleur-navy-vlak);
}
.usp:first-child { border-left: none; padding-left: 0; }
.usp__cijfer {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--kleur-accent);
  font-variant-numeric: tabular-nums;
}
.usp__tekst { color: var(--kleur-tekst-licht); font-size: 1.05rem; }

/* ============================================================
   3. DIENSTEN (bento)
   ============================================================ */
.diensten { padding-block: var(--sectie-y); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dienst {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--kleur-lijn);
  background: var(--kleur-wit);
  min-height: 0;
}
.dienst__nr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  color: var(--kleur-subtiel);
  margin-bottom: 14px;
}
.dienst h3 { font-weight: 700; font-size: 1.25rem; color: var(--kleur-primair); margin-bottom: 10px; }
.dienst p { margin-bottom: 16px; }

.dienst--groot { grid-column: 1 / 5; grid-row: 1 / 4; }
.dienst--navy  { grid-column: 5 / 7; grid-row: 1 / 2; background: var(--kleur-primair); }
.dienst--seo   { grid-column: 5 / 7; grid-row: 2 / 3; }
.dienst--oranje{ grid-column: 5 / 7; grid-row: 3 / 4; background: var(--kleur-accent); }

.dienst--navy h3 { color: #fff; }
.dienst--navy p { color: var(--kleur-tekst-licht); }
.dienst--oranje h3, .dienst--oranje p { color: var(--kleur-primair); }
.dienst--oranje .dienst__nr { color: rgba(23,26,43,0.6); }

.dienst__beeld { border: 1px solid var(--kleur-lijn); margin-bottom: 18px; overflow: hidden; }
.dienst__beeld svg { width: 100%; height: auto; aspect-ratio: 480 / 210; }
.dienst__vierkant { border: 1px solid var(--kleur-lijn); margin-bottom: 16px; width: 96px; overflow: hidden; }
.dienst__vierkant svg { width: 100%; height: auto; aspect-ratio: 1 / 1; }

/* ============================================================
   4. WERKWIJZE
   ============================================================ */
.werkwijze { padding-block: var(--sectie-y); }
.stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--kleur-lijn);
  background: var(--kleur-wit);
}
.stap {
  padding: clamp(24px, 3vw, 36px);
  border-left: 1px solid var(--kleur-lijn);
}
.stap:first-child { border-left: none; }
.stap__nr {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--kleur-primair);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.stap__punt { color: var(--kleur-accent); }
.stap h3 { font-weight: 700; font-size: 1.1rem; color: var(--kleur-primair); margin-bottom: 8px; }
.stap p { font-size: 0.98rem; color: var(--kleur-tekst); }
.werkwijze__regel {
  margin-top: 20px;
  font-weight: 600;
  color: var(--kleur-primair);
}

/* ============================================================
   5. UITGELICHTE DIENST (navy, rand-tot-rand)
   ============================================================ */
.werkplek { background: var(--kleur-primair); padding-block: var(--sectie-y); }
.werkplek__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.werkplek__beeld { border: 1px solid var(--kleur-navy-lijn); background: var(--kleur-navy-vlak); overflow: hidden; }
.werkplek__scherm svg { width: 100%; height: auto; aspect-ratio: 3 / 2; }
.werkplek__tekst .eyebrow { color: var(--kleur-accent); }
.werkplek__tekst h2 {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.werkplek__tekst p { color: var(--kleur-tekst-licht); margin-bottom: 24px; }
.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.checklist li {
  position: relative;
  padding-left: 24px;
  color: #fff;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 9px; height: 9px;
  background: var(--kleur-accent);
}

/* ============================================================
   6. WAAROM
   ============================================================ */
.waarom { padding-block: var(--sectie-y); }
.waarom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.waaromblok {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--kleur-lijn);
  background: var(--kleur-wit);
}
.waaromblok h3 { font-weight: 700; font-size: 1.25rem; color: var(--kleur-primair); margin-bottom: 10px; }
.kernstatement {
  margin-top: 16px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--kleur-lijn);
  background: var(--kleur-wit);
}
.kernstatement__tekst {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  color: var(--kleur-primair);
  max-width: 30ch;
}
.kernstatement__bron { margin-top: 14px; color: var(--kleur-subtiel); }

/* ============================================================
   7. WERKGEBIED + OVER
   ============================================================ */
.overzone { padding-block: var(--sectie-y); }
.overzone__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.werkgebied {
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--kleur-lijn);
  background: var(--kleur-wit);
}
.werkgebied h2 { font-weight: 700; font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; color: var(--kleur-primair); margin-bottom: 16px; }
.werkgebied p { max-width: 52ch; }
.plaatsen {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.plaatsen li {
  border: 1px solid var(--kleur-lijn);
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--kleur-achtergrond);
}
.overblok {
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--kleur-primair);
  color: var(--kleur-tekst-licht);
}
.overblok .eyebrow { color: var(--kleur-accent); }
.overblok__kop { font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.02em; color: #fff; margin-bottom: 16px; }
.openingstijden { margin-top: 26px; border-top: 1px solid var(--kleur-navy-lijn); padding-top: 20px; }
.openingstijden__kop { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 12px; }
.openingstijden dl { display: flex; flex-direction: column; gap: 8px; }
.openingstijden dl > div { display: flex; justify-content: space-between; gap: 16px; font-size: 0.95rem; }
.openingstijden dt { color: var(--kleur-tekst-licht); }
.openingstijden dd { color: #fff; font-weight: 500; white-space: nowrap; }

/* ============================================================
   8. FAQ
   ============================================================ */
.faq { padding-block: var(--sectie-y); }
.faq__lijst {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 66.6667%;
}
.faqitem { border: 1px solid var(--kleur-lijn); background: var(--kleur-wit); }
.faqitem h3 { margin: 0; font-size: 1rem; }
.faqitem__knop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--kleur-primair);
}
.faqitem__teken {
  position: relative;
  flex: none;
  width: 18px; height: 18px;
}
.faqitem__teken::before, .faqitem__teken::after {
  content: "";
  position: absolute;
  background: var(--kleur-accent);
  transition: transform 250ms ease, opacity 250ms ease;
}
.faqitem__teken::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faqitem__teken::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faqitem__knop[aria-expanded="true"] .faqitem__teken::after { transform: scaleY(0); opacity: 0; }

.faqitem__antwoord {
  overflow: hidden;
  max-height: 0;
  transition: max-height 250ms ease;
}
.faqitem__antwoord p { padding: 0 20px 20px; color: var(--kleur-tekst); }

/* ============================================================
   9. CTA-BAND (oranje)
   ============================================================ */
.ctaband { background: var(--kleur-accent); padding-block: clamp(48px, 7vw, 80px); }
.ctaband__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.ctaband h2 {
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--kleur-primair);
  max-width: 20ch;
}
.ctaband p { color: var(--kleur-primair); font-size: 1.15rem; }
.ctaband .knop { margin-top: 8px; }

/* ============================================================
   10. CONTACT (navy)
   ============================================================ */
.contact { background: var(--kleur-primair); padding-block: var(--sectie-y); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact__info .eyebrow { color: var(--kleur-accent); }
.contact__info h2 { font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.02em; color: #fff; margin-bottom: 16px; }
.contact__lead { color: var(--kleur-tekst-licht); margin-bottom: 28px; }
.contactgegevens { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contactgegevens li { display: flex; flex-direction: column; gap: 4px; }
.contactgegevens__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-subtiel);
}
.contactgegevens a, .contactgegevens span:not(.contactgegevens__label) { color: #fff; text-decoration: none; overflow-wrap: break-word; }
.contactgegevens a:hover { color: var(--kleur-accent); }

/* Formulier */
.contact__formulierblok {
  padding: clamp(24px, 3vw, 36px);
  background: var(--kleur-navy-vlak);
  border: 1px solid var(--kleur-navy-lijn);
}
.formulier { display: flex; flex-direction: column; gap: 20px; }
.veld { display: flex; flex-direction: column; gap: 6px; }
.veld label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kleur-tekst-licht);
}
.veld__optioneel { text-transform: none; letter-spacing: 0; color: var(--kleur-subtiel); font-weight: 500; }
.veld input, .veld textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 2px;
  font-family: var(--font-tekst);
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--kleur-navy-lijn);
  border-radius: 0;
  transition: border-color 180ms ease;
}
.veld textarea { resize: vertical; min-height: 96px; padding-top: 10px; }
.veld input:focus, .veld textarea:focus {
  outline: none;
  border-bottom-color: var(--kleur-accent);
}
.veld input::placeholder, .veld textarea::placeholder { color: var(--kleur-subtiel); }
.veld--fout input, .veld--fout textarea { border-bottom-color: #FF8A65; }
.veld__fout { color: #FF8A65; font-size: 0.85rem; min-height: 0; }
.veld__fout:empty { display: none; }

.formulier__verzend { width: 100%; margin-top: 4px; }
.formulier__succes {
  background: rgba(244,81,30,0.15);
  border: 1px solid var(--kleur-accent);
  color: #fff;
  padding: 14px 16px;
  font-weight: 500;
}
.formulier__kleineletters { font-size: 0.85rem; color: var(--kleur-subtiel); }
.formulier__kleineletters a { color: var(--kleur-tekst-licht); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--kleur-primair); color: var(--kleur-tekst-licht); padding-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--kleur-navy-lijn); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.woordmerk--footer { color: #fff; font-size: 1.5rem; display: inline-block; margin-bottom: 12px; }
.footer__omschrijving { max-width: 34ch; font-size: 0.95rem; }
.footer__lijst { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__lijst a { color: var(--kleur-tekst-licht); text-decoration: none; }
.footer__lijst a:hover { color: var(--kleur-accent); }
.footer__kol--rechts { font-size: 0.95rem; display: flex; flex-direction: column; gap: 6px; }
.footer__kol--rechts a { color: var(--kleur-tekst-licht); text-decoration: none; }
.footer__kol--rechts a:hover { color: var(--kleur-accent); }
.footer__onder {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid var(--kleur-navy-lijn);
  font-size: 0.85rem;
  color: var(--kleur-subtiel);
}
.footer__concept { color: var(--kleur-subtiel); }

/* Conceptbadge */
.conceptbadge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: var(--kleur-primair);
  color: #fff;
  border: 1px solid var(--kleur-accent);
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* ============================================================
   SIGNATURE: selectiekader met hoekhandles
   ============================================================ */
.kader { position: relative; transition: border-color 180ms ease-out; }
.kader__label {
  position: absolute;
  top: -22px;
  left: -1px;
  z-index: 4;
  background: var(--kleur-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-tekst);
  padding: 2px 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms ease-out;
  pointer-events: none;
}
.handle {
  position: absolute;
  width: 8px; height: 8px;
  background: #fff;
  border: 1.5px solid var(--kleur-accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 180ms ease-out, transform 180ms ease-out, border-color 180ms ease-out;
  z-index: 3;
  pointer-events: none;
}
.handle--tl { top: -4px; left: -4px; }
.handle--tr { top: -4px; right: -4px; }
.handle--bl { bottom: -4px; left: -4px; }
.handle--br { bottom: -4px; right: -4px; }

/* hover-toestand */
@media (hover: hover) {
  .kader:hover { border-color: var(--kleur-accent); }
  .kader:hover .handle { opacity: 1; transform: scale(1); }
  .kader:hover .kader__label { opacity: 1; }
}

/* permanente handles (hero-foto, werkplek-beeld) */
.kader--vast { border-color: var(--kleur-accent); }
.kader--vast .handle { opacity: 1; transform: scale(1); }
.kader--grijs { border-color: var(--kleur-navy-lijn); }
.kader--grijs .handle { border-color: var(--kleur-subtiel); background: var(--kleur-navy-vlak); }

/* touch: handles permanent en gedempt, geen labels */
@media (hover: none) {
  .kader .handle { opacity: 1; transform: scale(1); border-color: var(--kleur-lijn); }
  .kader--vast .handle { border-color: var(--kleur-accent); }
  .kader__label { display: none; }
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.zichtbaar { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIEF
   ============================================================ */

/* Tablet: 3 kolommen (2 rasterlijnen) */
@media (max-width: 1024px) {
  .rasterlijn--1, .rasterlijn--4 { display: none; }
  .rasterlijn--2 { left: calc(var(--pad-x) + (100% - 2 * var(--pad-x)) * 0.3333); }
  .rasterlijn--3 { left: calc(var(--pad-x) + (100% - 2 * var(--pad-x)) * 0.6667); }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__tekst, .hero__stapel { grid-column: 1 / -1; }
  .hero__stapel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .dienst--groot { grid-column: 1 / -1; grid-row: auto; }
  .dienst--navy, .dienst--seo, .dienst--oranje { grid-column: auto; grid-row: auto; }

  .stappen { grid-template-columns: repeat(2, 1fr); }
  .stap:nth-child(-n+2) { border-bottom: 1px solid var(--kleur-lijn); }
  .stap:nth-child(odd) { border-left: none; }

  .faq__lijst { max-width: 100%; }
}

/* Tweeluiken stapelen onder 820px */
@media (max-width: 820px) {
  .werkplek__grid,
  .overzone__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .werkplek__grid { gap: 32px; }
}

/* Mobiel: 1 middenlijn */
@media (max-width: 768px) {
  .hoofdnav { display: none; }
  .hamburger { display: flex; }

  .rasterlijn--2, .rasterlijn--3 { display: none; }
  .rasterlijn--mid { opacity: 0.5; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .uspband__grid { grid-template-columns: 1fr; }
  .usp { border-left: none; border-top: 1px solid var(--kleur-navy-vlak); padding-inline: 0; }
  .usp:first-child { border-top: none; }

  .hero__stapel { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .waarom__grid { grid-template-columns: 1fr; }
  .stappen { grid-template-columns: 1fr; }
  .stap { border-left: none; border-top: 1px solid var(--kleur-lijn); }
  .stap:first-child { border-top: none; }
  .stap:nth-child(-n+2) { border-bottom: none; }
  .footer__onder { flex-direction: column; }
  .hero__knoppen .knop { width: 100%; }
  .ctaband .knop { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .handle, .kader, .faqitem__antwoord, .knop, .navlink::before { transition: none !important; }
}
