/*
 Theme Name:   Kerstpakketten Maatwerk Child
 Theme URI:    https://uwdomein.nl
 Description:  Child theme voor luxe zakelijke kerstpakketten landingspagina
 Author:       Vrint / de Kerstpakkettenbus / Lars Verhoofstad / Oscar de Vries 
 Author URI:   https://vrint.nl
 Template:     twentytwentyfour
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  kerstpakketten-maatwerk

 OPMERKING: Dit child theme is gebaseerd op Twenty Twenty-Four.
 Als u een ander parent theme gebruikt, pas dan 'Template:' hierboven aan.
*/

/* ============================================================
   INHOUD
   1.  CSS Custom Properties (variabelen)
   2.  Reset & Base
   3.  Typografie
   4.  Utility classes
   5.  Header & Navigatie
   6.  Hero sectie
   7.  Intro sectie
   8.  USP sectie
   9.  Voor wie sectie
   10. Werkwijze sectie
   11. Maatwerk sectie
   12. Impressie sectie
   13. FAQ sectie
   14. Contact sectie
   15. Footer
   16. Formulier
   17. Animaties
   18. Responsive (tablet)
   19. Responsive (mobiel)
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Kleuren — pas hier aan voor ander kleurenpalet */
    --kleur-groen:         #1C3A2E;   /* Diepgroen: primaire achtergrond/accent */
    --kleur-groen-licht:   #2A5240;   /* Iets lichter groen voor hover/variatie */
    --kleur-ivoor:         #F8F5EE;   /* Warm ivoor: lichte achtergrond */
    --kleur-ivoor-donker:  #EDE9DF;   /* Donkerder ivoor voor afwisseling */
    --kleur-goud:          #C9A96E;   /* Goud accent */
    --kleur-goud-licht:    #E0C898;   /* Lichter goud */
    --kleur-burgund:       #5C1E2A;   /* Donkerrood / bordeaux accent */
    --kleur-zwart:         #1A1A18;   /* Bijna zwart voor tekst */
    --kleur-grijs:         #6B6B66;   /* Grijstekst voor subtiele info */
    --kleur-grijs-licht:   #C8C5BC;   /* Lijn / scheiding */
    --kleur-wit:           #FFFFFF;

    /* Typografie */
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'DM Sans', 'Helvetica Neue', sans-serif;

    --fs-xs:   0.75rem;     /* 12px */
    --fs-sm:   0.875rem;    /* 14px */
    --fs-base: 1rem;        /* 16px */
    --fs-md:   1.125rem;    /* 18px */
    --fs-lg:   1.375rem;    /* 22px */
    --fs-xl:   1.75rem;     /* 28px */
    --fs-2xl:  2.25rem;     /* 36px */
    --fs-3xl:  3rem;        /* 48px */
    --fs-4xl:  4rem;        /* 64px */
    --fs-5xl:  5.5rem;      /* 88px */

    --lh-tight:  1.15;
    --lh-snug:   1.35;
    --lh-normal: 1.6;
    --lh-loose:  1.8;

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2.5rem;
    --space-xl:   4rem;
    --space-2xl:  6rem;
    --space-3xl:  9rem;

    /* Layout */
    --container-max:  1200px;
    --container-wide: 1400px;
    --gutter:         clamp(1.25rem, 5vw, 3rem);

    /* Overige */
    --radius-sm:    4px;
    --radius-md:    8px;
    --radius-lg:    16px;
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm:    0 2px 8px rgba(26,26,24,0.08);
    --shadow-md:    0 8px 32px rgba(26,26,24,0.12);
    --shadow-lg:    0 24px 64px rgba(26,26,24,0.16);

    /* Header hoogte (voor anker-offset compensatie) */
    --header-height: 80px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--kleur-zwart);
    background-color: var(--kleur-ivoor);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* WordPress admin bar compensatie */
body.admin-bar {
    scroll-padding-top: calc(var(--header-height) + 32px);
}
body.admin-bar .site-header {
    top: 32px;
}

img, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
}

/* Verberg WordPress default elementen die we niet gebruiken */
.kerstpakketten-landingspagina .entry-header,
.kerstpakketten-landingspagina .entry-footer,
.kerstpakketten-landingspagina .post-thumbnail {
    display: none !important;
}

.wp-site-blocks,
.wp-block-post-content {
    margin: 0;
    padding: 0;
}


/* ============================================================
   3. TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: var(--lh-tight);
    color: var(--kleur-zwart);
}

h1 { font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl)); }
h4 { font-size: clamp(var(--fs-lg), 2vw, var(--fs-2xl)); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p {
    font-size: var(--fs-md);
    line-height: var(--lh-loose);
    color: var(--kleur-grijs);
    max-width: 68ch;
}

/* Display tekst (grote hero koppen) */
.display-text {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.02em;
}

/* Sectie label (kleine kapitaal labels boven koppen) */
.sectie-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kleur-goud);
    display: block;
    margin-bottom: var(--space-sm);
}

