/* AUTO-GENERATED — bewerk de bronbestanden en draai scripts/build-css.js */

/* ==== assets/css/design-tokens.css ==== */
/**
 * Vloeren Kameraad — Design Tokens
 * Alle CSS custom properties afgeleid van de React/Tailwind implementatie.
 * Gebruik: @import 'design-tokens.css'; in je WordPress theme style.css
 *
 * Design richting: "Premium Materiaal — Scandinavisch Vakmanschap"
 */

:root {
  /* ─────────────────────────────────────────────────────────────────────────
   * KLEURENPALET
   * Gebaseerd op oklch() waarden uit index.css en Tailwind config
   * ───────────────────────────────────────────────────────────────────────── */

  /* Primaire kleuren — exacte oklch (gelijk aan inline-waarden landingspagina's) */
  --color-charcoal:        oklch(0.12 0.005 65);   /* donker achtergrond */
  --color-charcoal-mid:    oklch(0.18 0.010 65);   /* kaarten op donker */
  --color-charcoal-light:  oklch(0.42 0.010 65);   /* borders op donker */

  /* Goud accent */
  --color-gold:            oklch(0.68 0.08 75);    /* primaire accent */
  --color-gold-dark:       oklch(0.55 0.08 75);    /* hover staat */
  --color-gold-light:      oklch(0.82 0.06 75);    /* lichte variant */

  /* Off-white / cream */
  --color-cream:           oklch(0.98 0.008 75);   /* lichte achtergrond */
  --color-cream-mid:       oklch(0.92 0.006 75);   /* borders op licht */
  --color-cream-dark:      oklch(0.90 0.008 75);   /* subtiele tekst op donker — opgehoogd voor contrast */

  /* Tekst — contrast verhoogd voor WCAG AA-leesbaarheid (subtekst was te licht/grijzig) */
  --color-text-primary:    oklch(0.12 0.005 65);   /* hoofdtekst */
  --color-text-secondary:  oklch(0.45 0.010 65);   /* subtekst op licht (was 0.55) */
  --color-text-muted:      oklch(0.50 0.015 65);   /* placeholder / minst belangrijk (was 0.60) */
  --color-text-on-dark:    oklch(0.94 0.008 75);   /* tekst op donker */

  /* Functionele kleuren */
  --color-green:           oklch(0.55 0.15 145);   /* succes / actie */
  --color-green-dark:      oklch(0.35 0.15 145);   /* donkere variant */
  --color-blue:            oklch(0.50 0.12 220);   /* info */
  --color-blue-dark:       oklch(0.35 0.12 220);   /* donkere variant */
  --color-orange:          oklch(0.55 0.15 30);    /* waarschuwing */

  /* Wit */
  --color-white:           #ffffff;

  /* ─────────────────────────────────────────────────────────────────────────
   * TYPOGRAFIE
   * Lettertypen: Libre Baskerville (koppen) + Nunito (body)
   * ───────────────────────────────────────────────────────────────────────── */

  --font-display:   'Libre Baskerville', Georgia, serif;
  --font-body:      'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Groottes (mobile-first, rem) */
  --text-xs:        0.75rem;    /* 12px */
  --text-sm:        0.875rem;   /* 14px */
  --text-base:      1rem;       /* 16px */
  --text-lg:        1.125rem;   /* 18px */
  --text-xl:        1.25rem;    /* 20px */
  --text-2xl:       1.5rem;     /* 24px */
  --text-3xl:       1.875rem;   /* 30px */
  --text-4xl:       2.25rem;    /* 36px */
  --text-5xl:       3rem;       /* 48px */
  --text-6xl:       3.75rem;    /* 60px */

  /* Gewichten */
  --font-normal:    400;
  --font-medium:    500;
  --font-semibold:  600;
  --font-bold:      700;

  /* Regelafstand */
  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;

  /* Letter-spacing */
  --tracking-tight:  -0.025em;
  --tracking-normal:  0em;
  --tracking-wide:    0.025em;
  --tracking-wider:   0.05em;
  --tracking-widest:  0.1em;

  /* ─────────────────────────────────────────────────────────────────────────
   * SPACING
   * Gebaseerd op 4px grid (0.25rem = 4px)
   * ───────────────────────────────────────────────────────────────────────── */

  --space-1:   0.25rem;   /* 4px */
  --space-2:   0.5rem;    /* 8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-14:  3.5rem;    /* 56px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */

  /* ─────────────────────────────────────────────────────────────────────────
   * LAYOUT
   * ───────────────────────────────────────────────────────────────────────── */

  --container-max:    1280px;
  --container-pad:    1.5rem;    /* 24px horizontale padding */
  --container-pad-lg: 2rem;      /* 32px op desktop */

  /* ─────────────────────────────────────────────────────────────────────────
   * BORDERS & RADIUS
   * ───────────────────────────────────────────────────────────────────────── */

  --radius-sm:   0.375rem;  /* 6px */
  --radius-md:   0.5rem;    /* 8px */
  --radius-lg:   0.75rem;   /* 12px */
  --radius-xl:   1rem;      /* 16px */
  --radius-2xl:  1.25rem;   /* 20px */
  --radius-full: 9999px;    /* pill */

  --border-color:       var(--color-cream-mid);
  --border-color-dark:  var(--color-charcoal-light);

  /* ─────────────────────────────────────────────────────────────────────────
   * SHADOWS
   * ───────────────────────────────────────────────────────────────────────── */

  --shadow-sm:   0 1px 2px rgba(26, 26, 24, 0.05);
  --shadow-md:   0 4px 6px rgba(26, 26, 24, 0.07);
  --shadow-lg:   0 10px 15px rgba(26, 26, 24, 0.10);
  --shadow-xl:   0 20px 25px rgba(26, 26, 24, 0.12);
  --shadow-2xl:  0 25px 50px rgba(26, 26, 24, 0.20);

  /* ─────────────────────────────────────────────────────────────────────────
   * TRANSITIONS
   * ───────────────────────────────────────────────────────────────────────── */

  --transition-fast:    150ms ease;
  --transition-normal:  200ms ease;
  --transition-slow:    300ms ease;
  --transition-slower:  500ms ease;

  /* ─────────────────────────────────────────────────────────────────────────
   * BREAKPOINTS (voor gebruik in JS / media queries)
   * ───────────────────────────────────────────────────────────────────────── */
  /* sm: 640px, md: 768px, lg: 1024px, xl: 1280px, 2xl: 1440px */

  /* ─────────────────────────────────────────────────────────────────────────
   * HEADER
   * ───────────────────────────────────────────────────────────────────────── */

  --header-height:          80px;
  --header-height-mobile:   64px;
  --topbar-height:          36px;   /* Announcement bar */
  --header-bg:              var(--color-white);
  --header-shadow:          0 2px 24px rgba(26, 26, 24, 0.10);
  --topbar-bg:              var(--color-charcoal);
  --topbar-text:            var(--color-cream-dark);

  /* ─────────────────────────────────────────────────────────────────────────
   * HERO SECTIES
   * ───────────────────────────────────────────────────────────────────────── */

  --hero-min-height:        580px;
  --hero-min-height-lg:     680px;
  --hero-overlay-start:     rgba(26, 26, 24, 0.97);
  --hero-overlay-mid:       rgba(26, 26, 24, 0.55);
  --hero-overlay-end:       rgba(26, 26, 24, 0.15);

  /* ─────────────────────────────────────────────────────────────────────────
   * STATS BAR
   * ───────────────────────────────────────────────────────────────────────── */

  --statsbar-bg:            var(--color-gold);
  --statsbar-text:          var(--color-charcoal);
  --statsbar-label:         rgba(26, 26, 24, 0.85);   /* contrast verhoogd op goud (was 0.6 = onleesbaar) */
  --statsbar-divider:       rgba(160, 130, 40, 0.5);

  /* ─────────────────────────────────────────────────────────────────────────
   * SECTIES
   * ───────────────────────────────────────────────────────────────────────── */

  --section-pad-y:          var(--space-24);   /* 96px */
  --section-pad-y-sm:       var(--space-16);   /* 64px */
  --section-bg-light:       var(--color-cream);
  --section-bg-white:       var(--color-white);
  --section-bg-dark:        var(--color-charcoal);

  /* ─────────────────────────────────────────────────────────────────────────
   * KAARTEN
   * ───────────────────────────────────────────────────────────────────────── */

  --card-bg:                var(--color-white);
  --card-border:            1px solid var(--color-cream-mid);
  --card-radius:            var(--radius-2xl);
  --card-shadow:            var(--shadow-sm);
  --card-shadow-hover:      var(--shadow-lg);
  --card-pad:               var(--space-6);

  /* ─────────────────────────────────────────────────────────────────────────
   * FORMULIEREN
   * ───────────────────────────────────────────────────────────────────────── */

  --input-height:           44px;
  --input-pad:              0.625rem 0.75rem;
  --input-border:           1px solid #d4cfc4;
  --input-border-focus:     1px solid var(--color-gold);
  --input-radius:           var(--radius-md);
  --input-bg:               var(--color-cream);
  --input-bg-focus:         var(--color-white);
  --input-text:             var(--color-text-primary);
  --input-placeholder:      var(--color-text-muted);
  --input-shadow-focus:     0 0 0 3px rgba(201, 168, 76, 0.15);

  /* ─────────────────────────────────────────────────────────────────────────
   * KNOPPEN
   * ───────────────────────────────────────────────────────────────────────── */

  --btn-pad:                0.75rem 1.5rem;
  --btn-pad-lg:             1rem 2rem;
  --btn-radius:             var(--radius-lg);
  --btn-font:               var(--font-body);
  --btn-weight:             var(--font-bold);
  --btn-transition:         var(--transition-normal);

  /* Primaire knop (groen) */
  --btn-primary-bg:         #3d8c5a;
  --btn-primary-text:       var(--color-white);
  --btn-primary-bg-hover:   #2a6040;

  /* Goud knop */
  --btn-gold-bg:            var(--color-gold);
  --btn-gold-text:          var(--color-charcoal);
  --btn-gold-bg-hover:      oklch(0.76 0.08 75);

  /* Secundaire knop (outline) */
  --btn-secondary-border:   1px solid var(--color-charcoal-light);
  --btn-secondary-text:     var(--color-text-primary);
  --btn-secondary-bg-hover: var(--color-charcoal);
  --btn-secondary-text-hover: var(--color-white);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * DARK MODE OVERRIDES (optioneel — als WordPress theme dark mode ondersteunt)
 * ─────────────────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  /* Niet geïmplementeerd — site gebruikt bewust licht design */
}

