﻿/* ============================================================
   VERSFRIS — STYLESHEET (v3, kwaliteitsronde)
   Diep petrol-groen + warm goud + crème. Mobiel-first.
   Systeemlettertypes (geen extern font = sneller, geen FOIT).
   WCAG 2.2 AA: contrast, focus-visible, reduced motion.
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ------------------------------
   Kleurbalans volgens flyer: 70–80% crème/gebroken wit,
   15–20% petrol (koppen, accenten, 1–2 balken, footer),
   5–10% goud. WhatsApp-groen alleen voor WhatsApp-acties.   */
:root {
  /* Petrol (huisstijl flyer) */
  --petrol-900: #04241f;   /* footer / donkerste accent */
  --petrol-800: #052e29;
  --petrol-700: #0d4a42;
  --petrol:     #073532;   /* koppen, iconen, CTA-balk */

  /* Goud (huisstijl flyer) */
  --goud:        #b77c16;  /* lijnen, accenten */
  --goud-licht:  #d9a441;  /* accenten op donkere achtergrond */
  --goud-tekst:  #8a5c0a;  /* kleine goudtekst op licht: 4.5:1+ */
  --goud-zacht:  #f3e7cd;

  /* WhatsApp — donkere tekst op groen voor voldoende contrast */
  --whatsapp:    #25d366;

  /* Neutralen (crème dominant) */
  --wit:    #fffcf7;       /* gebroken wit — basis */
  --paper:  #f7f2e9;       /* warm crème — secties */
  --paper-2:#efe7d8;
  --ink:    #102a27;
  --muted:  #4c5f57;
  --line:   #ddd3c3;

  /* Vorm */
  --radius:    14px;
  --radius-sm: 10px;
  --schaduw:    0 8px 26px rgba(7, 53, 50, 0.08);
  --schaduw-lg: 0 20px 48px rgba(7, 53, 50, 0.16);
  --maxbreedte: 1160px;
  --overgang:  0.2s ease;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
}

/* ---------- 2. RESET / BASIS ------------------------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--wit);
  line-height: 1.65;
  font-size: 1.03rem;
  overflow-x: clip;             /* vangnet tegen horizontale overflow */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--petrol); text-decoration: none; }
a:hover { text-decoration: underline; }
.btn:hover, .logo:hover, .nav-links a:hover, .wa-float:hover { text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.15; font-weight: 800; color: var(--ink);
  letter-spacing: -0.015em; overflow-wrap: break-word;
}
/* Redactionele serif-koppen in petrol, zoals op de flyer */
h1, h2 { font-family: var(--serif); font-weight: 700; color: var(--petrol); letter-spacing: 0; }
h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3.6vw, 2.05rem); }
h3 { font-size: 1.18rem; font-weight: 700; }
h1 .accent, h2 .accent { color: var(--goud); }
p { color: var(--muted); overflow-wrap: break-word; }