/* Goud accent op koppen */
.accent-goud {
    color: var(--kleur-goud);
}

/* Goud streep decoratie onder sectie-titels */
.sectie-titel::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--kleur-goud), transparent);
    margin-top: var(--space-sm);
}

.sectie-titel.centred::after {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.container--wide {
    max-width: var(--container-wide);
}

.tekst-center { text-align: center; }
.tekst-rechts  { text-align: right; }

.verborgen-visueel {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* Knop basis */
.knop {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.85em 2em;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.knop--primair {
    background: var(--kleur-goud);
    color: var(--kleur-zwart);
}
.knop--primair:hover,
.knop--primair:focus-visible {
    background: var(--kleur-goud-licht);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.knop--donker {
    background: var(--kleur-groen);
    color: var(--kleur-ivoor);
}
.knop--donker:hover,
.knop--donker:focus-visible {
    background: var(--kleur-groen-licht);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.knop--outline {
    background: transparent;
    color: var(--kleur-ivoor);
    border: 1px solid rgba(201,169,110,0.6);
}
.knop--outline:hover,
.knop--outline:focus-visible {
    background: rgba(201,169,110,0.15);
    border-color: var(--kleur-goud);
}

/* Gouden pijl icoon in knop */
.knop__pijl {
    display: inline-block;
    transition: transform var(--transition);
}
.knop:hover .knop__pijl {
    transform: translateX(4px);
}

/* Focus ring voor accessibility */
:focus-visible {
    outline: 2px solid var(--kleur-goud);
    outline-offset: 3px;
}


/* ============================================================
   5. HEADER & NAVIGATIE
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    /* Begint transparant boven de hero */
    background: transparent;
}

/* Klasse toegevoegd via JS na scrollen */
.site-header.is-scrolled {
    background: var(--kleur-groen);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

/* AANPASSEN: vervang door uw eigen logo afbeelding */
.site-logo__afbeelding {
    height: 40px;
    width: auto;
}

.site-logo__tekst {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--kleur-ivoor);
    line-height: 1;
}

.site-logo__subtekst {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--kleur-goud-licht);
    margin-top: 2px;
}

/* Hoofdnavigatie */
.hoofd-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hoofd-nav__lijst {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hoofd-nav__link {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(248,245,238,0.85);
    text-decoration: none;
    padding: 0.25em 0;
    position: relative;
    transition: color var(--transition);
}

.hoofd-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--kleur-goud);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.hoofd-nav__link:hover,
.hoofd-nav__link:focus-visible {
    color: var(--kleur-ivoor);
}

.hoofd-nav__link:hover::after {
    transform: scaleX(1);
}

/* Hamburger knop (mobiel) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle__streep {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--kleur-ivoor);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__streep:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__streep:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__streep:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   6. HERO SECTIE
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* AANPASSEN: Vervang de URL door uw eigen hero-afbeelding */
/* Aanbevolen afbeeldingsformaat: 1920×1080px of groter, JPG geoptimaliseerd */
.hero__achtergrond {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        /* Gradient overlay voor leesbaarheid */
        linear-gradient(
            135deg,
            rgba(28,58,46,0.82) 0%,
            rgba(28,58,46,0.55) 50%,
            rgba(92,30,42,0.40) 100%
        ),
        /* AANPASSEN: hero afbeelding placeholder */
        url('assets/images/hero-kerstpakketten.jpg') center center / cover no-repeat;
    transform: scale(1.04);
    animation: hero-zoom-uit 8s ease-out forwards;
}

@keyframes hero-zoom-uit {
    from { transform: scale(1.04); }
    to   { transform: scale(1); }
}

/* Subtiele goud decoratieve lijn bovenaan hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--kleur-goud), transparent);
    z-index: 2;
}

.hero__inhoud {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--gutter) var(--space-2xl);
}

.hero__label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--kleur-goud);
    display: block;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fade-omhoog 0.7s ease 0.3s forwards;
}

.hero__kop {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--kleur-ivoor);
    max-width: 14ch;
    opacity: 0;
    animation: fade-omhoog 0.8s ease 0.5s forwards;
}

.hero__kop em {
    font-style: italic;
    color: var(--kleur-goud-licht);
}

.hero__ondertitel {
    margin-top: var(--space-md);
    font-size: var(--fs-lg);
    line-height: var(--lh-snug);
    color: rgba(248,245,238,0.80);
    max-width: 52ch;
    font-weight: 300;
    opacity: 0;
    animation: fade-omhoog 0.8s ease 0.75s forwards;
}

.hero__acties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    opacity: 0;
    animation: fade-omhoog 0.8s ease 1s forwards;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-in 1s ease 1.5s forwards;
}

.hero__scroll-lijn {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--kleur-goud), transparent);
    animation: scroll-lijn 2s ease-in-out infinite;
}

.hero__scroll-tekst {
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248,245,238,0.5);
    writing-mode: horizontal-tb;
}

@keyframes scroll-lijn {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ============================================================
   7. INTRO SECTIE
   ============================================================ */
.intro {
    padding: var(--space-3xl) 0;
    background: var(--kleur-ivoor);
    position: relative;
    overflow: hidden;
}

/* Decoratieve achtergrond letter */
.intro::before {
    content: 'K';
    position: absolute;
    right: -0.1em;
    top: -0.2em;
    font-family: var(--font-display);
    font-size: 40vw;
    line-height: 1;
    color: var(--kleur-groen);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
}

.intro__raster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro__tekst-blok { }

.intro__kop {
    margin-bottom: var(--space-md);
}

.intro__tekst {
    margin-bottom: var(--space-sm);
}

.intro__tekst:last-of-type {
    margin-bottom: var(--space-xl);
}

/* Citaat blok in intro */
.intro__citaat {
    border-left: 2px solid var(--kleur-goud);
    padding-left: var(--space-md);
    margin: var(--space-xl) 0;
}

.intro__citaat p {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-style: italic;
    font-weight: 300;
    line-height: var(--lh-snug);
    color: var(--kleur-zwart);
    max-width: none;
}

/* Afbeelding column in intro */
.intro__afbeelding-wrapper {
    position: relative;
}

.intro__afbeelding {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    /* AANPASSEN: Vervang door eigen sfeerafbeelding */
    background: var(--kleur-groen);
}

/* Goud kader effect */
.intro__afbeelding-wrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--kleur-goud);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Statistieken onder afbeelding */
.intro__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.intro__stat-cijfer {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 600;
    color: var(--kleur-groen);
    line-height: 1;
    display: block;
}

.intro__stat-label {
    font-size: var(--fs-sm);
    color: var(--kleur-grijs);
    display: block;
    margin-top: 4px;
}


/* ============================================================
   8. USP SECTIE (Voordelen)
   ============================================================ */
.usp {
    padding: var(--space-3xl) 0;
    background: var(--kleur-groen);
    position: relative;
    overflow: hidden;
}

/* Decoratief patroon */
.usp::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(201,169,110,0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.usp__kop-wrapper {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.usp__kop-wrapper .sectie-label {
    color: var(--kleur-goud-licht);
}

.usp__kop {
    color: var(--kleur-ivoor);
}

.usp__kop::after {
    margin: var(--space-sm) auto 0;
}

.usp__raster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.15);
    position: relative;
    z-index: 1;
}

.usp__item {
    padding: var(--space-xl) var(--space-lg);
    background: var(--kleur-groen);
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}

.usp__item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 0;
    background: var(--kleur-goud);
    transition: height 0.4s ease;
}

.usp__item:hover::before {
    height: 100%;
}

.usp__item:hover {
    background: rgba(42,82,64,0.8);
}

.usp__icoon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--kleur-goud);
}