/* ==== assets/css/typography.css ==== */
/**
 * Vloeren Kameraad — Typography
 * Alle typografie-stijlen. Importeer na design-tokens.css.
 *
 * Lettertypen laden via WordPress wp_enqueue_style() of functions.php:
 * Google Fonts: Libre+Baskerville:wght@400;700&family=Nunito:wght@400;500;600;700
 */

/* ─────────────────────────────────────────────────────────────────────────────
 * SELF-HOSTED FONTS (latin subset, woff2) — geen externe Google-request
 * ─────────────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/LibreBaskerville-400i.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/LibreBaskerville-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/LibreBaskerville-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Nunito-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Nunito-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Nunito-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Nunito-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * BASIS RESET & BODY
 * ─────────────────────────────────────────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * KOPPEN — Libre Baskerville
 * ─────────────────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-4xl);
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

/* Tablet (≥768px) */
@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * PARAGRAFEN & TEKST
 * ─────────────────────────────────────────────────────────────────────────── */

p {
  font-family: var(--font-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

p + p {
  margin-top: var(--space-4);
}

strong, b {
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
}

em, i {
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * LINKS
 * ─────────────────────────────────────────────────────────────────────────── */

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * LIJSTEN
 * ─────────────────────────────────────────────────────────────────────────── */

ul, ol {
  padding-left: var(--space-6);
}

li {
  font-family: var(--font-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

/* Unstyled lijst (voor nav, cards etc.) */
.list-none {
  list-style: none;
  padding-left: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SPECIALE TEKST-KLASSEN
 * ─────────────────────────────────────────────────────────────────────────── */

/* Section label — kleine gouden uppercase tekst boven koppen */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}

/* Goud geaccentueerde kop-span */
.text-gold {
  color: var(--color-gold);
}

/* Tekst op donkere achtergrond */
.text-on-dark {
  color: var(--color-text-on-dark);
}

.text-on-dark-muted {
  color: var(--color-cream-dark);
}

/* Lead tekst (grotere intro-alinea) */
.text-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .text-lead {
    font-size: var(--text-xl);
  }
}

/* Kleine tekst */
.text-small {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.text-xs {
  font-size: var(--text-xs);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * PROSE — rijke tekstblokken (artikelen, kennisbank)
 * ─────────────────────────────────────────────────────────────────────────── */

.prose {
  max-width: 65ch;
}

.prose h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.prose h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose p {
  margin-bottom: var(--space-4);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-4);
}

.prose li {
  margin-bottom: var(--space-2);
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * BLOCKQUOTE — citaten
 * ─────────────────────────────────────────────────────────────────────────── */

blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

blockquote cite {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * BADGES & PILLS
 * ─────────────────────────────────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.badge-gold {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

.badge-dark {
  background-color: var(--color-charcoal);
  color: var(--color-gold);
}

.badge-green {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

.badge-blue {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
}

.badge-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-cream-dark);
}

/* Trust pill (kleine check + tekst) */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-cream-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * STATISTIEKEN NUMMERS
 * ─────────────────────────────────────────────────────────────────────────── */

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1;
  color: var(--color-charcoal);
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-normal);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: rgba(26, 26, 24, 0.6);
}

/* ==== assets/css/components.css ==== */
/**
 * Vloeren Kameraad — Components
 * Herbruikbare component-stijlen. Importeer na design-tokens.css en typography.css.
 * Pure CSS — geen Tailwind, geen utility classes.
 */

/* ─────────────────────────────────────────────────────────────────────────────
 * CONTAINER
 * ─────────────────────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--container-pad-lg);
    padding-right: var(--container-pad-lg);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * KNOPPEN
 * ─────────────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--btn-pad);
  border-radius: var(--btn-radius);
  font-family: var(--btn-font);
  font-size: var(--text-sm);
  font-weight: var(--btn-weight);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color var(--btn-transition),
              color var(--btn-transition),
              box-shadow var(--btn-transition),
              transform var(--btn-transition);
  white-space: nowrap;
}

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

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

/* Primaire knop — groen (CTA) */
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.btn-primary:hover {
  background-color: var(--btn-primary-bg-hover);
  color: var(--btn-primary-text);
}

/* Goud knop */
.btn-gold {
  background-color: var(--btn-gold-bg);
  color: var(--btn-gold-text);
}

.btn-gold:hover {
  background-color: var(--btn-gold-bg-hover);
  color: var(--btn-gold-text);
}

/* CTA knop — goud */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--btn-radius);
  font-family: var(--btn-font);
  font-size: var(--text-sm);
  font-weight: var(--btn-weight);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  transition: background-color var(--btn-transition),
              transform var(--btn-transition);
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: var(--btn-gold-bg-hover, oklch(0.72 0.09 75));
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
}

/* Secundaire knop — outline */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--btn-radius);
  font-family: var(--btn-font);
  font-size: var(--text-sm);
  font-weight: var(--btn-weight);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid var(--color-charcoal-light);
  color: var(--color-text-primary);
  transition: background-color var(--btn-transition),
              color var(--btn-transition),
              border-color var(--btn-transition),
              transform var(--btn-transition);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-white);
}

/* Outline op donkere achtergrond */
.btn-outline-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

/* Grote knop */
.btn-lg {
  padding: var(--btn-pad-lg);
  font-size: var(--text-base);
}

/* Volle breedte */
.btn-full {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * HERO SECTIE
 * ─────────────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

@media (min-width: 768px) {
  .hero {
    min-height: var(--hero-min-height-lg);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.12 0.005 65 / 0.97) 0%,
    oklch(0.12 0.005 65 / 0.55) 50%,
    oklch(0.12 0.005 65 / 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 15rem;  /* ~240px — ruimte voor 4-laags header (announcement + topbar + brand + nav) */
  padding-bottom: 5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  line-height: var(--leading-tight);
  max-width: 48rem;
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .hero-title { font-size: var(--text-5xl); }
}

@media (min-width: 1024px) {
  .hero-title { font-size: var(--text-6xl); }
}

.hero-title-accent {
  color: var(--color-gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-cream-dark);
  max-width: 36rem;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

.hero-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-label-row .section-label {
  margin-bottom: 0;
}

.hero-label-line {
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
}

.hero-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: oklch(0.90 0.008 75);
}

.hero-trust-icon {
  color: oklch(0.72 0.20 145);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * STATS BAR
 * ─────────────────────────────────────────────────────────────────────────── */

.stats-bar {
  background-color: var(--statsbar-bg);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats-bar-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar-item {
  padding: var(--space-6) var(--space-8);
  text-align: center;
  border-right: 1px solid var(--statsbar-divider);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--statsbar-text);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stats-bar-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-normal);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--statsbar-label);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * KAARTEN
 * ─────────────────────────────────────────────────────────────────────────── */

.card {
  background-color: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: var(--card-pad);
}

/* Product card (met hover lift) */
.product-card {
  display: block;
  text-decoration: none;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

/* Review card */
.review-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-mid);
  border-radius: var(--card-radius);
  padding: var(--space-6);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  color: var(--color-white);
  background-color: var(--color-charcoal);
  flex-shrink: 0;
}

.review-stars {
  color: var(--color-gold);
  font-size: var(--text-sm);
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  font-style: italic;
}

.review-meta {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * VOORDELEN GRID
 * ─────────────────────────────────────────────────────────────────────────── */

.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .voordelen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .voordelen-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.voordeel-item {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-mid);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.voordeel-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.voordeel-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.voordeel-item:hover .voordeel-icon {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

.voordeel-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.voordeel-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * VERGELIJKINGSTABEL
 * ─────────────────────────────────────────────────────────────────────────── */

.comparison-table {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-charcoal-light);
}

.comparison-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #2a2a26;
}

.comparison-table-header-cell {
  padding: var(--space-4);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-gold);
}

.comparison-table-header-cell:not(:last-child) {
  border-right: 1px solid var(--color-charcoal-light);
}

.comparison-table-header-cell:first-child {
  text-align: left;
  color: var(--color-cream-dark);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.comparison-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--color-charcoal-light);
}

.comparison-table-row:nth-child(even) {
  background-color: #1e1e1c;
}

.comparison-table-row:nth-child(odd) {
  background-color: #2a2a26;
}

.comparison-table-cell {
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-on-dark);
}

.comparison-table-cell:not(:last-child) {
  border-right: 1px solid var(--color-charcoal-light);
}

.comparison-table-cell:first-child {
  color: rgba(240, 237, 230, 0.7);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * PROCES TIJDLIJN
 * ─────────────────────────────────────────────────────────────────────────── */

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    gap: var(--space-4);
  }
}

