:root {
  --bg: #f4efe9;
  --bg-strong: #efe4d7;
  --panel: #fffaf3;
  --panel-strong: #f6ecd8;
  --text: #1c1b1a;
  --muted: #5a5147;
  --line: rgba(28, 27, 26, 0.12);
  --primary: #D4B50F;
  --primary-dark: #B79B0D;
  --accent: #d66b2f;
  --accent-dark: #a94a1b; /* B9: dieper burnt-orange — >=4,5:1 als witte tekst erop, en als tekst op cream */
  --forest: #3a4635;
  --sand: #e7d5b5;
  --shadow: 0 20px 40px rgba(28, 27, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;

  /* --- B8 fase 1: foundations & tokens (additief, nog niet geconsumeerd) --- */

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

  /* Elevation — 3 niveaus (waarden = huidige rendering) */
  --elev-1: 0 14px 30px rgba(28, 27, 26, 0.03);
  --elev-2: 0 20px 40px rgba(28, 27, 26, 0.12); /* gelijk aan --shadow */
  --elev-3: 0 18px 38px rgba(28, 27, 26, 0.04);
  --glow-gold: 0 14px 32px rgba(212, 181, 15, 0.28);
  --glow-accent: 0 16px 34px rgba(214, 107, 47, 0.14);

  /* Focus */
  --focus-ring: 0 0 0 3px rgba(212, 181, 15, 0.55);
}

* { box-sizing: border-box; }

/* B8 fase 1: screenreader-only utility (nog niet gebruikt) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

/* B8 fase 10: anker-/skip-doelen niet onder de sticky header laten vallen */
:where(main, section, [id]) {
  scroll-margin-top: 120px;
}

/* B8 fase 10: skip-link — onzichtbaar tot toetsenbordfocus (DNA A10 / DoD) */
.skip-link {
  position: fixed;
  top: 0;
  left: 16px;
  z-index: 200;
  transform: translateY(-110%);
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.15s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
  box-shadow: var(--elev-2);
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px)); /* B9: 24px zijmarge op mobiel/tablet i.p.v. 16px (8-punts schaal) */
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 233, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translateY(2px);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 88px;
  height: auto;
  padding: 10px 0;
  color: var(--text);
  line-height: 0;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.75;
  letter-spacing: -0.095em;
}

.brand-name {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.09em;
}

.brand-name.alt {
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
}

.peak, .cutout {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0;
  /* B8 fase 4: tap target >=44x44px (DNA A10 / E7) zonder de header-layout te
     verschuiven. Box groeit naar 44x44 (border-box); bars blijven rechts (flex-end)
     en verticaal gecentreerd, dus visueel identiek. */
  min-width: 44px;
  min-height: 44px;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px; /* B8 fase 11: pill-uiteinde i.p.v. losse 10px (0px shift) */
}

/* B8 fase 4: zichtbare focus op navigatie, merk/logo en footerlinks (DNA A10).
   Zelfde palet-logica als de knop-focusring (M1): --text op licht, --bg op donker.
   Bewust outline (i.p.v. box-shadow) omdat een offset-outline beter past bij
   inline tekstlinks. */
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--bg);
  outline-offset: 3px;
  border-radius: 4px;
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(17, 18, 16, 0.45), rgba(17, 18, 16, 0.2)),
    url('Lazyjackvrijstaand.jpg') center/cover no-repeat;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 620px;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 18px;
}

.eyebrow-dark {
  color: var(--muted); /* B8 fase 6: leesbaar op cream (~7:1) i.p.v. --primary-dark ~2,4:1 (E2). Eyebrow-discipline/schrappen waar zonder functie: fase 8. */
}

.hero-copy h1,
.page-hero h1,
.product-intro-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800; /* B8 fase 2: display-rol = 800 (DESIGN.md); was pre-existing 700 */
  line-height: 1.02;
  letter-spacing: -0.065em;
}