.usp__titel {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--kleur-ivoor);
    margin-bottom: var(--space-sm);
    line-height: var(--lh-snug);
}

.usp__tekst {
    font-size: var(--fs-base);
    color: rgba(248,245,238,0.65);
    max-width: none;
}


/* ============================================================
   9. VOOR WIE SECTIE
   ============================================================ */
.voor-wie {
    padding: var(--space-3xl) 0;
    background: var(--kleur-ivoor-donker);
}

.voor-wie__raster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.voor-wie__intro p {
    max-width: none;
}

.voor-wie__kop {
    margin-bottom: var(--space-md);
}

.voor-wie__beschrijving {
    margin-bottom: var(--space-xl);
}

.voor-wie__lijst {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.voor-wie__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--kleur-ivoor);
    border-left: 3px solid var(--kleur-goud);
    transition: transform var(--transition), box-shadow var(--transition);
}

.voor-wie__item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.voor-wie__item-icoon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--kleur-goud);
    margin-top: 2px;
}

.voor-wie__item-titel {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--kleur-zwart);
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
}

.voor-wie__item-beschrijving {
    font-size: var(--fs-sm);
    color: var(--kleur-grijs);
    line-height: var(--lh-normal);
    max-width: none;
}


/* ============================================================
   10. WERKWIJZE SECTIE (4 stappen)
   ============================================================ */
.werkwijze {
    padding: var(--space-3xl) 0;
    background: var(--kleur-ivoor);
    position: relative;
}

.werkwijze__kop-wrapper {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.werkwijze__raster {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Verbindingslijn tussen stappen */
.werkwijze__raster::before {
    content: '';
    position: absolute;
    top: 36px; /* Hoogte van het stapnummer icoon */
    left: calc(25% / 2);
    right: calc(25% / 2);
    height: 1px;
    background: linear-gradient(90deg,
        var(--kleur-goud-licht),
        var(--kleur-goud),
        var(--kleur-goud),
        var(--kleur-goud-licht)
    );
    opacity: 0.4;
}

.werkwijze__stap {
    padding: 0 var(--space-md);
    text-align: center;
    position: relative;
}

.werkwijze__stap-nummer {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--kleur-goud);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--kleur-ivoor);
    position: relative;
    z-index: 1;
    transition: background var(--transition), color var(--transition);
}