.process-step {
  flex: 1;
  text-align: center;
}

.process-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

.process-step-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.process-step-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-cream-dark);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * CTA BAND
 * ─────────────────────────────────────────────────────────────────────────── */

.cta-band {
  background-color: var(--color-charcoal);
  padding: var(--space-16) 0;
  text-align: center;
}

.cta-band-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-band-title { font-size: var(--text-4xl); }
}

.cta-band-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-cream-dark);
  margin-bottom: var(--space-8);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .cta-band-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * FORMULIEREN
 * ─────────────────────────────────────────────────────────────────────────── */

.form-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-mid);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-header {
  padding: var(--space-6) var(--space-8);
  background-color: var(--color-charcoal);
}

.form-header-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
}

.form-header-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(240, 237, 230, 0.65);
  margin-top: var(--space-1);
}

.form-body {
  padding: var(--space-8);
}

.form-row {
  display: grid;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

.form-input,
.form-textarea,
.form-select {
  height: var(--input-height);
  padding: var(--input-pad);
  border: var(--input-border);
  border-radius: var(--input-radius);
  background-color: var(--input-bg);
  color: var(--input-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border: var(--input-border-focus);
  background-color: var(--input-bg-focus);
  box-shadow: var(--input-shadow-focus);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--input-placeholder);
}

.form-textarea {
  height: auto;
  min-height: 6rem;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6860' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
}

.form-checkbox-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.form-button {
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-normal);
}

.form-button-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.form-button-primary:hover {
  background-color: var(--btn-primary-bg-hover);
}

.form-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.form-error {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #c0392b;
  margin-top: var(--space-1);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * VLOERTYPE KEUZE KAARTEN (offerte formulier)
 * ─────────────────────────────────────────────────────────────────────────── */

.vloertype-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .vloertype-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vloertype-option {
  position: relative;
}

.vloertype-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.vloertype-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-cream-mid);
  background-color: var(--color-white);
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  text-align: center;
  min-height: 5rem;
}

.vloertype-option input:checked + .vloertype-label {
  border-color: var(--color-gold);
  background-color: rgba(201, 168, 76, 0.08);
}

.vloertype-label-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

.vloertype-label-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SIDEBAR KAARTEN
 * ─────────────────────────────────────────────────────────────────────────── */

.sidebar-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  overflow: hidden;
}

.sidebar-card-dark {
  background-color: var(--color-charcoal);
}

.sidebar-card-gold {
  background-color: var(--color-gold);
}

.sidebar-card-blue {
  background-color: #1e3a5f;
  border: 1px solid #2a5080;
}

.sidebar-card-light {
  background-color: var(--color-cream);
  border: 1px solid var(--color-cream-mid);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SHOWROOM SECTIE
 * ─────────────────────────────────────────────────────────────────────────── */

/* .showroom-section — overridden in nav.css for homepage 2-col grid layout */

.showroom-image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

.showroom-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  background-color: rgba(26, 26, 24, 0.85);
  backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * REGIO STEDEN GRID (pill-style — legacy)
 * ─────────────────────────────────────────────────────────────────────────── */

.steden-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 48rem;
  margin: 0 auto;
}

.stad-pill {
  padding: var(--space-2) var(--space-4) var(--space-3);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-mid);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.stad-pill:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-charcoal);
}

.stad-pill.active {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * REGIO CARD GRID (Home page — MapPin style)
 * ─────────────────────────────────────────────────────────────────────────── */

.regio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .regio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .regio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .regio-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.regio-card {
  padding: 1rem 1.25rem;
  border: 1px solid oklch(0.92 0.006 75);
  border-radius: 0.375rem;
  background: #fff;
  text-decoration: none;
  color: oklch(0.12 0.005 65);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.regio-card:hover {
  border-color: oklch(0.68 0.08 75);
  color: oklch(0.68 0.08 75);
  background: oklch(0.98 0.008 75);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SPOTLIGHT ORDER (mobile: content first, desktop: image left)
 * ─────────────────────────────────────────────────────────────────────────── */

.spotlight-content {
  order: -1;
}

@media (min-width: 1024px) {
  .spotlight-content {
    order: 2;
  }
  .spotlight-image {
    order: 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * DIENSTEN GRID (Home page — 6-col aspect-square)
 * ─────────────────────────────────────────────────────────────────────────── */

.diensten-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .diensten-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .diensten-grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * ANNOUNCEMENT BAR
 * ─────────────────────────────────────────────────────────────────────────── */

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.announcement-bar-green {
  background-color: #2a6040;
  color: var(--color-white);
}

.announcement-bar-gold {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

.announcement-bar-link {
  font-weight: var(--font-bold);
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Korte promotekst alleen op mobiel — houdt de balk op 1 regel (36px),
   zodat de hardcoded header-offset blijft kloppen. */
.announcement-short {
  display: none;
}

@media (max-width: 767px) {
  .announcement-bar {
    gap: var(--space-2);
    padding: 0 var(--space-3);
    font-size: 0.6875rem;            /* 11px — past 1 regel */
    white-space: nowrap;
  }
  .announcement-full {
    display: none;
  }
  .announcement-short {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * ACTIE POPUP
 * ─────────────────────────────────────────────────────────────────────────── */

.actie-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: oklch(0.05 0.005 65 / 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 350ms ease;
}

.actie-popup-overlay.is-visible {
  opacity: 1;
}

.actie-popup-wrapper {
  position: fixed;
  inset: 0;
  z-index: 71;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

.actie-popup {
  position: relative;
  width: 100%;
  max-width: 28rem;
  pointer-events: auto;
  transform: translateY(32px) scale(0.92);
  transition: transform 350ms ease, opacity 350ms ease;
  opacity: 0;
}

.actie-popup.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.actie-popup-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.25 0.005 65);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 150ms ease;
}

.actie-popup-close:hover {
  transform: scale(1.1);
}

.actie-popup-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 2px solid oklch(0.55 0.18 145);
}

.actie-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: oklch(0.35 0.15 145);
  color: white;
}

.actie-popup-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: oklch(1 0 0 / 0.15);
}

.actie-popup-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.actie-popup-header-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.actie-popup-body {
  padding: 1.5rem;
  background: oklch(0.10 0.005 65);
}

.actie-popup-message {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.actie-popup-message-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: oklch(0.55 0.18 145 / 0.12);
  border: 1px solid oklch(0.55 0.18 145 / 0.25);
  color: oklch(0.55 0.18 145);
}

.actie-popup-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: white;
  margin: 0 0 0.25rem;
}

.actie-popup-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: oklch(0.70 0.010 65);
  margin: 0;
}

.actie-popup-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.actie-popup-check-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.actie-popup-check-item svg {
  color: oklch(0.55 0.18 145);
  flex-shrink: 0;
}

.actie-popup-check-item span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  color: oklch(0.90 0.008 75);
}

.actie-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: oklch(0.35 0.15 145);
  color: white;
  transition: opacity 150ms ease;
  margin-bottom: 0.75rem;
}

.actie-popup-cta:hover {
  opacity: 0.9;
}

.actie-popup-dismiss {
  display: block;
  width: 100%;
  padding: 0.625rem;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  color: oklch(0.55 0.010 65);
  cursor: pointer;
  transition: color 150ms ease;
}

.actie-popup-dismiss:hover {
  color: white;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;                                     /* boven mobile-sticky-bar (999) — dekt 'm tot dismiss i.p.v. overlap */
  background-color: var(--color-charcoal);
  border-top: 1px solid var(--color-charcoal-light);
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-cream-dark);
  line-height: var(--leading-relaxed);
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-banner-accept {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-lg);
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  cursor: pointer;
  border: none;
}

.cookie-banner-decline {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-lg);
  background-color: transparent;
  border: 1px solid var(--color-charcoal-light);
  color: var(--color-cream-dark);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * TIMELINE (Over Ons)
 * ─────────────────────────────────────────────────────────────────────────── */

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--color-gold);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 5px);
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.timeline-text {
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * TEAM GRID
 * ─────────────────────────────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}

.team-member h3 {
  margin-bottom: var(--space-1);
}

.team-member .team-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.team-member .team-specialty {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * OPENINGSTIJDEN TABLE
 * ─────────────────────────────────────────────────────────────────────────── */

.openingstijden-table {
  width: 100%;
  border-collapse: collapse;
}

.openingstijden-table td {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-cream-dark);
}

.openingstijden-table td:first-child {
  font-weight: 600;
  width: 50%;
}

.openingstijden-table tr.gesloten td {
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * STATS GRID (Offerte Check)
 * ─────────────────────────────────────────────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-grid .stat-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
}

.stats-grid .stat-label {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * BN'ER GRID (Reviews)
 * ─────────────────────────────────────────────────────────────────────────── */

.bner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .bner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bner-card {
  text-align: center;
}

.bner-card .img-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.bner-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * GRID-4 UTILITY
 * ─────────────────────────────────────────────────────────────────────────── */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==== assets/css/utilities.css ==== */
/**
 * Vloeren Kameraad — Utilities
 * Minimale helper-klassen. Semantisch benoemd, geen utility-soup.
 * Importeer als laatste in je WordPress theme style.css.
 */

/* ─────────────────────────────────────────────────────────────────────────────
 * LAYOUT HELPERS
 * ─────────────────────────────────────────────────────────────────────────── */

/* Twee-koloms grid (gelijk) */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

/* Drie-koloms grid */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Vier-koloms grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Formulier + sidebar (2/3 + 1/3) */
.grid-form-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .grid-form-sidebar {
    grid-template-columns: 2fr 1fr;
  }
}