/* Zichtbare focus voor toetsenbordgebruikers */
:focus-visible { outline: 3px solid var(--goud); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. HULPKLASSEN -------------------------------- */
.container { width: 100%; max-width: var(--maxbreedte); margin: 0 auto; padding: 0 20px; min-width: 0; }
.sectie { padding: 52px 0; }
.sectie--paper { background: var(--paper); }
.sectie--petrol { background: var(--petrol); }
.sectie--petrol h1, .sectie--petrol h2, .sectie--petrol h3, .sectie--petrol h4 { color: #fff; }
.sectie--petrol p { color: #c3d4cd; }
.center { text-align: center; }
.kop-blok { max-width: 720px; margin: 0 auto 36px; }
.kop-blok p { font-size: 1.08rem; margin-top: 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--goud-tekst); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--goud); border-radius: 2px; }
.sectie--petrol .eyebrow { color: var(--goud-licht); }

/* ---------- 4. KNOPPEN (min. 48px hoog) ------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.98rem; line-height: 1.2; cursor: pointer;
  min-height: 48px; padding: 12px 24px; border-radius: 11px; border: 2px solid transparent;
  transition: background var(--overgang), color var(--overgang), border-color var(--overgang);
  text-align: center;
}
.btn .ic { width: 19px; height: 19px; flex-shrink: 0; }

.btn--primary { background: var(--petrol); color: #fff; }
.btn--primary:hover { background: var(--petrol-700); color: #fff; }
.btn--primary:focus-visible { outline-color: var(--goud); }

.btn--petrol { background: var(--petrol); color: #fff; }
.btn--petrol:hover { background: var(--petrol-800); color: #fff; }

/* Donkere tekst op WhatsApp-groen: contrast ±8:1 (wit haalde geen 4.5:1) */
.btn--whatsapp { background: var(--whatsapp); color: var(--petrol-900); }
.btn--whatsapp:hover { background: #3fdd7a; color: var(--petrol-900); }

.btn--outline { background: transparent; color: var(--petrol); border-color: var(--petrol); }
.btn--outline:hover { background: var(--petrol); color: #fff; }
.sectie--petrol .btn--outline { color: #fff; border-color: rgba(255,255,255,0.55); }
.sectie--petrol .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 480px) {
  .hero-acties .btn { flex: 1 1 100%; }
}

/* ---------- 5. HEADER / NAVIGATIE -------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 10px; }
/* Serif-wordmark met gouden ondertitel, zoals op de flyer */
.logo { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); font-weight: 700; font-size: 1.55rem; color: var(--petrol); flex-shrink: 0; }
.logo .sub {
  font-family: var(--font); font-weight: 700; font-size: 0.53rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--goud-tekst); margin-top: 4px;
}
.logo .sub::before { content: "— "; color: var(--goud); }
.logo .sub::after { content: " —"; color: var(--goud); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { display: block; padding: 10px 13px; border-radius: 9px; font-weight: 600; color: var(--ink); font-size: 0.96rem; }
.nav-links a:hover { background: var(--paper-2); }
.nav-links a.actief { color: var(--goud-tekst); }
.nav-cta { margin-left: 6px; }
.nav-cta .btn { min-height: 44px; padding: 10px 18px; font-size: 0.92rem; }
/* Specifieker dan .nav-links a, anders wint de gewone linkstijl */
.nav-links .nav-cta a.btn--primary { color: #fff; }
.nav-links .nav-cta a.btn--primary:hover { background: var(--petrol-700); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; color: var(--ink); min-height: 44px; min-width: 44px; }
.nav-toggle .ic { width: 26px; height: 26px; }

.nav-tel a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; font-weight: 700; color: var(--petrol); font-size: 0.96rem; }
.nav-tel a:hover { color: var(--goud-tekst); background: transparent; }
.nav-tel .ic { width: 17px; height: 17px; color: var(--goud-tekst); }
@media (max-width: 1020px) { .nav-tel { display: none; } }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--wit); border-bottom: 1px solid var(--line); padding: 10px 20px 22px;
    box-shadow: var(--schaduw); transform: translateY(-130%); transition: transform 0.28s ease;
    max-height: calc(100dvh - 72px); overflow-y: auto; overscroll-behavior: contain;
  }
  @media (prefers-reduced-motion: reduce) { .nav-links { transition: none; } }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; font-size: 1.08rem; }
  .nav-links li { width: 100%; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; }
  .nav-tel { display: block; }
  .nav-tel a { padding: 14px 12px; }
}