.werkwijze__stap:hover .werkwijze__stap-nummer {
    background: var(--kleur-groen);
    border-color: var(--kleur-groen);
}

.werkwijze__stap-nummer span {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 300;
    color: var(--kleur-goud);
    transition: color var(--transition);
}

.werkwijze__stap:hover .werkwijze__stap-nummer span {
    color: var(--kleur-goud-licht);
}

.werkwijze__stap-titel {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--kleur-zwart);
    margin-bottom: var(--space-xs);
}

.werkwijze__stap-tekst {
    font-size: var(--fs-sm);
    color: var(--kleur-grijs);
    line-height: var(--lh-normal);
    max-width: none;
}

.werkwijze__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}


/* ============================================================
   11. MAATWERK SECTIE
   ============================================================ */
.maatwerk {
    padding: var(--space-3xl) 0;
    background: var(--kleur-zwart);
    position: relative;
    overflow: hidden;
}

/* Warme gloed decoratie */
.maatwerk::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.maatwerk__raster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.maatwerk__afbeelding-wrapper {
    position: relative;
}

.maatwerk__afbeelding {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    /* AANPASSEN: Vervang door eigen afbeelding van maatwerk pakket */
    background: var(--kleur-groen);
    opacity: 0.85;
}

/* Goud detail badge */
.maatwerk__badge {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(-1 * var(--space-lg));
    padding: var(--space-md) var(--space-lg);
    background: var(--kleur-goud);
    color: var(--kleur-zwart);
}

.maatwerk__badge-tekst {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    line-height: 1.1;
    display: block;
    margin: 0;
    max-width: none;
    color: var(--kleur-zwart);
}

.maatwerk__badge-subtekst {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26,26,24,0.7);
    margin-top: 4px;
    display: block;
    max-width: none;
}

.maatwerk__inhoud { }

.maatwerk__sectie-label {
    color: var(--kleur-goud-licht);
}

.maatwerk__kop {
    color: var(--kleur-ivoor);
    margin-bottom: var(--space-md);
}

.maatwerk__tekst {
    color: rgba(248,245,238,0.65);
    max-width: none;
    margin-bottom: var(--space-sm);
}

.maatwerk__kenmerken {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.maatwerk__kenmerk {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(248,245,238,0.8);
    font-size: var(--fs-base);
}

.maatwerk__kenmerk-icoon {
    width: 18px;
    height: 18px;
    color: var(--kleur-goud);
    flex-shrink: 0;
}


/* ============================================================
   12. IMPRESSIE SECTIE (sfeer galerij)
   ============================================================ */
.impressie {
    padding: var(--space-3xl) 0;
    background: var(--kleur-ivoor);
}

.impressie__kop-wrapper {
    text-align: center;
    max-width: 580px;
    margin: 0 auto var(--space-2xl);
}

/* Masonry-achtig grid voor sfeerbeelden */
.impressie__galerij {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.impressie__afbeelding {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    /* AANPASSEN: Verwijder achtergrondkleur en voeg echte afbeeldingen toe */
    background: var(--kleur-groen);
    min-height: 200px;
}

.impressie__afbeelding-wrapper {
    overflow: hidden;
    position: relative;
}

.impressie__afbeelding-wrapper:hover .impressie__afbeelding {
    transform: scale(1.04);
    filter: brightness(0.9);
}

/* Eerste afbeelding dubbel zo hoog */
.impressie__afbeelding-wrapper:first-child {
    grid-row: span 2;
}

.impressie__afbeelding-wrapper:first-child .impressie__afbeelding {
    min-height: 100%;
    aspect-ratio: unset;
}

.impressie__onderschrift {
    text-align: center;
    margin-top: var(--space-lg);
    font-style: italic;
    color: var(--kleur-grijs);
    font-size: var(--fs-base);
}


/* ============================================================
   13. FAQ SECTIE
   ============================================================ */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--kleur-ivoor-donker);
}

.faq__raster {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.faq__zijbalk { }

.faq__kop {
    margin-bottom: var(--space-md);
}

.faq__intro {
    color: var(--kleur-grijs);
    max-width: none;
    margin-bottom: var(--space-xl);
}

.faq__inhoud { }

.faq__item {
    border-bottom: 1px solid var(--kleur-grijs-licht);
}

.faq__item:first-child {
    border-top: 1px solid var(--kleur-grijs-licht);
}

.faq__vraag-knop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: var(--space-md);
    transition: color var(--transition);
}

.faq__vraag-tekst {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--kleur-zwart);
    line-height: var(--lh-snug);
    transition: color var(--transition);
}

.faq__vraag-knop:hover .faq__vraag-tekst,
.faq__item.is-open .faq__vraag-tekst {
    color: var(--kleur-groen);
}