/* Content + sidebar (3/4 + 1/4) */
.grid-content-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .grid-content-sidebar {
    grid-template-columns: 3fr 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * GEEN HORIZONTALE SCROLL (site-breed)
 * Stray overflow rekt de layout-viewport (ICB) op waardoor fixed bars
 * (header, announcement, sticky, cookie) breder dan het scherm worden en
 * de pagina horizontaal scrollt. `clip` clipt dit weg zonder een
 * scroll-container te maken -> position:sticky blijft werken (i.t.t. hidden).
 * ─────────────────────────────────────────────────────────────────────────── */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

/* Lange koppen / lange woorden mogen nooit buiten hun container lopen. */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .section-header-title {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * FAQ-ACCORDION — nette stacking + symmetrische uitlijning
 * (.faq-* classes hadden geen styling -> items liepen "kris kras" in elkaar)
 * ─────────────────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--color-cream-mid, oklch(0.90 0.01 75));
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: var(--text-base, 1rem);
  font-weight: 600;
  color: var(--color-charcoal, oklch(0.22 0.005 65));
  background: none;          /* reset default button-achtergrond (grijs) */
  border: none;             /* reset default button-rand */
  text-align: left;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question svg,
.faq-icon { flex-shrink: 0; }
/* CSS-chevron (markup bevat geen svg) — roteert via aria-expanded dat de JS zet.
   :not(:has(svg)) voorkomt dubbele chevron op pagina's die wel een svg hebben. */
.faq-question:not(:has(svg))::after {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.5;
}
.faq-question[aria-expanded="true"]:not(:has(svg))::after {
  transform: rotate(-135deg);
}
.faq-answer {
  display: none;            /* accordion: dicht by default, JS opent via inline display */
  padding: 0 0 1.1rem;
  color: var(--color-charcoal-light, oklch(0.42 0.008 65));
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * MOBIEL — FAQ + analyse-kaarten + reviews netjes over de volle breedte
 * ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* De brede flex-wrap-regel (zie MOBILE GRID OVERRIDE) zette ook flex-wrap op
     de FAQ-knop -> bij een lange vraag wrapte het plusje/chevron naar de regel
     eronder. De knop mag NOOIT wrappen: vraag links, icoon rechts ernaast. */
  .faq-question {
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .faq-question > span,
  .faq-question > :first-child:not(svg) {
    min-width: 0;          /* laat de vraagtekst krimpen/intern afbreken */
    flex: 1 1 auto;
  }
  .faq-question svg,
  .faq-chevron,
  .faq-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;   /* lijn het icoon uit met de eerste tekstregel */
  }

  /* Analyse-kaarten (offerte-check "Wat controleren wij") + reviews staan op
     mobiel in 2 kolommen naast elkaar = te smal/onleesbaar. Volle breedte.
     [style] erbij -> hogere specificiteit dan de generieke repeat(4)->2-kol-regel
     verderop, ongeacht bronvolgorde. */
  .grid-cards-fullwidth-mobile[style] {
    grid-template-columns: 1fr !important;
  }
  /* Review-grids site-breed naar 1 kolom op mobiel (volle breedte per kaart). */
  [style*="grid"]:has(> .review-card),
  [style*="grid"]:has(> article.review-card) {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * MOBILE GRID OVERRIDE
 * Inline grid-template-columns in page-templates werken niet responsive.
 * Forceer 1-kolom op mobile; desktop behoudt de inline waarde.
 * ─────────────────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
  /* TWEE-TRAPS responsive grid-aanpak voor inline-styled grids.

     TRAP 1 — Veel-koloms KAART/STAT/GALERIJ-grids -> 2 KOLOMS:
       stats-balk (4 cijfers = 2x2), avatar-galerijen,
       voordelen (5-kol), showroom-foto's, collectie-kaarten met afbeelding.
       Twee naast elkaar leest prettig op een telefoon. */
  [style*="repeat(4"],
  [style*="repeat(5"],
  [style*="repeat(6"],
  [style*="repeat(7"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;  /* minmax(0,..) -> kolommen kunnen krimpen, geen blow-out */
  }

  /* GRID-kinderen mogen binnen hun (expliciete) track krimpen -> voorkomt dat
     een lang woord de track uit het scherm duwt. Alleen grid (geen !important),
     zodat flex-rijen NIET worden dichtgeknepen (dat gaf 1-woord-per-regel). */
  .container [style*="display:grid"] > * {
    min-width: 0;
  }

  /* Content-KAARTEN met dikke padding (padding:2rem) in een meerkoloms-grid
     worden op mobiel te smal (2 kol van ~150px - 64px padding = ~87px tekst ->
     1 woord per regel). Zulke grids naar 1 kolom. Stats-kaarten gebruiken
     "padding:1.5rem 2rem" en matchen deze selector NIET -> die blijven 2x2. */
  .container [style*="display:grid"]:has(> [style*="padding:2rem"]),
  .container [style*="display:grid"]:has(> [style*="padding:2.5rem"]),
  .container [style*="display:grid"]:has(> [style*="padding:3rem"]) {
    grid-template-columns: 1fr !important;
  }

  /* Expliciete grote px-min-widths (bv. min-width:400px) neutraliseren op mobiel. */
  .container [style*="min-width:300px"],
  .container [style*="min-width:320px"],
  .container [style*="min-width:360px"],
  .container [style*="min-width:400px"],
  .container [style*="min-width:480px"],
  .container [style*="min-width:500px"],
  .container [style*="min-width:600px"] {
    min-width: 0 !important;
  }
  .container img,
  .container svg {
    max-width: 100%;
  }

  /* TRAP 2 — 3-koloms grote kaarten + STRUCTURELE layouts -> 1 KOLOM:
       grote product-kaarten (collectie 3-kol), afbeelding-naast-tekst
       (1fr 2fr / 2fr 1fr), content+sidebar, en 2-koloms met grote gap
       (=afbeelding+tekst). Kleine 2-koloms (1fr 1fr met kleine gap =
       feature-/stats-paren) blijft bewust 2-koloms. */
  [style*="repeat(3"],
  [style*="1fr 2fr"],
  [style*="2fr 1fr"],
  [style*="1fr 1fr 1fr"],
  [style*="1fr 1fr;gap:4rem"],
  [style*="1fr 1fr;gap:3rem"],
  [style*="1fr 1fr;gap:2.5rem"],
  [style*="1fr 1fr;gap:2rem"],
  [style*="1fr 1fr;gap:1.5rem"],
  [style*="1fr 1fr;gap:1.25rem"],
  [style*="1fr 1fr;gap:1rem"],
  [style*="grid-template-columns:1fr 1fr;max-width"],
  .collectie-grid,
  .grid-content-sidebar {
    grid-template-columns: 1fr !important;
  }

  /* Compactere container-padding op mobiel = meer ruimte voor content. */
  .container {
    padding-left: 0.9375rem !important;   /* 15px */
    padding-right: 0.9375rem !important;
  }

  /* Reset child-spans: inline grid-column/grid-row span 2/3 (desktop featured
     cards) maken op een 1-koloms grid impliciete kolommen -> scheve layout.
     Op mobiel is elk item toch volle breedte, dus span -> auto. */
  [style*="grid-column"] {
    grid-column: auto !important;
  }
  [style*="grid-row"] {
    grid-row: auto !important;
  }
  /* Vaste grid-auto-rows (mozaïek-galerijen, bv. showroom) maken items op een
     1-koloms grid onnodig laag/vervormd -> laat hoogte meegroeien met content. */
  [style*="grid-auto-rows"] {
    grid-auto-rows: auto !important;
  }

  /* Inline flex-rijen (icoon + tekst + knop callouts e.d.) passen op mobiel
     vaak niet -> nowrap duwt content buiten het scherm = horizontale scroll.
     Laat ze wrappen; korte rijen blijven vanzelf op 1 regel. */
  [style*="display:flex"]:not([style*="flex-direction:column"]) {
    flex-wrap: wrap;
  }

  /* VERTICAAL RITME — desktop gebruikt 6rem (96px) sectie-padding; op een
     telefoon is dat veel te ruim (secties voelen los, eindeloos scrollen).
     Comprimeer naar een strak, consistent mobiel ritme. */
  [style*="padding:8rem 0"] { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  [style*="padding:6rem 0"] { padding-top: 3rem !important;   padding-bottom: 3rem !important; }
  [style*="padding:5rem 0"] { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
  [style*="padding:4rem 0"] { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .section-light, .section-white, .section-dark {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Reviews-float (oms-reviews badge) net boven de compacte zwarte sticky-bar
     (~53px hoog) zetten met een kleine marge, zodat ze niet botsen.
     + Compacter ontwerp op mobiel: G-logo LINKS, tekst ernaast (gestapeld). */
  .oms-rev-badge {
    bottom: 62px !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 7px 13px !important;
    min-width: 0 !important;
    border-radius: 10px !important;
  }
  .oms-rev-badge-g svg { width: 26px !important; height: 26px !important; }
  .oms-rev-badge-body {
    align-items: flex-start !important;
    text-align: left !important;
    gap: 0 !important;
  }
  .oms-rev-badge-label { font-size: 0.78rem !important; }
  .oms-rev-badge-rating { font-size: 0.82rem !important; gap: 4px !important; }
  .oms-rev-badge-rating strong { font-size: 0.88rem !important; }
  .oms-rev-badge-count { font-size: 0.66rem !important; margin-top: 0 !important; }

  /* ── TAP-TARGETS >= 44px (WCAG/Apple) ── */
  .nav-toggle { min-width: 44px; min-height: 44px; }
  .mobile-menu-link { min-height: 44px; display: flex; align-items: center; }
  .mobile-submenu-link { min-height: 42px; display: flex; align-items: center; }
  .stad-pill, .regio-pill { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .cookie-banner-accept, .cookie-banner-decline { min-height: 44px; }
  .btn, .btn-cta, .btn-secondary, .btn-outline-gold { min-height: 44px; }
  .breadcrumbs, .breadcrumb { gap: 0.75rem; }

  /* ── TYPOGRAFIE-SCHALING: clamp-minima zijn te hoog voor 390px (koppen
     wrappen lelijk / overschieten). Verlaag de mobiele ondergrens; desktop
     (de max-waarde) blijft gelijk. ── */
  [style*="font-size:clamp(2.5rem,5vw"]  { font-size: clamp(1.875rem, 7vw, 4.5rem) !important; }
  [style*="font-size:clamp(2.25rem,5vw"] { font-size: clamp(1.875rem, 7vw, 3.75rem) !important; }
  [style*="font-size:clamp(1.875rem,3vw"] { font-size: clamp(1.5rem, 5.5vw, 2.25rem) !important; }
  [style*="font-size:clamp(10rem,12vw"]  { font-size: clamp(4rem, 17vw, 12rem) !important; }
  /* Te strakke line-heights op grote display-koppen iets ruimer. */
  [style*="line-height:0.9"] { line-height: 1.15 !important; }

  /* Stats-balk onder de hero: de goud/tan border-left verdeelt op desktop de
     4 kolommen, maar wordt in de 2x2 mobiel-layout een lelijk verticaal
     streepje naast de cijfers. Weg ermee -> egale achtergrond. */
  [style*="border-left:1px solid oklch(0.60 0.08 75)"] {
    border-left: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * VERGELIJKING — DESKTOP = 3-koloms tabel, MOBIEL = twee losse tabellen
 * (bv. Plak-PVC eerst, dan Klik-PVC eronder). De desktop-tabel (.cmp-desktop)
 * wordt op mobiel verborgen; de losse kaart-tabellen (.cmp-card) getoond.
 * ─────────────────────────────────────────────────────────────────────────── */
.cmp-card { display: none; }

@media (max-width: 767px) {
  .cmp-desktop { display: none !important; }
  .cmp-card {
    display: block;
    border: 1px solid oklch(0.42 0.010 65);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  .cmp-card-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: oklch(0.22 0.012 65);
    color: #fff;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
  }
  .cmp-card-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: oklch(0.68 0.08 75);
    color: oklch(0.12 0.005 65);
    padding: 0.1rem 0.5rem;
    border-radius: 9999px;
    text-transform: none;
  }
  .cmp-card-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
    border-top: 1px solid oklch(0.42 0.010 65);
    background: oklch(0.16 0.008 65);
  }
  .cmp-card-prop {
    flex-shrink: 0;
    max-width: 42%;
    color: oklch(0.62 0.015 65);
    font-family: var(--font-body);
    font-size: 0.8rem;
  }
  .cmp-card-val {
    color: #fff;
    font-weight: 500;
    text-align: right;
    font-family: var(--font-body);
    font-size: 0.8rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * VERGELIJKINGSTABELLEN OP MOBIEL (Plak-PVC vs Klik-PVC e.d.)
 * Deze 3-koloms grids (1fr 1fr 1fr) mogen NIET naar 1 kolom collapsen — dan is
 * onduidelijk welke waarde bij klik of plak hoort. Houd 3 koloms maar compact
 * zodat de tabel binnen het scherm past. Komt NA de collapse-regel hierboven,
 * dus wint bij gelijke specificiteit. (Andere 1fr 1fr 1fr grids zoals
 * ;gap:3rem collapsen wel, want die matchen deze selectors niet.)
 * ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Naar 2 koloms (Klik | Plak); de eerste cel (eigenschap/kop) wordt een
     volle-breedte kopje erboven. Geeft per rij een net mini-kaartje i.p.v.
     3 cramped kolommen met ongelijke rijhoogtes. */
  [style*="1fr 1fr 1fr;text-align:center"],
  [style*="1fr 1fr 1fr;background"] {
    grid-template-columns: 1fr 1fr !important;
    align-items: stretch !important;
  }
  [style*="1fr 1fr 1fr;text-align:center"] > :first-child,
  [style*="1fr 1fr 1fr;background"] > :first-child {
    grid-column: 1 / -1 !important;
    border-left: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    text-align: left !important;
  }
  [style*="1fr 1fr 1fr;text-align:center"] > div,
  [style*="1fr 1fr 1fr;background"] > div {
    padding: 0.625rem 0.75rem !important;
  }
  [style*="1fr 1fr 1fr;text-align:center"] span,
  [style*="1fr 1fr 1fr;background"] span {
    font-size: 0.8125rem !important;
    line-height: 1.35 !important;
  }
  /* "Aanbevolen"-badge naast Plak-PVC-kop mag onder de kop wrappen */
  [style*="1fr 1fr 1fr;text-align:center"] [style*="display:flex"] {
    flex-wrap: wrap;
    gap: 0.25rem !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SECTIE ACHTERGRONDEN
 * ─────────────────────────────────────────────────────────────────────────── */

.section-light {
  background-color: var(--color-cream);
  padding: var(--section-pad-y) 0;
}

.section-white {
  background-color: var(--color-white);
  padding: var(--section-pad-y) 0;
}

.section-dark {
  background-color: var(--color-charcoal);
  padding: var(--section-pad-y) 0;
}

.section-sm {
  padding: var(--section-pad-y-sm) 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * TEKST UITLIJNING
 * ─────────────────────────────────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ─────────────────────────────────────────────────────────────────────────────
 * AFBEELDINGEN
 * ─────────────────────────────────────────────────────────────────────────── */

/* Volledige hoogte afbeelding (voor split-layouts) */
.img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Afbeelding wrapper met vaste hoogte */
.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
}

.img-wrapper-hero {
  min-height: 480px;
}

.img-wrapper-card {
  height: 13rem;   /* 208px */
}

.img-wrapper-card-lg {
  height: 15rem;   /* 240px */
}

/* Gradient overlay op afbeelding */
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 24, 0.7) 0%,
    transparent 60%
  );
}

/* Zoom-effect bij hover (op parent) */
.img-zoom img {
  transition: transform var(--transition-slower);
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * ZICHTBAARHEID
 * ─────────────────────────────────────────────────────────────────────────── */

.hidden { display: none; }

.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;
}

/* Verberg op mobiel, toon op desktop */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

/* Toon op mobiel, verberg op desktop */
.hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * ANIMATIES (CSS-only, vervangt Framer Motion)
 * ─────────────────────────────────────────────────────────────────────────── */

/* Fade in van onderen (voor cards, secties) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale in (voor popup) */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Slide in van links (voor mobiel menu) */
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* Slide in van rechts */
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Klassen om animaties toe te passen */
.animate-fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.35s ease forwards;
}

/* Intersection Observer: elementen beginnen onzichtbaar.
   Failsafe-animatie toont ze na 1,2s ook als JS laat of niet draait
   (tracking-JS kan de main thread lang bezetten). */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: reveal-fallback 0.5s ease 1.2s forwards;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

@keyframes reveal-fallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vertraagde reveal voor staggered effecten */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────────────────────────────────────────
 * BREADCRUMBS
 * ─────────────────────────────────────────────────────────────────────────── */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  margin-bottom: var(--space-6);
}

.breadcrumb-item {
  color: rgba(240, 237, 230, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
  color: var(--color-gold);
}

.breadcrumb-separator {
  color: rgba(240, 237, 230, 0.4);
  font-size: 0.625rem;
}

.breadcrumb-current {
  color: var(--color-cream-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * LEVENSDUUR BALK
 * ─────────────────────────────────────────────────────────────────────────── */

.levensduur-bar {
  height: 0.5rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: var(--color-cream-mid);
}

.levensduur-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  transition: width 0.8s ease;
}

.levensduur-bar-fill-green {
  background-color: var(--color-green);
}

.levensduur-bar-fill-gray {
  background-color: #aaa;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * FLOATING WHATSAPP KNOP
 * ─────────────────────────────────────────────────────────────────────────── */

/* Bel-knop boven WhatsApp, gestapeld linksonder (desktop) */
.float-contact {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-contact-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.float-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
}

.float-call {
  background-color: oklch(0.68 0.08 75); /* warm-goud, site-accent */
  color: oklch(0.12 0.005 65);
}

.float-whatsapp {
  background-color: #25D366;
  color: #fff;
}

/* Op mobiel neemt de sticky-bar het over → float verbergen */
@media (max-width: 767px) {
  .float-contact {
    display: none;
  }
}

/* TABLET (768–1023px): floating elementen compacter + strak in de hoek, zodat
   ze stat-balken, formuliervelden en kaarten niet meer afdekken. De review-badge
   krijgt dezelfde compacte rij-variant als op mobiel; op desktop (≥1024) is er
   ruimte zat en blijft alles zoals ontworpen. */
@media (min-width: 768px) and (max-width: 1023px) {
  .oms-rev-badge {
    flex-direction: row !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 7px 13px !important;
    min-width: 0 !important;
    border-radius: 10px !important;
  }
  .oms-rev-badge-g svg { width: 26px !important; height: 26px !important; }
  .oms-rev-badge-body { align-items: flex-start !important; text-align: left !important; gap: 0 !important; }
  .oms-rev-badge-label  { font-size: 0.78rem !important; }
  .oms-rev-badge-rating { font-size: 0.82rem !important; gap: 4px !important; }
  .oms-rev-badge-rating strong { font-size: 0.88rem !important; }
  .oms-rev-badge-count  { font-size: 0.66rem !important; margin-top: 0 !important; }

  .float-contact { bottom: 1rem; left: 1rem; gap: 0.5rem; }
  .float-contact-btn { width: 3rem; height: 3rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * STICKY MOBIELE BALK (onderaan op mobiel)
 * ─────────────────────────────────────────────────────────────────────────── */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: var(--color-charcoal);
  border-top: 1px solid var(--color-charcoal-light);
  padding: var(--space-3) var(--space-4);
  display: flex;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-bar .btn {
  flex: 1;
  font-size: var(--text-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * DIVIDERS
 * ─────────────────────────────────────────────────────────────────────────── */

.divider {
  border: none;
  border-top: 1px solid var(--color-cream-mid);
  margin: var(--space-8) 0;
}

.divider-dark {
  border-top-color: var(--color-charcoal-light);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SECTIE HEADER (gecentreerd)
 * ─────────────────────────────────────────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: var(--space-14);
}

.section-header-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .section-header-title {
    font-size: var(--text-4xl);
  }
}

.section-header-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* Dark variant */
.section-header-dark .section-header-title {
  color: var(--color-white);
}

.section-header-dark .section-header-subtitle {
  color: var(--color-cream-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * DONKERE INLINE-SECTIES — body-tekst licht houden
 * Inline-styled secties (background:oklch(0.12 ...)) zetten hun kleur via een
 * geërfde inline-style, maar globale li/p-kleurregels overschrijven die erfenis
 * → donkere tekst op donkere achtergrond. Hogere-specificiteit-regel dwingt licht
 * af; elementen met een eigen inline color (gold koppen, badges) winnen alsnog.
 * ─────────────────────────────────────────────────────────────────────────── */
[style*="background:oklch(0.12"] p,
[style*="background:oklch(0.12"] li,
[style*="background:oklch(0.12"] ul,
[style*="background:oklch(0.12"] span,
[style*="background:oklch(0.12"] strong,
[style*="background:oklch(0.12"] b,
[style*="background:oklch(0.12"] h1,
[style*="background:oklch(0.12"] h2,
[style*="background:oklch(0.12"] h3,
[style*="background:oklch(0.12"] h4,
[style*="background:oklch(0.18"] p,
[style*="background:oklch(0.18"] li,
[style*="background:oklch(0.18"] span,
[style*="background:oklch(0.18"] strong,
[style*="background:oklch(0.18"] b,
[style*="background:oklch(0.18"] h1,
[style*="background:oklch(0.18"] h2,
[style*="background:oklch(0.18"] h3,
[style*="background:oklch(0.18"] h4 {
  color: var(--color-cream, oklch(0.96 0.008 75));
}

/* ─────────────────────────────────────────────────────────────────────────────
 * FOOTER — secundaire tekst leesbaar op (bijna-zwarte) footer-achtergrond.
 * --color-text-secondary/-muted zijn agency-breed donkerder gezet voor leesbaar-
 * heid op LICHTE achtergronden; in de donkere footer gaf dat 2.7:1 (onleesbaar).
 * We herdefiniëren de vars binnen de footer-scope → de inline var()-referenties
 * in footer.php lossen hier op naar lichte waarden (geen !important nodig).
 * ─────────────────────────────────────────────────────────────────────────── */
.site-footer {
  --color-text-secondary: oklch(0.74 0.008 75); /* ~9:1 op footer-bg */
  --color-text-muted:     oklch(0.68 0.010 75); /* ~7:1 op footer-bg */
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SECUNDAIR GRIJS — leesbaarheid op LICHTE achtergrond (WCAG AA).
 * Templates gebruiken inline color:oklch(0.60 0.015 65) als subtekst; op
 * wit/crème geeft dat ~3.9:1 (onder de 4.5-norm). We donkeren het naar 0.48
 * (~4.6:1) op lichte secties, maar lichten het juist op binnen DONKERE secties
 * (hogere specificiteit wint) zodat daar geen donker-op-donker ontstaat.
 * ─────────────────────────────────────────────────────────────────────────── */
[style*="color:oklch(0.60 0.015 65)"] {
  color: oklch(0.48 0.015 65) !important;
}
[style*="background:oklch(0.12"] [style*="color:oklch(0.60 0.015 65)"],
[style*="background:oklch(0.18"] [style*="color:oklch(0.60 0.015 65)"] {
  color: oklch(0.78 0.015 65) !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SECONDARY-KNOP OP DONKERE SECTIE — .btn-secondary heeft donkere tekst (bedoeld
 * voor lichte bg). Zonder inline color:white-override werd hij donker-op-donker
 * (onzichtbaar) op donkere CTA-secties. Forceer licht + lichte rand daar.
 * ─────────────────────────────────────────────────────────────────────────── */
[style*="background:oklch(0.12"] a.btn-secondary,
[style*="background:oklch(0.18"] a.btn-secondary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * MOBIEL — inline 2/3-koloms grids + min-width-flexitems responsive
 * (page-pvc-vloeren e.d. gebruiken inline repeat(2/3,1fr) + min-width:300/400px
 *  die de override voor repeat(4-7) niet ving → gepropt / horizontale overflow)
 * ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="min-width:400px"],
  [style*="min-width:300px"] {
    min-width: 0 !important;
  }
}

/* Inline 2-koloms flex-secties op mobiel stapelen (flex:1/flex:2 + min-width-kind)
   zodat kolommen volle breedte krijgen i.p.v. te krimpen (page-pvc-vloeren e.d.). */
@media (max-width: 767px) {
  [style*="display:flex"]:has(> [style*="min-width:400px"]),
  [style*="display:flex"]:has(> [style*="min-width:300px"]) {
    flex-direction: column !important;
  }
}

/* ==== assets/css/nav.css ==== */
/**
 * Vloeren Kameraad — Navigation & Footer
 * Header + footer (eigen design source)
 * Bronnen: index.css, components.css, design-tokens.css
 *
 * Bevat: topbar, site-header, main-nav, dropdown, mobile-menu,
 *        footer-main, footer-bottom, hide-mobile / hide-desktop
 */

/* =============================================================================
   HIDE UTILITIES (nav-specifiek gebruik)
   ============================================================================= */

/* Verberg op mobiel (<768px), toon op desktop */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block; /* override per context naar flex/grid waar nodig */
  }
}

/* Toon op mobiel, verberg op desktop */
.hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* =============================================================================
   TOPBAR  (desktop informatiebalk boven de header)
   Bron: <div class="bg-[oklch(0.22_0.015_220)] text-[...] hidden md:block">
   ============================================================================= */

.topbar {
  background-color: var(--color-charcoal);          /* oklch(0.22 0.015 220) → #1a1a18 */
  color: var(--color-cream-dark);                    /* oklch(0.92 0.008 75) → #d4cfc4 */
  font-family: var(--font-body);
  font-size: var(--text-xs);                         /* 0.75rem / 12px */
  padding: 0.5rem 0;                                 /* py-2 */
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;                                     /* gap-1.5 */
}

.topbar-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-cream-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar-link:hover {
  color: var(--color-gold);
}

.topbar-whatsapp:hover {
  color: #25D366;
}

/* =============================================================================
   SITE HEADER  (vaste header, wit, met scroll-shadow)
   Bron: <header className="fixed left-0 right-0 z-50 ...">
   ============================================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--header-bg);               /* #ffffff */
  transition: box-shadow var(--transition-normal), background-color var(--transition-normal);
}

/* Toon topbar — header schuift naar beneden als announcement bar actief is */
.has-announcement .site-header {
  top: 36px;                                         /* var(--topbar-height) */
}

/* Na scrollen: shadow */
.site-header.is-scrolled {
  box-shadow: var(--header-shadow);                  /* 0 2px 24px rgba(26,26,24,0.10) */
}

/* =============================================================================
   BRAND BAR  (logo + telefoon + CTA's, desktop only)
   ============================================================================= */

.brand-bar {
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--color-cream-mid, oklch(0.90 0.01 75));
}

.brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0;
}

.brand-bar .nav-logo img {
  height: 56px;                                      /* groter logo in brand-bar */
}

.brand-bar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--btn-pad);                           /* zelfde als .btn: 0.75rem 1.5rem */
  border: 2px solid var(--color-gold);
  border-radius: var(--btn-radius);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-decoration: none;
  background: none;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

/* =============================================================================
   MAIN NAV  (desktop: alleen menu, mobiel: logo + hamburger)
   ============================================================================= */

.main-nav {
  background-color: var(--color-cream, oklch(0.96 0.01 75));
  border-top: 1px solid var(--color-cream-mid, oklch(0.90 0.01 75));
}

.nav-inner {
  display: flex;
  align-items: center;                               /* verticaal centreren van logo + (offerte) + hamburger */
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 64px;                                  /* h-16 mobiel — min-height i.p.v. height zodat niets afgekapt wordt */
}

@media (min-width: 768px) {
  .nav-inner {
    min-height: 0;                                   /* strak: balk = menuhoogte, geen lichte strook boven/onder het menu */
  }
}

/* Tablet (768–1023px): horizontaal menu past nog niet → verberg de anders lege
   main-nav balk; de hamburger leeft nu in de brand-bar. Het uitschuifmenu
   (.mobile-menu, aparte sibling) blijft werken. */
@media (min-width: 768px) and (max-width: 1023px) {
  .main-nav .nav-inner {
    display: none;
  }
  .main-nav {
    background-color: transparent;
    border-top: none;
  }
}

/* =============================================================================
   NAV LOGO
   ============================================================================= */

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Hide mobile logo in nav on desktop (brand-bar has its own logo) */
@media (min-width: 768px) {
  .main-nav .nav-logo.hide-desktop {
    display: none;
  }
}

.nav-logo img {
  display: block;                                    /* kill inline baseline gap → echte verticale centrering */
  height: 52px;                                      /* mobiel — groter/leesbaar */
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .nav-logo img {
    height: 48px;                                    /* h-12 desktop */
  }
}

/* =============================================================================
   NAV MENU  (desktop horizontaal lijstje)
   Bron: <nav className="hidden lg:flex items-center gap-1">
   ============================================================================= */

.nav-menu {
  display: none;                                     /* mobiel: verborgen */
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;                                    /* gap-1 */
  }
}

/* =============================================================================
   NAV ITEM  (elk menu-item inclusief dropdown wrapper)
   Bron: <div className="nav-item relative">
   ============================================================================= */

.nav-item {
  position: relative;
  margin: 0;   /* globale li{margin-bottom:8px} neutraliseren -> menu verticaal gecentreerd in de balk */
}

/* =============================================================================
   NAV LINK  (desktop knoppen / links in de nav)
   Bron: className="flex items-center gap-1 px-3 py-2 rounded text-sm font-semibold ..."
   ============================================================================= */

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;                                      /* gap-1 */
  padding: 0.5rem 0.75rem;                           /* py-2 px-3 */
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1;
  white-space: nowrap;
}

/* Desktop nav: gecentreerd menu */
@media (min-width: 1024px) {
  .main-nav .nav-link {
    color: var(--color-text-primary);
    padding: 0.75rem 0.75rem;
  }
  .main-nav .nav-link:hover {
    color: var(--color-gold);
  }
  .main-nav .nav-inner {
    justify-content: flex-start;
  }
}

.nav-link:hover {
  color: var(--color-gold);
}

/* Actieve staat: huidige pagina */
.nav-link.is-active,
.nav-item.is-active > .nav-link {
  color: var(--color-gold);
}

/* Nav-link met dropdown-chevron (button) */
.nav-link-dropdown {
  /* Erft van .nav-link — geen extra regels nodig */
}

/* Chevron roteren bij open dropdown */
.nav-item.is-open > .nav-link-dropdown svg,
.nav-link-dropdown[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-link svg {
  transition: transform var(--transition-fast);
}

/* =============================================================================
   NAV DROPDOWN  (mega-menu / submenu)
   Bron: .nav-dropdown in index.css (uitgebreid)
   ============================================================================= */

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-mid);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(26, 26, 24, 0.12);
  padding: 1.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-normal),
              visibility var(--transition-normal),
              transform var(--transition-normal);
  z-index: 100;
}

/* Tonen bij hover of focus-within */
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =============================================================================
   NAV DROPDOWN ITEMS
   Bron: className="block px-3 py-2 rounded text-sm hover:bg-[cream] hover:text-gold"
   ============================================================================= */

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;                           /* py-2 px-3 */
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background-color: var(--color-cream);
  color: var(--color-gold);
}

/* Uitgelicht item (★ Onze Specialiteit) */
.nav-dropdown-featured {
  color: var(--color-gold);
  font-weight: var(--font-semibold);
}

.nav-dropdown-featured:hover {
  background-color: var(--color-cream);
  color: var(--color-gold-dark);
}

/* Badge bovenin featured item */
.nav-dropdown-badge {
  display: inline-block;
  font-size: 0.6875rem;                              /* ~11px */
  font-weight: var(--font-bold);
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  margin-right: 0.375rem;
  vertical-align: middle;
  letter-spacing: 0.01em;
}

/* "Alle regio's →" link onderaan dropdown */
.nav-dropdown-more {
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  margin-top: 0.25rem;
  border-top: 1px solid var(--color-cream-mid);
  padding-top: 0.75rem;
}

.nav-dropdown-more:hover {
  background-color: transparent;
  text-decoration: underline;
}

/* =============================================================================
   NAV CTA  (desktop: telefoon + offerte knop)
   Bron: <div className="hidden lg:flex items-center gap-3">
   ============================================================================= */

.nav-cta {
  display: none;                                     /* mobiel: verborgen */
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;                                    /* gap-3 */
  }
}

/* Telefoon link in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--color-gold);
}

/* =============================================================================
   NAV OFFERTE (compacte offerte-knop op mobiel, tussen logo en hamburger)
   Alleen mobiel: op desktop bestaat de volledige offerte-knop in de brand-bar.
   ============================================================================= */

.nav-offerte-mobile {
  flex-shrink: 0;
  margin-left: auto;                                 /* duw offerte + hamburger naar rechts, logo blijft links */
  align-items: center;                               /* (werkt zodra display:flex actief is, zie media query) */
  justify-content: center;
  padding: 0.5rem 0.875rem;                          /* compacter dan standaard .btn */
  font-size: var(--text-sm);
  line-height: 1;
  min-height: 44px;                                  /* tap-target ≥44px */
  white-space: nowrap;
}

/* Alleen op mobiel tonen + tekst verticaal centreren. NIET globaal display zetten:
   anders wint dit van .hide-desktop en lekt de knop naar de desktop-balk (en
   rekt die op). ≥768px blijft .hide-desktop => display:none. */
@media (max-width: 767px) {
  .nav-offerte-mobile {
    display: inline-flex;
  }
}

/* Op zeer smalle schermen (≤390px) nog iets compacter zodat alles past */
@media (max-width: 390px) {
  .nav-offerte-mobile {
    padding: 0.5rem 0.75rem;
    font-size: var(--text-xs);
  }
  .nav-logo img {
    height: 44px;                                    /* iets kleiner logo zodat de rij past */
  }
}

/* =============================================================================
   NAV TOGGLE  (hamburger knop op mobiel)
   Bron: <button className="lg:hidden p-2 rounded text-[charcoal]">
   ============================================================================= */

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 44px;                                   /* tap-target ≥44px */
  min-height: 44px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  color: var(--color-gold);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

/* =============================================================================
   NAV TOGGLE — BRAND-BAR VARIANT  (alleen tablet: 768–1023px)
   Op tablet past het horizontale menu (≥1024) nog niet, maar de brand-bar
   staat er wel. We tonen de hamburger naast de CTA-knoppen en verbergen de
   anders lege main-nav balk eronder (zie tablet-blok verderop).
   ============================================================================= */

.nav-toggle-brand {
  display: none;                                    /* standaard verborgen (mobiel: eigen toggle in main-nav, desktop: volledig menu) */
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-toggle-brand {
    display: flex;
    margin-left: 0.25rem;                           /* iets lucht t.o.v. de actie-knop */
    color: var(--color-charcoal);
  }
}

/* =============================================================================
   MOBILE MENU  (uitschuifbaar menu onder de header)
   Bron: <div className="lg:hidden bg-white border-t ... max-h-[80vh] overflow-y-auto">
   ============================================================================= */

.mobile-menu {
  display: none;                                     /* verborgen standaard */
  background-color: var(--color-white);
  border-top: 1px solid var(--color-cream-mid);
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu > .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* =============================================================================
   MOBILE MENU LIST & ITEMS
   ============================================================================= */

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-item {
  border: none;
}

/* =============================================================================
   MOBILE MENU LINK  (top-level links + submenu-toggle buttons)
   Bron: className="flex-1 py-3 text-sm font-semibold text-[charcoal]"
   ============================================================================= */

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;                                  /* tap-target ≥44px */
  padding: 0.75rem 0;                                /* py-3 */
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-link:hover {
  color: var(--color-gold);
}

/* Toggle-knop (chevron) voor submenus */
.mobile-menu-toggle-btn {
  justify-content: space-between;
}

.mobile-menu-toggle-btn svg {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.mobile-menu-toggle-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* =============================================================================
   MOBILE SUBMENU  (verborgen sublijst onder een nav-item)
   Bron: <div className="pl-4 pb-2 space-y-1">
   ============================================================================= */

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem 1rem;                          /* pl-4 pb-2 */
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* =============================================================================
   MOBILE SUBMENU LINK
   Bron: className="block py-2 text-sm text-[taupe]"
   ============================================================================= */

.mobile-submenu-link {
  display: block;
  padding: 0.5rem 0;                                 /* py-2 */
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-submenu-link:hover {
  color: var(--color-gold);
}

/* Uitgelicht submenu-item */
.mobile-submenu-link.is-featured {
  color: var(--color-gold);
  font-weight: var(--font-semibold);
}

/* =============================================================================
   MOBILE MENU CTA  (onderaan het mobile menu)
   Bron: <div className="pt-4 space-y-3 border-t border-[cream-mid]">
   ============================================================================= */

.mobile-menu-cta {
  padding-top: 1rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-cream-mid);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;                                      /* space-y-3 */
}

/* =============================================================================
   MAIN CONTENT OFFSET  (pusht content onder de vaste 4-laags header)
   Mobiel: announcement 36 + nav 64 = 100px
   Desktop: announcement 36 + topbar 34 + brand-bar 80 + nav 49 = 199px
   ============================================================================= */

#main-content {
  padding-top: 100px;                                /* mobiel: announcement + nav */
}

@media (min-width: 768px) {
  #main-content {
    padding-top: 190px;                              /* desktop: exact gelijk aan fixed-header-hoogte (announcement 36 + topbar 34 + brand-bar 81 + nav 39) — geen witte strook tussen menu en hero */
  }
}

/* Tablet (768–1023px): geen nav-balk → fixed header = announcement 36 + topbar 34 + brand-bar 81 = 151px */
@media (min-width: 768px) and (max-width: 1023px) {
  #main-content {
    padding-top: 151px;
  }
}