/* B8 fase 8: lichte product-H1 op de Campooz-pagina (E4b / K3).
   Zelfde H1-signatuur (P1), op cream i.p.v. de donkere hero. */
.product-intro-hero {
  margin-bottom: var(--space-5);
}
.product-intro-hero h1 {
  margin-bottom: 0;
  color: var(--text);
}

.hero-copy p,
.page-hero p {
  margin: 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero p {
  color: rgba(28, 27, 26, 0.75);
}

.hero-usp-box {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  max-width: 470px;
  display: grid;
  gap: 10px;
}

.usp-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  text-transform: lowercase;
  padding-left: 28px;
  line-height: 1.4;
}

.usp-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3bb273;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(212, 181, 15, 0.28);
}

.button.primary:hover {
  background: var(--primary-dark);
}

/* B9: omrande "ghost" is nu de STANDAARD secondary-knop — leesbaar op cream.
   De doorschijnend-witte variant staat alleen nog op donkere vlakken (hieronder). */
.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.button.secondary:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Doorschijnend-wit alleen op donkere gronden (hero, forest-panelen). */
.hero .button.secondary,
.booking-panel .button.secondary,
.product-cta-box .button.secondary,
.process-cta-section .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

/* --- B8 fase 3: interactiestates knoppen (E1/F/P3) ------------------------------
   Kleur, tekstkleur en vorm van .button.primary blijven ongewijzigd (P3).
   De toegankelijkheidsinspanning landt in focus/active/disabled/loading. --- */
.button {
  min-height: 44px; /* touch target — DNA A8 / DESIGN.md; raakt bestaande knophoogtes niet */
  cursor: pointer;
}

/* Zichtbare merk-focusring — dubbele ring (palet-kleuren: --bg-scheiding + --text-ring)
   zodat hij leesbaar blijft op cream én op de donkere hero/forest-vlakken.
   WCAG 2.4.7 / DNA A10. GOEDGEKEURDE afwijking van IMPLEMENTATION-PLAN E1
   ("box-shadow: var(--focus-ring)"): de effen 55%-gouden ring is onzichtbaar op de
   gouden CTA. Vastgelegd in IMPLEMENTATION-PLAN.md §M (B9 Fase 3, 2026-09-02).
   Token --focus-ring in :root blijft ongewijzigd (spoort met design.json). */
.button:focus-visible {
  outline: 2px solid transparent; /* forced-colors mode */
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text);
}
.button.primary:focus-visible {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text), var(--glow-gold);
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[disabled],
.button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.button:disabled:hover,
.button[disabled]:hover,
.button.is-disabled:hover {
  transform: none;
}

.button.is-loading {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}
.button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: button-spin 0.6s linear infinite;
  /* B8 fase 10: prefers-reduced-motion-alternatief voor deze spinner nog toevoegen */
}
@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.hero-trust li {
  position: relative;
  padding-left: 20px;
}

.hero-trust li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.hero-card {
  background: rgba(255, 250, 243, 0.97); /* B9: net iets dekkender — rand niet meer nodig */
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: var(--space-4); /* B8 fase 3: kaartpadding uniform 24px (was 28px 24px) */
  color: var(--text);
}

.card-label {
  margin: 0 0 20px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.mini-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rating-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.model-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-metric strong {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1.1;
}

.model-row strong {
  font-size: clamp(1.6rem, 1.8vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.google-logo {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(28, 27, 26, 0.08));
}

.mini-metric span {
  color: var(--muted);
}

.trust-strip {
  background: var(--forest);
  color: #fff;
  padding: 20px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.trust-grid strong {
  font-size: 1.6rem;
}

.section {
  padding: 96px 0;
}

.accent-band {
  padding: 10px 0 0;
}

/* Homepage accent-band: oranje tegel links, off-road foto rechts */
.accent-band-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.accent-band-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.9 / 1;
  min-height: 180px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.accent-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-dark), #8f3d15); /* B9: witte kop haalt nu >=4,5:1 (was ~3,4:1) */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px; /* B8 fase 11: bewuste uitzondering (K7) — naar --radius-lg (28px) geeft ~4px zichtbare shift */
  padding: 22px 24px;
  box-shadow: 0 16px 34px rgba(169, 74, 27, 0.18);
}

.accent-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}