.faq__icoon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--kleur-goud);
    transition: transform var(--transition);
}

.faq__item.is-open .faq__icoon {
    transform: rotate(45deg);
}

.faq__antwoord {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.is-open .faq__antwoord {
    max-height: 400px;
    padding-bottom: var(--space-md);
}

.faq__antwoord p {
    font-size: var(--fs-base);
    color: var(--kleur-grijs);
    line-height: var(--lh-loose);
    max-width: none;
}


/* ============================================================
   14. CONTACT SECTIE
   ============================================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--kleur-groen);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--kleur-goud), transparent);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(201,169,110,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.contact__raster {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-2xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__info { }

.contact__sectie-label {
    color: var(--kleur-goud-licht);
}

.contact__kop {
    color: var(--kleur-ivoor);
    margin-bottom: var(--space-md);
}

.contact__beschrijving {
    color: rgba(248,245,238,0.7);
    max-width: none;
    margin-bottom: var(--space-xl);
}

/* Directe contactgegevens blok */
.contact__direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201,169,110,0.25);
}

.contact__direct-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact__direct-icoon {
    width: 20px;
    height: 20px;
    color: var(--kleur-goud);
    flex-shrink: 0;
}

.contact__direct-link {
    color: rgba(248,245,238,0.85);
    font-size: var(--fs-base);
    text-decoration: none;
    transition: color var(--transition);
}

.contact__direct-link:hover {
    color: var(--kleur-goud-licht);
}

.contact__direct-label {
    display: block;
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(248,245,238,0.4);
    margin-bottom: 2px;
}

/* Openingstijden */
.contact__uren {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(248,245,238,0.05);
    border: 1px solid rgba(201,169,110,0.15);
}

.contact__uren-titel {
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--kleur-goud);
    margin-bottom: var(--space-xs);
    display: block;
}

.contact__uren p {
    font-size: var(--fs-sm);
    color: rgba(248,245,238,0.6);
    max-width: none;
    line-height: var(--lh-normal);
}


/* ============================================================
   16. FORMULIER
   ============================================================ */
.contact-formulier {
    background: var(--kleur-ivoor);
    padding: var(--space-xl);
}

.contact-formulier__titel {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--kleur-groen);
    margin-bottom: var(--space-lg);
}

.formulier-rij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.formulier-groep {
    margin-bottom: var(--space-md);
}

.formulier-groep--vol {
    grid-column: span 2;
}

.formulier-groep label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--kleur-grijs);
    margin-bottom: 0.5rem;
}

.formulier-groep label .vereist {
    color: var(--kleur-goud);
    margin-left: 2px;
}

.formulier-input,
.formulier-textarea,
.formulier-select {
    width: 100%;
    padding: 0.8em 1em;
    background: var(--kleur-ivoor-donker);
    border: 1px solid var(--kleur-grijs-licht);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--kleur-zwart);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.formulier-input:focus,
.formulier-textarea:focus,
.formulier-select:focus {
    outline: none;
    border-color: var(--kleur-groen);
    box-shadow: 0 0 0 3px rgba(28,58,46,0.1);
}

.formulier-input::placeholder,
.formulier-textarea::placeholder {
    color: var(--kleur-grijs-licht);
}

.formulier-textarea {
    resize: vertical;
    min-height: 120px;
}

.formulier-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B66' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
}

/* Privacy checkbox */
.formulier-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.formulier-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid var(--kleur-grijs-licht);
    border-radius: 0;
    background: var(--kleur-ivoor-donker);
    cursor: pointer;
    accent-color: var(--kleur-groen);
}

.formulier-checkbox-label {
    font-size: var(--fs-sm);
    color: var(--kleur-grijs);
    line-height: var(--lh-normal);
}