/* =============================================================================
   FOOTER — MAIN SECTIE
   Bron: <footer className="bg-[oklch(0.12_0.005_65)] text-[...]">
         <div className="container py-16">
         <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-10">
   ============================================================================= */

.site-footer {
  background-color: var(--color-charcoal);
  color: var(--color-cream-dark);
}

.footer-main {
  padding: 4rem 0;                                   /* py-16 */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;                                       /* gap-10 */
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================================================
   FOOTER BRAND  (kolom 1: logo + tagline + contact + social)
   ============================================================================= */

.footer-brand {
  /* Flow layout */
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);                   /* logo wit op donker bg */
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-cream-dark);
  margin-bottom: 1.5rem;
}

/* =============================================================================
   FOOTER CONTACT
   Bron: <address className="..."> + <div className="space-y-3 text-sm">
   ============================================================================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-cream-dark);
}

.footer-contact-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--color-cream-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

/* =============================================================================
   FOOTER SOCIAL
   Bron: <div className="flex gap-3 mt-6">
         each: className="w-9 h-9 bg-[charcoal-mid] rounded flex items-center justify-center hover:bg-gold"
   ============================================================================= */

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 2.25rem;                                    /* w-9 */
  height: 2.25rem;
  background-color: var(--color-charcoal-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-dark);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}