.alt-section {
  background: rgba(255, 255, 255, 0.42);
}

.feeling-section {
  padding-top: var(--space-6); /* B8 fase 6: 48px op de schaal (E11, 0px shift) */
}

@media (max-width: 760px) {
  .accent-band-row {
    grid-template-columns: 1fr;
  }
  .accent-band-photo img {
    aspect-ratio: 16 / 10;
  }
}

.section-heading {
  max-width: 1000px;
  margin-bottom: 32px;
}

/* B9: tweede thema-kop binnen dezelfde sectie — scheidt de blokken zonder
   een dubbele 96px-sectieband (DESIGN.md: geen dode witruimtebanden) */
.section-heading-sub {
  margin-top: var(--space-7);
}

/* B9: sectie sluit strak aan op de vorige cream-sectie — de vorige sectie levert
   al 96px onder-ruimte; zo blijft de tussenruimte ~1 schaalstap i.p.v. 192px
   (DESIGN.md: geen dode witruimtebanden). */
.section-flush-top {
  padding-top: var(--space-3);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2 {
  white-space: nowrap;
}

.section-heading h2,
.content-panel h2,
.comparison-card h3,
.price-card h3,
.booking-panel h3 {
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 3vw, 3rem);
}

.feature-grid,
.process-grid,
.pricing-layout,
.comparison-grid,
.feature-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.step-card,
.price-card,
.comparison-card,
.spec-card,
.booking-panel {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.03);
}

.feature-card,
.step-card,
.comparison-card,
.spec-card,
.booking-panel,
.icon-tile,
.info-block {
  padding: var(--space-4); /* B8 fase 3: kaartpadding uniform 24px (was 28px 24px) */
}

.icon-badge,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card h3,
.step-card h3,
.icon-tile h3,
.info-block h3,
.story-copy h2,
.about-copy h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.3; /* B8 fase 2: expliciete subkop-line-height (DESIGN.md subheading); was geerfd 1.6. .story/.about h2 blijven 1.1 via latere regel */
}

.feature-card p,
.step-card p,
.content-panel p,
.comparison-card li,
.spec-card dd,
.booking-form label {
  color: var(--muted);
}

.split-layout,
.specs-layout,
.two-col-copy,
.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.content-panel {
  padding-right: 12px;
}

.trust-line {
  margin: 20px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.trust-line a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 500;
}

/* Uitvoeringen-sectie (de-campooz): kaartenrij onder het intro-blok */
.split-layout + .feature-grid {
  margin-top: var(--space-6);
}

/* Sectie-intro onder een sectiekop */
.section-heading p {
  margin: 0;
  color: var(--muted);
}

/* Standaard-uitrusting: fotokaarten (de-campooz) */
.equip-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 16px;
}

/* Uitbreidingen-kaarten (de-campooz): ongelijke tekstlengte -> kaarten op eigen hoogte */
.uitbreiding-grid {
  align-items: start;
}
.uitbreiding-grid .card-sub {
  margin: -6px 0 12px;
  font-weight: 600;
  color: var(--muted);
}

/* "Ook standaard aanwezig"-lijstje in de plattegrond-tegel (de-campooz) */
.check-list.spec-check {
  margin-top: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 107, 47, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
}

.detail-process .large-step {
  min-height: 150px;
}

.detail-process .step-number {
  background: var(--accent-dark); /* B9: wit cijfer haalt nu >=4,5:1 */
  color: #fff;
}

.process-steps-section {
  padding-top: 24px;
}