.formulier-checkbox-label a {
    color: var(--kleur-groen);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.formulier-verzenden {
    width: 100%;
    padding: 1em 2em;
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--kleur-groen);
    color: var(--kleur-ivoor);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.formulier-verzenden:hover,
.formulier-verzenden:focus-visible {
    background: var(--kleur-groen-licht);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.formulier-verzenden:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Succes- en foutmeldingen */
.formulier-melding {
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    display: none;
}

.formulier-melding--succes {
    background: rgba(28,58,46,0.08);
    border-left: 3px solid var(--kleur-groen);
    color: var(--kleur-groen);
}

.formulier-melding--fout {
    background: rgba(92,30,42,0.08);
    border-left: 3px solid var(--kleur-burgund);
    color: var(--kleur-burgund);
}

.formulier-melding.zichtbaar {
    display: block;
}

/* Veld validatie fout */
.formulier-groep.heeft-fout .formulier-input,
.formulier-groep.heeft-fout .formulier-textarea,
.formulier-groep.heeft-fout .formulier-select {
    border-color: var(--kleur-burgund);
}

.formulier-fout-tekst {
    display: none;
    font-size: var(--fs-xs);
    color: var(--kleur-burgund);
    margin-top: 4px;
}

.formulier-groep.heeft-fout .formulier-fout-tekst {
    display: block;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--kleur-zwart);
    color: rgba(248,245,238,0.55);
}

.footer__raster {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(248,245,238,0.08);
}

.footer__over-tekst {
    font-size: var(--fs-sm);
    color: rgba(248,245,238,0.45);
    max-width: 38ch;
    line-height: var(--lh-loose);
    margin-top: var(--space-sm);
}

.footer__kolom-titel {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kleur-goud);
    margin-bottom: var(--space-md);
    display: block;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__nav-link {
    font-size: var(--fs-sm);
    color: rgba(248,245,238,0.55);
    text-decoration: none;
    transition: color var(--transition);
    padding: 0.2em 0;
}

.footer__nav-link:hover {
    color: var(--kleur-goud-licht);
}

.footer__adres {
    font-style: normal;
    font-size: var(--fs-sm);
    color: rgba(248,245,238,0.45);
    line-height: var(--lh-loose);
}

.footer__adres a {
    color: rgba(248,245,238,0.6);
    transition: color var(--transition);
}

.footer__adres a:hover {
    color: var(--kleur-goud-licht);
}

/* Footer onderbalk */
.footer__onderbalk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copyright {
    font-size: var(--fs-xs);
    color: rgba(248,245,238,0.3);
}

.footer__juridisch {
    display: flex;
    gap: var(--space-md);
}

.footer__juridisch-link {
    font-size: var(--fs-xs);
    color: rgba(248,245,238,0.3);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__juridisch-link:hover {
    color: rgba(248,245,238,0.6);
}

/* Goud decoratieve lijn boven footer */
.site-footer::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--kleur-goud), transparent);
    margin-bottom: var(--space-2xl);
}


/* ============================================================
   17. ANIMATIES (scroll-in)
   ============================================================ */
@keyframes fade-omhoog {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Klasse die via IntersectionObserver wordt toegevoegd */
.animeer-bij-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animeer-bij-scroll.is-zichtbaar {
    opacity: 1;
    transform: translateY(0);
}

/* Vertraging voor gestaggerde animaties */
.animeer-bij-scroll:nth-child(2) { transition-delay: 0.1s; }
.animeer-bij-scroll:nth-child(3) { transition-delay: 0.2s; }
.animeer-bij-scroll:nth-child(4) { transition-delay: 0.3s; }
.animeer-bij-scroll:nth-child(5) { transition-delay: 0.4s; }
.animeer-bij-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Prefers reduced motion: alle animaties uit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animeer-bij-scroll {
        opacity: 1;
        transform: none;
    }
}


/* ============================================================
   18. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {

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

    .usp__raster .usp__item:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .werkwijze__raster {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .werkwijze__raster::before {
        display: none;
    }

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

    .impressie__afbeelding-wrapper:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .impressie__afbeelding-wrapper:first-child .impressie__afbeelding {
        min-height: 300px;
    }

    .maatwerk__badge {
        right: 0;
    }

    .contact__raster {
        grid-template-columns: 1fr 1.3fr;
    }

    .footer__raster {
        grid-template-columns: 1fr 1fr;
    }

    .footer__raster > .footer__kolom:first-child {
        grid-column: span 2;
    }
}


/* ============================================================
   19. RESPONSIVE — MOBIEL (≤768px)
   ============================================================ */