/* =============================================================================
   FOOTER NAV COLUMNS  (kolommen 2-4)
   Bron: <div> per kolom + <h3 className="text-white font-bold text-sm uppercase tracking-widest mb-5">
   ============================================================================= */

.footer-nav-col {
  /* Flow layout */
}

.footer-nav-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);           /* 0.1em */
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-cream-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-gold);
}

/* =============================================================================
   FOOTER BOTTOM BAR
   Bron: <div className="border-t border-[charcoal-mid]"> + container py-5
         flex flex-col sm:flex-row justify-between text-xs text-[taupe]
   ============================================================================= */

.footer-bottom {
  border-top: 1px solid var(--color-charcoal-mid);
}

.footer-bottom > .container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-cream-dark);                    /* op donkere footer: licht houden voor leesbaarheid */
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.footer-copyright {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal-link {
  color: var(--color-cream-dark);                     /* op donkere footer: licht houden */
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--color-gold);
}

/* =============================================================================
   FOOTER CTA BAND  (gouden band bovenaan de footer)
   Bron: <div className="bg-[gold] py-12">
         flex flex-col md:flex-row items-center justify-between gap-6
   ============================================================================= */

.footer-cta {
  background-color: var(--color-gold);
  padding: 3rem 0;                                   /* py-12 */
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-cta-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-charcoal);
  margin: 0 0 0.25rem;
}