/* ---------- 6. HOME-HERO (licht, redactioneel) -------------- */
.hero-home { position: relative; background: linear-gradient(180deg, var(--paper) 0%, var(--wit) 100%); border-bottom: 1px solid var(--line); }
.hero-home .hero-inhoud { max-width: 760px; padding: 58px 0 54px; }
.hero-home h1 { margin-bottom: 16px; }
.hero-home .lead { font-size: 1.14rem; color: var(--muted); margin-bottom: 26px; max-width: 620px; }
.hero-acties { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-micro { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.92rem; color: var(--muted); }
.hero-micro .ic { width: 16px; height: 16px; color: var(--goud-tekst); flex-shrink: 0; }

/* Compacte vertrouwenspunten direct onder de hero-CTA's */
.hero-punten { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; padding: 0; }
.hero-punten li { display: flex; align-items: center; gap: 8px; font-size: 0.93rem; font-weight: 600; color: var(--ink); }
.hero-punten .ic { width: 17px; height: 17px; color: var(--goud-tekst); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-home .hero-inhoud { padding: 40px 0 40px; }
}

/* Hero: asymmetrische twee kolommen vanaf 960px (P3) */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.25fr 0.75fr; gap: 56px; } }

/* Redactionele "Zo werkt Versfris"-kaart (geen stockfoto nodig) */
.hero-werkwijze {
  background: var(--wit); border: 1px solid var(--goud); border-radius: var(--radius);
  padding: 24px 24px 20px; box-shadow: var(--schaduw); max-width: 420px;
}
.hero-werkwijze .hw-kop { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-werkwijze .hw-kop .ic { width: 22px; height: 22px; color: var(--goud-tekst); }
.hero-werkwijze .hw-kop p { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--petrol); margin: 0; }
.hw-stappen { list-style: none; display: grid; gap: 13px; margin: 0; padding: 0; }
.hw-stappen li { display: flex; gap: 12px; align-items: flex-start; }
.hw-nr { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--petrol); color: var(--goud-licht); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; }
.hw-stappen b { display: block; color: var(--ink); font-size: 0.95rem; }
.hw-stappen span:not(.hw-nr) { display: block; color: var(--muted); font-size: 0.87rem; }
.hw-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.92rem; color: var(--goud-tekst); }
/* Mobiel: kortere uitlegteksten en compactere kaart (±300-350px hoog) */
.hw-stappen span.hw-uitleg-kort { display: none; }
@media (max-width: 700px) {
  .hero-werkwijze { padding: 16px 16px 14px; max-width: none; }
  .hero-werkwijze .hw-kop { margin-bottom: 10px; }
  .hw-stappen { gap: 9px; }
  .hw-stappen b { font-size: 0.9rem; }
  .hw-stappen span:not(.hw-nr) { font-size: 0.84rem; }
  .hw-stappen span.hw-uitleg-lang { display: none; }
  .hw-stappen span.hw-uitleg-kort { display: block; }
  .hw-link { margin-top: 10px; }
}

/* Gouden accentlijn onder redactionele koppen (flyer-detail) */
.gouden-lijn { width: 46px; height: 3px; background: var(--goud); border-radius: 2px; margin: 16px 0 0; border: 0; }
.center .gouden-lijn, .kop-blok .gouden-lijn { margin-left: auto; margin-right: auto; }

/* ---------- 7. INNER-PAGE HERO ----------------------------- */
.hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 46px 0 42px; }
.hero h1 { margin-bottom: 12px; }
.hero .sub { font-size: 1.08rem; color: var(--muted); max-width: 720px; }
.hero .hero-acties { margin-top: 22px; }