@media (max-width: 768px) {

    :root {
        --header-height: 68px;
    }

    /* ── Header: altijd donkergroen op mobiel ──────────────────
       Op desktop start de header transparant boven de hero-gradient.
       Op mobiel is dat visueel verwarrend — de header is hier altijd
       gevuld zodat logo en hamburger altijd leesbaar zijn.         */
    .site-header {
        background: var(--kleur-groen);
        box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    }

    /* ── Desktop navlinks verbergen — hamburger neemt het over ── */
    .hoofd-nav__lijst {
        /* Volledig verborgen (niet alleen ingeklapt) — voorkomt render-artefacten */
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--kleur-groen);
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--gutter);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;           /* extra: geen render-artefacten */
        opacity: 0;
        transition:
            max-height 0.35s ease,
            padding    0.3s  ease,
            opacity    0.25s ease,
            visibility 0s    linear 0.35s; /* vertraagd: pas onzichtbaar ná animatie */
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    /* Menu open */
    .hoofd-nav__lijst.is-open {
        max-height: 600px;  /* groot genoeg voor alle items + CTA */
        padding: var(--space-md) var(--gutter) var(--space-lg);
        visibility: visible;
        opacity: 1;
        transition:
            max-height 0.35s ease,
            padding    0.3s  ease,
            opacity    0.25s ease,
            visibility 0s    linear 0s;   /* direct zichtbaar bij openen */
    }

    /* Navigatielinks in het uitgeschoven menu */
    .hoofd-nav__link {
        font-size: var(--fs-base);
        font-weight: 400;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(248,245,238,0.1);
        color: var(--kleur-ivoor);
        display: block;
        width: 100%;
    }

    .hoofd-nav__link:last-of-type {
        border-bottom: none;
    }

    /* Actieve link markering */
    .hoofd-nav__link[aria-current="true"] {
        color: var(--kleur-goud-licht);
    }

    /* ── CTA-knop in het hamburgermenu ───────────────────────── */
    .hoofd-nav__knop {
        display: block;           /* was: display:none — nu zichtbaar in menu */
        margin-top: var(--space-md);
        width: 100%;
        text-align: center;
        padding: 0.85rem var(--space-md);
        font-size: var(--fs-base);
    }

    /* ── Hamburger knop tonen ────────────────────────────────── */
    .nav-toggle {
        display: flex;
    }

    /* Secties */
    .intro__raster,
    .voor-wie__raster,
    .maatwerk__raster,
    .faq__raster,
    .contact__raster {
        grid-template-columns: 1fr;
    }

    .intro__afbeelding-wrapper {
        order: -1;
    }

    .intro__afbeelding-wrapper::before {
        display: none;
    }

    .intro__stats {
        gap: var(--space-md);
    }

    .usp__raster {
        grid-template-columns: 1fr;
    }

    .usp__raster .usp__item:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .werkwijze__raster {
        grid-template-columns: 1fr;
    }

    .voor-wie__raster {
        gap: var(--space-xl);
    }

    .maatwerk__badge {
        position: static;
        display: inline-block;
        margin-top: var(--space-sm);
    }

    .impressie__galerij {
        grid-template-columns: 1fr;
    }

    .impressie__afbeelding-wrapper:first-child {
        grid-column: span 1;
    }

    .formulier-rij {
        grid-template-columns: 1fr;
    }

    .formulier-groep--vol {
        grid-column: span 1;
    }

    .footer__raster {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__raster > .footer__kolom:first-child {
        grid-column: span 1;
    }

    .footer__onderbalk {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .hero__acties {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {

    .contact-formulier {
        padding: var(--space-lg);
    }

    .intro__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
}


/* ============================================================
   20. COOKIEBANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--kleur-zwart);
    border-top: 1px solid rgba(201, 169, 110, 0.25);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.35);
    padding: var(--space-md) 0;
}

/* hidden attribuut overriden — JS verwijdert 'hidden' om te tonen */
.cookie-banner[hidden] {
    display: none;
}

/* Fade-out bij sluiten */
.cookie-banner--verbergen {
    animation: cookieFadeOut 0.35s ease forwards;
}

@keyframes cookieFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(12px); }
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.cookie-banner__tekst {
    flex: 1;
    min-width: 0;
}

.cookie-banner__titel {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--kleur-ivoor);
    margin: 0 0 var(--space-xs);
}

.cookie-banner__beschrijving {
    font-size: var(--fs-sm);
    color: rgba(248, 245, 238, 0.65);
    line-height: var(--lh-normal);
    margin: 0;
}

.cookie-banner__link {
    color: var(--kleur-goud-licht);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__link:hover {
    color: var(--kleur-goud);
}

.cookie-banner__acties {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* Voorkeursinstellingen (uitklapbaar) */
.cookie-banner__detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 6px;
}

.cookie-banner__detail[hidden] {
    display: none;
}

.cookie-banner__optie {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: rgba(248, 245, 238, 0.75);
    cursor: pointer;
    user-select: none;
}

.cookie-banner__optie input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--kleur-goud);
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-banner__optie input[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-banner__optie em {
    font-style: normal;
    color: rgba(248, 245, 238, 0.4);
    font-size: var(--fs-xs);
}

/* Knoppen */
.cookie-banner__knoppen {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-banner__knop {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    line-height: 1.4;
}

.cookie-banner__knop--instellen {
    background: transparent;
    color: rgba(248, 245, 238, 0.55);
    border-color: rgba(248, 245, 238, 0.2);
}

.cookie-banner__knop--instellen:hover {
    color: var(--kleur-ivoor);
    border-color: rgba(248, 245, 238, 0.45);
}

.cookie-banner__knop--weigeren {
    background: transparent;
    color: rgba(248, 245, 238, 0.75);
    border-color: rgba(248, 245, 238, 0.3);
}

.cookie-banner__knop--weigeren:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--kleur-ivoor);
}

.cookie-banner__knop--akkoord {
    background: var(--kleur-goud);
    color: var(--kleur-zwart);
    border-color: var(--kleur-goud);
}

.cookie-banner__knop--akkoord:hover {
    background: var(--kleur-goud-licht);
    border-color: var(--kleur-goud-licht);
}

/* Opslaan-knop (verschijnt in instellingen-modus) */
.cookie-banner__knop--opslaan {
    background: var(--kleur-groen);
    color: var(--kleur-ivoor);
    border-color: var(--kleur-groen);
}

.cookie-banner__knop--opslaan:hover {
    background: var(--kleur-groen-licht);
    border-color: var(--kleur-groen-licht);
}

/* Responsive — tablet */
@media (max-width: 900px) {
    .cookie-banner__inner {
        flex-direction: column;
        gap: var(--space-sm);
        padding: 0 var(--space-md);
    }

    .cookie-banner__knoppen {
        justify-content: flex-start;
    }
}

/* Responsive — mobiel */
@media (max-width: 600px) {
    .cookie-banner {
        padding: var(--space-sm) 0;
    }

    .cookie-banner__inner {
        padding: 0 var(--space-sm);
    }

    .cookie-banner__knoppen {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner__knop {
        width: 100%;
        text-align: center;
        padding: 0.65rem 1rem;
    }
}


/* ============================================================
   21. PRIVACY- EN COOKIEVERKLARINGSPAGINA
   ============================================================ */

/* Hero / intro blok */
.privacy-hero {
    background: var(--kleur-groen);
    padding: calc( var(--header-height, 80px) + var(--space-2xl) ) 0 var(--space-2xl);
}

.privacy-hero .sectie-label {
    color: var(--kleur-goud-licht);
}

.privacy-hero__kop {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 300;
    color: var(--kleur-ivoor);
    line-height: var(--lh-tight);
    margin: var(--space-xs) 0 var(--space-md);
    max-width: 700px;
}

.privacy-hero__intro {
    font-size: var(--fs-md);
    color: rgba(248, 245, 238, 0.75);
    line-height: var(--lh-normal);
    max-width: 680px;
    margin: 0 0 var(--space-sm);
}

.privacy-hero__datum {
    font-size: var(--fs-sm);
    color: rgba(248, 245, 238, 0.45);
    margin: 0;
}

/* Inhoud */
.privacy-inhoud {
    background: var(--kleur-ivoor);
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.privacy-tekst {
    max-width: 760px;
}

/* Secties */
.privacy-sectie {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--kleur-ivoor-donker);
}

.privacy-sectie:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-sectie h2 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--kleur-groen);
    margin: 0 0 var(--space-md);
    line-height: var(--lh-snug);
}