@media (min-width: 768px) {
  .footer-cta-title {
    font-size: var(--text-3xl);
  }
}

.footer-cta-sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal-mid);
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .footer-cta-actions {
    flex-direction: row;
  }
}

/* ================================================================
   DIENST CARDS (image overlay title)
   ================================================================ */

.dienst-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dienst-card:hover {
  transform: translateY(-4px);
}

.dienst-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.dienst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dienst-card:hover .dienst-card-image img {
  transform: scale(1.05);
}

.dienst-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.7) 0%, rgba(26,26,24,0.1) 60%);
}

.dienst-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}

.dienst-card-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  z-index: 1;
}

/* ================================================================
   TRUST STRIP (below stats bar)
   ================================================================ */

.trust-strip {
  background: var(--color-cream);
  padding: 1rem 0;
  border-top: 1px solid var(--color-cream-mid);
  border-bottom: 1px solid var(--color-cream-mid);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.trust-strip-item {
  white-space: nowrap;
}

/* ================================================================
   SECTION LABEL SUB (spotlight)
   ================================================================ */

.section-label-sub {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* ================================================================
   WERKPROCES GRID (2-col met quote-afbeelding)
   ================================================================ */

.werkproces-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .werkproces-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Tablet (768–1023px): werkproces al 2-koloms (stappen + beeld naast elkaar)
   i.p.v. de lange 1-koloms stapel; compactere gap dan desktop.
   (showroom-grid krijgt zijn tablet-regel ná de eigen definitie, zie verderop) */
@media (min-width: 768px) and (max-width: 1023px) {
  .werkproces-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.werkproces-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.werkproces-step {
  display: flex;
  gap: 1.25rem;
}

.werkproces-step-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: oklch(0.98 0.008 75);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-gold);
}

.werkproces-step-title {
  font-family: var(--font-body);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin: 0 0 0.25rem;
  font-size: var(--text-base);
}

.werkproces-step-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-relaxed);
}