.process-photo-section {
  padding: 0 0 48px;
}

.process-photo {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.process-faq-section {
  padding-top: var(--space-5); /* B8 fase 6: 32px op de schaal (E11, 0px shift) */
}

.process-cta-section {
  padding-top: 40px;
}

.process-cta-section .cta-box {
  background: var(--forest);
  border-color: rgba(255, 255, 255, 0.18);
  padding-top: 18px;
  padding-bottom: 18px;
}

.process-cta-section .cta-box h2 {
  color: #fff;
}

.process-cta-section .cta-box .eyebrow {
  color: var(--sand);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* B9: kop links, sfeerfoto (iets kleiner) rechts — zelfde asymmetrische
   grammatica als .story-grid; kaarten eronder blijven ongewijzigd. */
.feeling-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}
.feeling-head-grid .section-heading {
  margin-bottom: 0;
}
.feeling-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.08);
}
@media (max-width: 900px) {
  .feeling-head-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-card.good {
  background: var(--accent-dark); /* B9: witte bodytekst haalt nu >=4,5:1 (was --accent ~4,2:1) */
  color: #fff;
}

.comparison-card.good li {
  color: #fff;
}

.comparison-card.good li::before {
  color: #fff;
}

.comparison-card.caution {
  background: rgba(214, 107, 47, 0.06);
}

.comparison-image {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.comparison-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.comparison-card li {
  padding-left: 20px;
  position: relative;
}

.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.spec-card h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  line-height: 1.3; /* B8 fase 2: expliciete subkop-line-height; was geerfd 1.6 */
}

.spec-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  font-weight: 700;
  color: var(--text);
}

.spec-list dd {
  margin: 0;
  text-align: right;
}

.product-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.product-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.product-intro p {
  margin: 0;
  color: var(--muted);
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.product-intro + .product-image-grid {
  margin-bottom: 32px;
}

.product-image-grid img,
.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.08);
}

.product-image-grid img {
  object-fit: cover;
}

.product-image-placeholder {
  background: var(--panel-strong);
  border: 1px dashed rgba(28, 27, 26, 0.22);
}

.product-spec-card {
  max-width: 860px;
}

.product-specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}

.product-specs-layout .product-spec-card {
  max-width: none;
}

.floorplan-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.03);
  padding: 24px;
}

.floorplan-tile img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.floorplan-extra .card-label {
  margin: 0 0 12px;
}

/* Fotoblok CAMPING-uitvoering (de-campooz) — zelfde behandeling als de product-foto's */
.uitvoering-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.08);
}