/* ---------- 8. VERTROUWENSBALK ----------------------------- */
.trust-strip { background: var(--petrol-900); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 26px; padding-top: 18px; padding-bottom: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #d7e3dd; font-weight: 600; font-size: 0.92rem; }
.trust-item .ic { width: 20px; height: 20px; color: var(--goud-licht); flex-shrink: 0; }
@media (max-width: 860px) { .trust-strip .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .trust-strip .container { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- 9. KAARTEN ------------------------------------- */
.kaart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kaart-grid--2 { grid-template-columns: repeat(2, 1fr); }
.kaart {
  background: var(--wit); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; min-width: 0;
  transition: box-shadow var(--overgang), border-color var(--overgang);
}
.kaart:hover { box-shadow: var(--schaduw); }
.kaart-media { margin: -24px -22px 16px; overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--radius) var(--radius) 0 0; position: relative; }
.kaart-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kaart h3 { margin-bottom: 7px; }
.kaart p { font-size: 0.95rem; }
.kaart .vanaf { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--goud-tekst); font-size: 0.94rem; }
a.vanaf:hover { color: var(--petrol); }
@media (max-width: 900px) { .kaart-grid, .kaart-grid--2 { grid-template-columns: 1fr; } }

/* ---------- 10. SPLIT (tekst + beeld) ----------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; min-width: 0; }
.split-visual { position: relative; border-radius: var(--radius); min-height: 300px; overflow: hidden; box-shadow: var(--schaduw); }
.split-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lijst-check { list-style: none; margin-top: 18px; display: grid; gap: 13px; }
.lijst-check li { display: flex; gap: 12px; align-items: flex-start; }
.lijst-check li b { color: var(--ink); }
.lijst-check .vink { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--goud-zacht); color: var(--goud-tekst); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.lijst-check .vink .ic { width: 14px; height: 14px; }
.sectie--petrol .lijst-check .vink { background: rgba(213,165,74,0.18); color: var(--goud-licht); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 26px; } .split-visual { min-height: 220px; } }

/* ---------- 12. PRIJZEN ------------------------------------ */
.prijs-blok { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.prijs-kaart { background: var(--wit); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 12px; box-shadow: var(--schaduw); min-width: 0; }
.prijs-kaart h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.prijs-kaart h3 .ic { width: 22px; height: 22px; color: var(--goud-tekst); flex-shrink: 0; }
.prijs-lijst { list-style: none; }
.prijs-lijst li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.97rem; min-width: 0;
}
.prijs-lijst li:last-child { border-bottom: 0; }
.prijs-lijst .naam { color: var(--ink); font-weight: 500; min-width: 0; overflow-wrap: break-word; flex: 1 1 12ch; }
.prijs-lijst .prijs { color: var(--petrol); font-weight: 800; white-space: nowrap; }
.prijs-lijst .prijs small { color: var(--muted); font-weight: 500; }
.prijs-lijst .combi { flex-basis: 100%; font-size: 0.8rem; color: var(--muted); margin-top: -6px; }
@media (max-width: 760px) { .prijs-blok { grid-template-columns: 1fr; } }
@media (max-width: 380px) {
  .prijs-lijst li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .prijs-lijst .prijs { white-space: normal; }
}

.min-tarief {
  display: flex; gap: 16px; align-items: flex-start; background: var(--goud-zacht);
  border: 1px solid #e6d3a8; border-radius: var(--radius); padding: 20px 22px; margin-bottom: 26px;
}
.min-tarief .ic { flex-shrink: 0; width: 26px; height: 26px; color: var(--goud-tekst); margin-top: 3px; }
.min-tarief b { color: var(--petrol-900); }
.min-tarief p { color: #57430e; margin: 0; font-size: 0.97rem; }

/* ---------- 13. FORMULIER ---------------------------------- */
.form-wrap { display: grid; grid-template-columns: 1.45fr 1fr; gap: 32px; align-items: start; }
.form-card { background: var(--wit); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--schaduw); min-width: 0; }
.veld { margin-bottom: 17px; min-width: 0; }
.veld label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-size: 0.95rem; }
.veld label .opt { color: var(--muted); font-weight: 400; font-size: 0.84rem; }
.veld input, .veld select, .veld textarea {
  width: 100%; max-width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; color: var(--ink); background: var(--paper);
  min-height: 48px;
}
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none; border-color: var(--goud); box-shadow: 0 0 0 3px rgba(195,144,56,0.22); background: #fff;
}
.veld textarea { resize: vertical; min-height: 110px; }
.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.veld-hint { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.veld-fout { display: none; font-size: 0.87rem; font-weight: 600; color: #a12c1f; margin-top: 6px; }
.veld.ongeldig input, .veld.ongeldig select, .veld.ongeldig textarea { border-color: #a12c1f; }
.veld.ongeldig .veld-fout { display: block; }
.form-status { margin-top: 12px; font-weight: 600; font-size: 0.95rem; }
.form-status.fout { color: #a12c1f; }
.privacy-noot { font-size: 0.84rem; color: var(--muted); margin-top: 12px; }
.form-aside { display: grid; gap: 16px; min-width: 0; }
.form-aside .form-card { box-shadow: none; }
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } .veld-rij { grid-template-columns: 1fr; } }

/* ---------- 14. FAQ ---------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--wit); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; font-size: 1.02rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: var(--goud-zacht); color: var(--goud-tekst); display: flex; align-items: center; justify-content: center; transition: transform var(--overgang); }
.faq-item summary .plus .ic { width: 15px; height: 15px; }
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--goud); color: var(--petrol-900); }
@media (prefers-reduced-motion: reduce) { .faq-item summary .plus { transition: none; } }
.faq-item .antwoord { padding: 0 20px 20px; color: var(--muted); font-size: 0.97rem; }

/* ---------- 15. WERKGEBIED + CHECKER ------------------------ */
.plaatsen { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }
.plaats-tag { background: var(--wit); border: 1px solid var(--line); color: var(--ink); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 0.93rem; }
.sectie--petrol .plaats-tag { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: #fff; }

.checker { max-width: 540px; margin: 24px auto 0; }
.checker-rij { display: flex; gap: 10px; }
.checker-rij input {
  flex: 1; min-width: 0; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font-size: 1.02rem; font-family: inherit; color: var(--ink); background: var(--wit); min-height: 48px;
}
.checker-rij input:focus { outline: none; border-color: var(--goud); box-shadow: 0 0 0 3px rgba(195,144,56,0.22); }
.checker-resultaat { margin-top: 12px; font-weight: 600; display: none; align-items: flex-start; gap: 8px; text-align: left; }
.checker-resultaat .ic { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; }
.checker-resultaat.toon { display: flex; }
.checker-resultaat.ok { color: #1c6b3a; }
.checker-resultaat.info { color: var(--goud-tekst); }
.checker-resultaat.fout { color: #a12c1f; }
.sectie--petrol .checker-resultaat.ok { color: #7ede9f; }
.sectie--petrol .checker-resultaat.info { color: var(--goud-licht); }
.sectie--petrol .checker-resultaat.fout { color: #f2a196; }
@media (max-width: 520px) { .checker-rij { flex-direction: column; } .checker-rij .btn { width: 100%; } }

/* ---------- 16. NOTE / GARANTIE ----------------------------- */
.note { background: var(--goud-zacht); border-left: 4px solid var(--goud); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.96rem; color: var(--ink); }
.note b { color: var(--petrol); }
.sectie--petrol .note { background: rgba(255,255,255,0.07); border-left-color: var(--goud-licht); color: #dce8e2; }
.sectie--petrol .note b { color: #fff; }


/* ---------- 17. CTA-BAND ------------------------------------ */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band .hero-acties { justify-content: center; margin-top: 22px; }

/* ---------- 18. FOOTER (petrol, WCAG AA-contrast) ----------- */
.site-footer { background: var(--petrol-900); color: #cfdeD8; padding: 54px 0 26px; font-size: 0.94rem; }
.site-footer p { color: #cfded8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h2 { font-family: var(--font); font-weight: 800; color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #e2ece7; }
.site-footer a:hover { color: var(--goud-licht); }
.footer-logo { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: #fff; margin-bottom: 12px; }
.footer-logo .sub { font-family: var(--font); font-weight: 700; font-size: 0.53rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--goud-licht); margin-top: 4px; }
.footer-links, .footer-contact { list-style: none; display: grid; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ic { width: 17px; height: 17px; color: var(--goud-licht); flex-shrink: 0; margin-top: 4px; }
.footer-contact address { font-style: normal; color: #cfded8; line-height: 1.5; }
.footer-onder { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 38px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: 0.84rem; color: #b9cbc4; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 19. MOBIELE ACTIEBALK ---------------------------
   Verschijnt pas na de hero (JS voegt .balk-zichtbaar toe aan body)
   en verdwijnt zodra formulier of eind-CTA in beeld is.          */
.mobiel-balk { display: none; }
@media (max-width: 700px) {
  .mobiel-balk {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    transform: translateY(110%); transition: transform 0.25s ease;
  }
  @media (prefers-reduced-motion: reduce) { .mobiel-balk { transition: none; } }
  body.balk-zichtbaar .mobiel-balk { transform: translateY(0); }
  body.balk-zichtbaar { padding-bottom: 70px; }
  .mobiel-balk .btn { width: 100%; min-height: 46px; padding: 10px 12px; font-size: 0.93rem; }
  .wa-float { display: none; }
}

/* ---------- 20. ZWEVENDE WHATSAPP-KNOP (desktop) ------------ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 56px; height: 56px;
  border-radius: 50%; background: var(--whatsapp); color: var(--petrol-900);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--schaduw-lg);
}
.wa-float .ic { width: 30px; height: 30px; }
/* Op mobiel neemt de actiebalk het over (regel staat hier vanwege de cascade) */
@media (max-width: 700px) { .wa-float { display: none; } }

/* ---------- 21. SCROLL-ANIMATIES (subtiel) ------------------ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---------- 24. DIVERSEN ------------------------------------ */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 8px; z-index: 100; }

.fout-blok { text-align: center; max-width: 560px; margin: 0 auto; }
.fout-blok .groot { font-weight: 800; font-size: clamp(4rem, 16vw, 7rem); color: var(--goud); line-height: 1; }

/* ---------- 25. FLYER-COMPONENTEN --------------------------- */

/* Petrol pill-label op fotokaarten ("Voor thuis" / "Voor bedrijven") */
.pill {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--petrol); color: #fff; font-weight: 700; font-size: 0.85rem;
  padding: 8px 16px; border-radius: 999px;
}
.pill .ic { width: 16px; height: 16px; color: var(--goud-licht); }

/* Compacte opsomming in dienstkaarten */
.dienst-lijst { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin: 12px 0 4px; padding: 0; }
.dienst-lijst li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--ink); }
.dienst-lijst .ic { width: 14px; height: 14px; color: var(--goud-tekst); flex-shrink: 0; }
@media (max-width: 460px) { .dienst-lijst { grid-template-columns: 1fr; } }

/* Sectoren-rij (flyer-onderrand) */
.sector-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.sector {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 8px 14px; background: var(--wit); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--petrol);
  text-align: center;
}
.sector .ic { width: 26px; height: 26px; color: var(--petrol); }
.sector::after { content: ""; width: 22px; height: 2px; background: var(--goud); border-radius: 2px; }
@media (max-width: 860px) { .sector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }

/* Eigenaarsectie — tekstkaart (geen foto/monogram) */
.eigenaar { max-width: 860px; margin: 0 auto; background: var(--wit); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; box-shadow: var(--schaduw); }
.eigenaar blockquote { margin: 0; }
.eigenaar blockquote p { color: var(--ink); font-size: 1.04rem; line-height: 1.7; }
.eigenaar .wie { margin-top: 16px; font-weight: 700; color: var(--petrol); }
.eigenaar .wie span { display: block; font-weight: 500; font-size: 0.88rem; color: var(--muted); }
@media (max-width: 620px) { .eigenaar { padding: 24px 22px; } .eigenaar blockquote p { font-size: 1rem; } }


/* Compacte petrol CTA-balk (zoals de flyer-onderbalk) */
.cta-balk { background: var(--petrol); border-radius: var(--radius); padding: 26px 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.cta-balk .balk-tekst { color: #fff; font-weight: 700; font-size: 1.12rem; font-family: var(--serif); min-width: 0; }
.cta-balk .balk-tekst .accent { color: var(--goud-licht); }
.cta-balk .balk-contact { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.cta-balk .balk-contact a { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.cta-balk .balk-contact a:hover { color: var(--goud-licht); }
.cta-balk .balk-contact .ic { width: 18px; height: 18px; color: var(--goud-licht); }
@media (max-width: 700px) { .cta-balk { flex-direction: column; align-items: flex-start; padding: 22px; } }

/* 4-koloms kaartgrid (verwachtingensectie) */
.kaart-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .kaart-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kaart-grid--4 { grid-template-columns: 1fr; } }

/* Mobiele contactkeuze bovenin het formulier (P6) */
.mobiel-contactkeuze { display: none; }
@media (max-width: 900px) {
  .mobiel-contactkeuze { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); padding: 16px; margin-bottom: 22px; }
  .mobiel-contactkeuze .keuze-kop { font-weight: 700; color: var(--ink); margin-bottom: 10px; }
  .mobiel-contactkeuze .keuze-of { font-size: 0.88rem; color: var(--muted); margin-top: 10px; margin-bottom: 0; text-align: center; }
  .alleen-desktop { display: none; }
}

/* Nederlandse uploadbediening (P7) — native input blijft bruikbaar */
.upload-veld { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
/* Specifieker dan .veld input (die zet width:100% en padding) */
.veld .upload-input, .upload-input {
  position: absolute; width: 1px; height: 1px; min-height: 0;
  padding: 0; border: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.upload-knop {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: 10px 20px; border-radius: 11px; border: 2px solid var(--petrol);
  font-weight: 700; font-size: 0.95rem; color: var(--petrol); background: var(--wit); cursor: pointer;
}
.upload-knop:hover { background: var(--petrol); color: #fff; }
.upload-input:focus-visible + .upload-knop { outline: 3px solid var(--goud); outline-offset: 2px; }
.upload-status { font-size: 0.9rem; color: var(--muted); min-width: 0; overflow-wrap: anywhere; }

/* Drie afzonderlijke foto-uploadvelden */
.foto-groep { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.foto-groep legend { font-weight: 600; color: var(--ink); padding: 0 6px; font-size: 0.96rem; }
.upload-rij { margin-bottom: 12px; }
.upload-rij .upload-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.upload-wis { min-height: 44px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--wit); color: var(--petrol); font-weight: 600; font-size: 0.85rem; cursor: pointer; }
.upload-wis:hover { border-color: var(--petrol); }
.veld-totaal { font-size: 0.9rem; font-weight: 600; color: var(--petrol); margin-top: 4px; }
.foto-groep .veld-hint { margin-top: 6px; }
.foto-groep .veld-fout { margin-top: 4px; }
.foto-groep[data-foto-groep] .veld-fout:empty { display: none; }

/* Scroll-lock als het mobiele menu open is.
   position:fixed + negatieve top (gezet door JS) voorkomt dat de
   achterliggende pagina kan scrollen — óók in mobiele browsers.
   Bij sluiten herstelt JS de exacte scrollpositie.               */
html.menu-open { overflow: hidden; overscroll-behavior: none; }
body.menu-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }

/* Juridische pagina's */
.jur { max-width: 800px; }
.jur h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.jur h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.jur p, .jur li { font-size: 0.98rem; }
.jur ul, .jur ol { padding-left: 22px; color: var(--muted); display: grid; gap: 6px; margin: 10px 0; }
.jur .bijgewerkt { font-size: 0.86rem; color: var(--muted); }

/* Print / opslaan-balk op juridische pagina's */
.doc-acties { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 4px; }
.doc-acties .btn { min-height: 44px; padding: 10px 18px; font-size: 0.92rem; }

/* Printweergave: alleen de inhoud, geen navigatie/footer/knoppen */
@media print {
  .site-header, .site-footer, .wa-float, .mobiel-balk, .doc-acties, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .sectie { padding: 0; }
  .hero { background: #fff; border: 0; padding: 0 0 12pt; }
  .jur { max-width: none; }
  a { color: #000; text-decoration: underline; }
  h1, h2, h3 { color: #000; }
  .note { border: 1px solid #999; background: #f4f4f4; }
}