.werkproces-image-col {
  position: relative;
}

.werkproces-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: oklch(0.12 0.005 65 / 0.92);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.werkproces-quote-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: white;
  line-height: var(--leading-relaxed);
  margin: 0;
}

.werkproces-quote-cite {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-gold);
  margin: 0.5rem 0 0;
}

/* ================================================================
   SHOWROOM SECTION (2-col grid, dark bg with image overlay)
   ================================================================ */

.showroom-section {
  position: relative;
  overflow: hidden;
  background-color: oklch(0.22 0.015 220);
  padding: 5rem 0;
}

.showroom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.20;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showroom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Tablet (768–1023px): showroom-info naast de galerij i.p.v. eronder. Staat ná
   de basis-/desktop-definitie zodat deze bij gelijke specificiteit wint. */
@media (min-width: 768px) and (max-width: 1023px) {
  .showroom-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showroom-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.showroom-info-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.showroom-info-value {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: oklch(0.90 0.008 75);                        /* op donkere showroom-sectie: contrast verhoogd (was 0.80) */
  line-height: 1.6;
}

.showroom-gallery-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.showroom-gallery-2x2 .showroom-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.showroom-gallery-item .img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showroom-gallery-item:hover .img-cover {
  transform: scale(1.05);
}

/* btn-gold for showroom */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.btn-gold:hover {
  background: var(--color-gold-hover);
}

/* ================================================================
   REVIEW SCORE
   ================================================================ */

.review-score {
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

/* ================================================================
   FOOTER CTA (inside footer)
   ================================================================ */

.footer-cta {
  padding: 3rem 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-mid);
  text-align: center;
}

/* ================================================================
   FOOTER GRID — 5 columns on desktop
   ================================================================ */

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
}

/* ================================================================
   FOOTER HOURS
   ================================================================ */

.footer-hours {
  margin: 0;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.footer-hours-row dt {
  color: var(--color-text-muted);
}

.footer-hours-row dd {
  margin: 0;
  color: var(--color-text-secondary);
}

/* ================================================================
   MOBILE STICKY BAR
   ================================================================ */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: #000;                              /* helemaal zwart */
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  gap: 0;
}

/* 3 uniforme icoon + één-woord knoppen, compact */
.mobile-sticky-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.45rem 0.25rem;
  min-height: 52px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;                          /* 11px — één woord */
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-sticky-item svg {
  width: 20px;
  height: 20px;
}

.mobile-sticky-item:hover,
.mobile-sticky-item:active {
  background: rgba(255,255,255,0.08);
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

/* Add bottom padding to body for sticky bar (mobile only) */
@media (max-width: 767px) {
  body {
    padding-bottom: 3.5rem;
  }
}

/* ==== style.css ==== */
/* All design CSS comes from assets/css/ (design-tokens, typography, components, utilities).
   Only WordPress-required overrides below. */

.alignwide {
  max-width: var(--container-wide, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

img.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * OMS FORMS — theme-level styling
 * ─────────────────────────────────────────────────────────────────────────── */

.oms-form__row {
  margin-bottom: var(--space-4, 1rem);
}

.oms-form__row label {
  display: block;
  font-family: var(--font-body, 'Nunito', sans-serif);
  font-size: var(--text-sm, 0.875rem);
  font-weight: var(--font-semibold, 600);
  color: var(--color-text-primary, #1a1a18);
  margin-bottom: var(--space-2, 0.5rem);
}

.oms-form__row label .req {
  color: var(--color-gold, #b09858);
}

.oms-form__row input[type="text"],
.oms-form__row input[type="email"],
.oms-form__row input[type="tel"],
.oms-form__row input[type="number"],
.oms-form__row input[type="url"],
.oms-form__row textarea,
.oms-form__row select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: var(--input-height, 2.75rem);
  padding: var(--input-pad, 0.625rem 0.875rem);
  border: var(--input-border, 1px solid oklch(0.85 0.010 75));
  border-radius: var(--input-radius, 0.5rem);
  background-color: var(--input-bg, oklch(0.98 0.005 75));
  color: var(--input-text, #1a1a18);
  font-family: var(--font-body, 'Nunito', sans-serif);
  font-size: var(--text-sm, 0.875rem);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.oms-form__row textarea {
  height: auto;
  min-height: 7rem;
  resize: vertical;
}

.oms-form__row input:focus,
.oms-form__row textarea:focus,
.oms-form__row select:focus {
  border-color: var(--color-gold, #b09858);
  box-shadow: 0 0 0 3px oklch(0.68 0.08 75 / 0.15);
}

.oms-form__row--avg label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2, 0.5rem);
  font-weight: var(--font-normal, 400);
  font-size: var(--text-sm, 0.875rem);
  cursor: pointer;
}

.oms-form__row--avg input[type="checkbox"] {
  margin-top: 0.2em;
  accent-color: var(--color-gold, #b09858);
}

.oms-form__actions {
  margin-top: var(--space-6, 1.5rem);
}