.privacy-sectie h3 {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--kleur-zwart);
    margin: var(--space-lg) 0 var(--space-sm);
}

.privacy-sectie p {
    font-size: var(--fs-base);
    color: var(--kleur-zwart);
    line-height: var(--lh-loose);
    margin: 0 0 var(--space-sm);
}

.privacy-sectie p:last-child {
    margin-bottom: 0;
}

.privacy-sectie ul {
    margin: 0 0 var(--space-sm) var(--space-md);
    padding: 0;
    list-style: none;
}

.privacy-sectie ul li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: var(--fs-base);
    color: var(--kleur-zwart);
    line-height: var(--lh-normal);
}

.privacy-sectie ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kleur-goud);
}

.privacy-sectie a {
    color: var(--kleur-groen);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-sectie a:hover {
    color: var(--kleur-groen-licht);
}

.privacy-sectie code {
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
    background: var(--kleur-ivoor-donker);
    padding: 0.15em 0.4em;
    border-radius: 3px;
    color: var(--kleur-burgund);
}

/* Tabel */
.privacy-tabel-wrapper {
    overflow-x: auto;
    margin: var(--space-sm) 0 var(--space-md);
    border-radius: 6px;
    border: 1px solid var(--kleur-ivoor-donker);
}

.privacy-tabel {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.privacy-tabel th {
    background: var(--kleur-groen);
    color: var(--kleur-ivoor);
    font-family: var(--font-body);
    font-weight: 500;
    text-align: left;
    padding: 0.65rem var(--space-sm);
    white-space: nowrap;
}

.privacy-tabel td {
    padding: 0.6rem var(--space-sm);
    border-bottom: 1px solid var(--kleur-ivoor-donker);
    color: var(--kleur-zwart);
    vertical-align: top;
    line-height: var(--lh-normal);
}

.privacy-tabel tr:last-child td {
    border-bottom: none;
}

.privacy-tabel tr:nth-child(even) td {
    background: rgba(237, 233, 223, 0.4);
}

/* Adresblok */
.privacy-adres {
    font-style: normal;
    font-size: var(--fs-base);
    color: var(--kleur-zwart);
    line-height: var(--lh-loose);
    background: var(--kleur-ivoor-donker);
    padding: var(--space-md);
    border-radius: 6px;
    border-left: 3px solid var(--kleur-goud);
    display: inline-block;
}

.privacy-adres a {
    color: var(--kleur-groen);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Header op privacypagina altijd ingeklapt (geen transparante start) */
.privacy-pagina .site-header {
    background: var(--kleur-groen) !important;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero__kop {
        font-size: var(--fs-2xl);
    }

    .privacy-inhoud {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .privacy-tabel th,
    .privacy-tabel td {
        padding: 0.5rem var(--space-sm);
    }
}

@media (max-width: 480px) {
    .privacy-hero__kop {
        font-size: var(--fs-xl);
    }
}