.page-hero {
  padding: 104px 0 72px;
  background: linear-gradient(180deg, rgba(236, 223, 210, 0.7), rgba(244, 239, 233, 0.94));
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero .eyebrow {
  color: var(--muted); /* B8 fase 6: leesbaar op de lichte page-hero-band (E2) */
}

.page-hero h1 {
  color: var(--text);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.compact-hero {
  background: linear-gradient(180deg, rgba(236, 223, 210, 0.7), rgba(244, 239, 233, 0.94));
}

.process-hero {
  background: linear-gradient(180deg, rgba(214, 107, 47, 0.22), rgba(244, 239, 233, 0.94));
}

.booking-hero {
  background: linear-gradient(180deg, rgba(223, 221, 210, 0.7), rgba(244, 239, 233, 0.94));
}

.about-hero {
  background: linear-gradient(180deg, rgba(235, 223, 201, 0.7), rgba(244, 239, 233, 0.94));
}

.cta-box, .showcase-box {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(28, 27, 26, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 28px;
}

/* B8 fase 6: cta-box niet langer als smal 760px-eiland maar op normale
   contentbreedte (E10). .narrow blijft elders (page-hero-intro) intact. */
.cta-box.narrow {
  max-width: none;
}

.product-cta-box {
  background: var(--forest);
  border-color: rgba(255, 255, 255, 0.18);
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-cta-box .eyebrow {
  margin-bottom: 8px;
  color: var(--sand);
}

.product-cta-box h2 {
  color: #fff;
}

.spec-quickview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3); /* B8 fase 11: 16px op de schaal (was 18px) */
}

.spec-quickview div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}

.spec-quickview strong {
  font-size: 1.7rem;
}

.booking-section {
  padding: 20px 0 0;
}

/* B9: geen kaart-in-kaart meer — .booking-panel (forest) is de kaart, .booking-widget alleen wrapper */
.booking-widget {
  padding: 0;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr; /* B8 fase 11 (R2): prijzen-paneel éénkoloms; homepage-widget krijgt zijn split terug via .booking-widget .booking-panel */
  gap: 28px;
  align-items: center;
  padding: var(--space-4);
  background: var(--forest);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

/* B8 fase 11: alleen de homepage-boekingswidget is copy | form naast elkaar */
.booking-widget .booking-panel {
  grid-template-columns: 1.1fr 1.6fr;
}

.booking-copy {
  min-width: 0;
}

.booking-copy .eyebrow {
  color: var(--sand);
}

.booking-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.booking-copy p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
}

/* B8 fase 8: alleen de datum-check-widget op de homepage is een 3-koloms rij;
   het prijzen-formulier (bare <label>s) blijft éénkoloms. Was ongescoped en
   maakte het prijzen-formulier ~50px breed. */
.booking-widget .booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(28, 27, 26, 0.14);
  border-radius: var(--radius-sm); /* B8 fase 11: 12px op de schaal (0px shift) */
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
}

.booking-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.booking-actions .button {
  width: 100%;
  min-height: 50px;
  cursor: pointer;
  border: 0;
}

@media (max-width: 900px) {
  .booking-widget .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-widget .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    justify-content: stretch;
  }
}

.feature-icons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-tile {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 107, 47, 0.12);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}

/* B8 fase 6: inline Lucide-SVG i.p.v. Unicode-glyphs (E9 / DNA A10).
   Cirkel, accent-tint en kleur (currentColor = --primary-dark) ongewijzigd. */
.icon-circle svg {
  width: 26px;
  height: 26px;
  display: block;
}

.icon-tile h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin: 0;
}

.story-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.about-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.story-copy,
.about-copy {
  max-width: 760px;
}

.story-copy h2,
.about-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.story-copy p,
.about-copy p,
.info-block p {
  color: var(--muted);
  margin: 0 0 18px;
}

.story-copy a,
.about-copy a,
.info-block a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.story-visual {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(58, 70, 53, 0.25), rgba(58, 70, 53, 0.6)),
    url('allroader-vouwwagen.webp') center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow);
}

.story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 250, 243, 0.9);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
  border: 6px solid rgba(214, 107, 47, 0.18);
}

.signature {
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}

/* B8 fase 6: dode cream-band tussen 'over ons' en de drone-foto inkorten (E11).
   Het fotoblok eronder levert eigen visuele massa; 48px is voldoende, 96px was dood.
   Section-ritme 96/72 elders blijft (P7). */
.about-section {
  padding-bottom: var(--space-6);
}

.help-section {
  padding-top: var(--space-6); /* B9: 48px — de drone-band eronder is weg */
}

.info-stack {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.info-block {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-form {
  display: grid;
  gap: var(--space-3); /* B8 fase 11: 16px op de schaal (was 14px) */
  margin-top: 16px;
}

/* B8 fase 7: zichtbare labels + echte mailto-verzending (E3 / K1 / DNA A9) */
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm); /* B8 fase 11: 12px op de schaal (0px shift) */
  padding: 0.8rem 0.95rem;
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.contact-form button {
  width: fit-content;
}

.form-note {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  overflow-wrap: break-word;
}

.form-note a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-category + .faq-category {
  margin-top: 40px;
}

.faq-category h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  line-height: 1.3; /* B8 fase 2: expliciete subkop-line-height; was geerfd 1.6 */
}

.process-faq-section .faq-category h3 {
  color: var(--accent-dark); /* B9: >=4,5:1 op cream (was --accent ~3,4:1) */
}

.faq-list details {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-list ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq-list li + li {
  margin-top: 4px;
}

.faq-map {
  width: 100%;
  height: 280px;
  margin-top: 16px;
  border: 0;
  border-radius: var(--radius-sm);
}

.price-card {
  padding: var(--space-4); /* B8 fase 3: kaartpadding uniform 24px (was 28px 24px) */
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(214, 107, 47, 0.12), rgba(255, 250, 243, 0.97));
  border-color: rgba(214, 107, 47, 0.25);
}

.price-tag {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
}

.price-amount {
  margin: 20px 0 18px;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.price-amount span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: var(--space-2); /* B8 fase 11: 8px op de schaal (was 10px) */
  color: var(--muted);
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.booking-form {
  display: grid;
  gap: var(--space-3); /* B8 fase 11: 16px op de schaal (was 18px) */
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

/* B8 fase 7: het booking-panel heeft een forest-achtergrond — kop, labels en
   fallback-noot moeten licht zijn om leesbaar te zijn (DNA A9, was donker-op-donker). */
.booking-panel h3,
.booking-panel .booking-form label,
.booking-panel .booking-field label {
  color: #fff;
}

.booking-panel .form-note,
.booking-panel .form-note a {
  color: var(--sand);
}

.booking-form input {
  width: 100%;
  border-radius: var(--radius-sm); /* B8 fase 11: 12px op de schaal (0px shift) */
  border: 1px solid var(--line);
  background: #fff;
  min-height: 46px;
  padding: 0.8rem 0.95rem;
}

/* --- B8 fase 3: focus-state formuliervelden (DNA A9 / DESIGN.md) ---------------
   Zelfde dubbele merk-focusring als de knoppen; rand krijgt de donkerdere
   primary-tint. Labels/validatie/echte submit volgen in fase 7. --- */
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.booking-field input:focus-visible,
.booking-field select:focus-visible,
.booking-form input:focus-visible {
  outline: 2px solid transparent; /* forced-colors mode */
  outline-offset: 1px;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text);
}

.full-width {
  width: 100%;
}

.site-footer {
  background: #1c1b1a;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3); /* B8 fase 11: 16px op de schaal (was 18px) */
  flex-wrap: wrap;
}

.footer-brand {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 980px) {
  .hero-inner,
  .split-layout,
  .specs-layout,
  .comparison-grid,
  .pricing-layout,
  .process-grid,
  .feature-grid,
  .trust-grid,
  .feature-icons,
  .story-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    background: rgba(255, 250, 243, 0.98);
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: var(--radius-md); /* B8 fase 11: 18px op de schaal (0px shift) */
    padding: 18px 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 700px) {
  .section-heading.centered h2 {
    white-space: normal;
  }

  .product-image-grid {
    grid-template-columns: 1fr;
  }

  .product-specs-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid,
  .comparison-grid,
  .pricing-layout,
  .split-layout,
  .specs-layout,
  .trust-grid,
  .two-col-copy,
  .feature-icons,
  .story-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .cta-box,
  .showcase-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
  }

  .site-header {
    position: sticky;
  }

  .brand-text {
    font-size: 0.62rem;
  }
}

/* B8 fase 10: volledige prefers-reduced-motion-behandeling (E6 / P12 / DNA A10).
   Beweging weg, statuswijziging behouden: .01ms i.p.v. 0, underline/CTA blijven
   functioneel, alleen zonder animatie. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .site-nav a::after {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
  .button.is-loading::after {
    animation: none;
  }
  .button.is-loading {
    color: inherit !important; /* geen spinner => label zichtbaar houden */
  }
}
