/* ============================================
   KYAN BAAZ - CINEMATISCHE STYLESHEET V2
   ============================================ */

@font-face { font-family: 'Fraunces'; src: url('/static/fonts/Fraunces-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('/static/fonts/Fraunces-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('/static/fonts/Fraunces-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/static/fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/static/fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/static/fonts/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
    --blauw-primary: #1478b4;
    --blauw-licht: #2682c3;
    --paars-deep: #684170;
    --magenta: #8c1450;
    --magenta-licht: #a0205a;
    --creme: #faf7f2;
    --off-white: #ffffff;
    --tekst-donker: #0a0e27;
    --tekst-grijs: #4a4a5e;
    --grijs-licht: #e8e6e1;

    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-width: 1280px;
    --section-padding: 140px 24px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--tekst-grijs);
    background: var(--creme);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blauw-primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--magenta); }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--tekst-donker);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 8vw, 7rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { max-width: 65ch; }

/* ============ HEADER ============ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px 0;
}
.site-header.scrolled {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--grijs-licht);
    padding: 14px 0;
}
.nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 32px; max-width: 1440px; margin: 0 auto;
}
.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem; font-weight: 700;
    color: var(--off-white);
    transition: color 0.4s;
}
.scrolled .logo { color: var(--blauw-primary); }
.nav-menu { display: flex; gap: 40px; list-style: none; }
.nav-menu a {
    color: var(--off-white);
    font-size: 15px; font-weight: 500;
    position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute;
    bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--magenta);
    transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }
.scrolled .nav-menu a { color: var(--tekst-donker); }
.nav-cta {
    background: var(--magenta); color: var(--off-white) !important;
    padding: 13px 28px; border-radius: 100px;
    font-weight: 500; font-size: 15px;
    transition: all 0.3s;
}
.nav-cta:hover { background: var(--magenta-licht); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--off-white); }

/* ============ HERO CINEMATISCH ============ */
.hero-cinematic {
    height: 100vh; min-height: 700px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--tekst-donker);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    will-change: transform;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.65) 60%, rgba(10, 14, 39, 0.85) 100%),
        linear-gradient(135deg, rgba(20, 120, 180, 0.25) 0%, rgba(104, 65, 112, 0.25) 100%);
    opacity: 0.7;
    will-change: opacity;
}
.hero-content-cinematic {
    position: relative; z-index: 3;
    max-width: 1280px; width: 100%;
    padding: 0 32px; text-align: center;
    color: var(--off-white);
    will-change: transform, opacity;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 32px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}
.hero-cinematic.loaded .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-cinematic h1 { color: var(--off-white); margin-bottom: 32px; }
.hero-cinematic h1 .word {
    display: inline-block; overflow: hidden; vertical-align: top;
}
.hero-cinematic h1 .word .inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cinematic.loaded h1 .word:nth-child(1) .inner { transition-delay: 0.4s; }
.hero-cinematic.loaded h1 .word:nth-child(2) .inner { transition-delay: 0.5s; }
.hero-cinematic.loaded h1 .word:nth-child(3) .inner { transition-delay: 0.6s; }
.hero-cinematic.loaded h1 .word:nth-child(4) .inner { transition-delay: 0.7s; }
.hero-cinematic.loaded h1 .word:nth-child(5) .inner { transition-delay: 0.8s; }
.hero-cinematic.loaded h1 .word .inner { transform: translateY(0); }
.hero-cinematic h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--magenta-licht) 0%, var(--paars-deep) 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    font-weight: 400;
}
.hero-sub {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    max-width: 640px; margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s 1.0s, transform 0.8s 1.0s;
}
.hero-cinematic.loaded .hero-sub { opacity: 1; transform: translateY(0); }
.hero-cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s 1.3s, transform 0.8s 1.3s;
}
.hero-cinematic.loaded .hero-cta { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 500; font-size: 16px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    border: none; cursor: pointer;
    will-change: transform;
}
.btn-primary {
    background: var(--magenta); color: var(--off-white) !important;
    box-shadow: 0 4px 20px rgba(140, 20, 80, 0.3);
}
.btn-primary:hover {
    background: var(--magenta-licht);
    box-shadow: 0 12px 40px rgba(140, 20, 80, 0.4);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--off-white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--off-white); color: var(--tekst-donker) !important; }
.btn-light {
    background: var(--off-white); color: var(--blauw-primary) !important;
    box-shadow: 0 4px 20px rgba(20, 120, 180, 0.2);
}
.btn-light:hover { background: var(--creme); color: var(--magenta) !important; }
.btn i { transition: transform 0.3s; }
.btn:hover i { transform: translateX(4px); }

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%; transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 0.3em; text-transform: uppercase;
    z-index: 3;
    opacity: 0; transition: opacity 1s 1.5s;
}
.hero-cinematic.loaded .scroll-indicator { opacity: 1; }
.scroll-indicator-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7), transparent);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============ INTRO STATEMENT ============ */
.intro-statement {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: var(--section-padding);
    background: var(--creme);
    position: relative;
}
.intro-text { max-width: 1100px; text-align: center; position: relative; z-index: 2; }
.intro-text h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.2;
    color: var(--tekst-donker);
}
.intro-text h2 .reveal-word {
    display: inline-block;
    margin-right: 0.25em;
    opacity: 0.12;
    transition: opacity 0.6s ease;
}
.intro-text h2 .reveal-word.active { opacity: 1; }
.intro-text h2 em { font-style: italic; color: var(--magenta); }

/* ============ FOUNDATION BUILD ============ */
.foundation-build {
    background: var(--off-white);
    padding: var(--section-padding);
    position: relative; overflow: hidden;
}
.foundation-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
    max-width: var(--max-width); margin: 0 auto;
}
.foundation-text h2 { margin-bottom: 24px; }
.foundation-text .lead { font-size: 1.2rem; margin-bottom: 24px; color: var(--tekst-donker); }
.foundation-svg-wrap {
    position: relative; aspect-ratio: 1;
    max-width: 500px; margin: 0 auto;
}
.foundation-svg { width: 100%; height: 100%; }
.foundation-svg .block-1,
.foundation-svg .block-2,
.foundation-svg .block-3,
.foundation-svg .block-pillar {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}
.foundation-svg.animate .block-1 { transform: translateY(0); opacity: 1; transition-delay: 0.1s; }
.foundation-svg.animate .block-2 { transform: translateY(0); opacity: 1; transition-delay: 0.4s; }
.foundation-svg.animate .block-3 { transform: translateY(0); opacity: 1; transition-delay: 0.7s; }
.foundation-svg.animate .block-pillar { transform: translateY(0); opacity: 1; transition-delay: 1s; }

/* ============ STATS ============ */
.stats-section {
    padding: 100px 24px;
    background: var(--tekst-donker);
    color: var(--off-white);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(20, 120, 180, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(104, 65, 112, 0.2) 0%, transparent 50%);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; max-width: var(--max-width); margin: 0 auto;
    position: relative; z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--blauw-licht) 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    line-height: 1; margin-bottom: 12px;
}
.stat-label {
    font-size: 14px; text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============ HORIZONTAL SCROLL DIENSTEN (PINNED) ============ */
.diensten-h {
    background: var(--creme);
    padding: 120px 0 0;
}
.diensten-h-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 0 24px;
}
.diensten-h-header p { margin: 16px auto 0; font-size: 1.15rem; }

.h-scroll-wrap {
    position: relative;
    height: 100vh;
}
.h-scroll-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.h-scroll-track {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 10vw;
    will-change: transform;
}
.h-scroll-card {
    flex: 0 0 420px;
    height: 580px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(20, 120, 180, 0.15);
    display: flex;
    flex-direction: column;
}
.h-scroll-card-image {
    height: 260px;
    background: linear-gradient(135deg, var(--blauw-licht), var(--paars-deep));
    display: flex; align-items: center; justify-content: center;
    color: var(--off-white);
    font-family: var(--font-serif);
    font-size: 4rem; font-weight: 700;
    position: relative; overflow: hidden;
}
.h-scroll-card:nth-child(2) .h-scroll-card-image { background: linear-gradient(135deg, var(--paars-deep), var(--magenta)); }
.h-scroll-card:nth-child(3) .h-scroll-card-image { background: linear-gradient(135deg, var(--magenta), var(--magenta-licht)); }
.h-scroll-card:nth-child(4) .h-scroll-card-image { background: linear-gradient(135deg, var(--blauw-primary), var(--blauw-licht)); }
.h-scroll-card:nth-child(5) .h-scroll-card-image { background: linear-gradient(135deg, var(--blauw-primary), var(--paars-deep)); }
.h-scroll-card-image::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.h-scroll-card-content {
    padding: 36px; flex: 1;
    display: flex; flex-direction: column;
}
.h-scroll-card-content h3 { margin-bottom: 16px; }
.h-scroll-card-content p { margin-bottom: 24px; flex: 1; }
.card-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blauw-primary);
    font-weight: 500;
    transition: gap 0.3s;
}
.card-link:hover { gap: 14px; color: var(--magenta); }

/* ============ TILT KAARTEN ============ */
.tilt-cards {
    padding: var(--section-padding);
    background: var(--off-white);
}
.tilt-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--max-width); margin: 60px auto 0;
    perspective: 1500px;
}
.tilt-card {
    background: linear-gradient(145deg, var(--creme) 0%, var(--off-white) 100%);
    border: 1px solid var(--grijs-licht);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.4s;
    cursor: default;
}
.tilt-card:hover {
    box-shadow: 0 30px 80px rgba(20, 120, 180, 0.2);
}
.tilt-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blauw-primary), var(--paars-deep));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--off-white);
    margin-bottom: 24px;
    transform: translateZ(40px);
}
.tilt-card h3 { margin-bottom: 12px; transform: translateZ(30px); }
.tilt-card p { transform: translateZ(20px); margin: 0; }

/* ============ WERKGEBIED ============ */
.werkgebied {
    padding: var(--section-padding);
    background: var(--creme);
    text-align: center;
}
.werkgebied-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--magenta); margin-bottom: 20px;
}
.werkgebied h2 { margin-bottom: 24px; }
.werkgebied p { max-width: 600px; margin: 0 auto 48px; font-size: 1.15rem; }
.gemeentes {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px; max-width: 900px; margin: 0 auto;
}
.gemeente {
    background: var(--off-white);
    border: 1px solid var(--grijs-licht);
    padding: 14px 28px; border-radius: 100px;
    font-size: 15px; color: var(--tekst-donker);
    font-weight: 500;
    transition: background 0.3s, border-color 0.3s, color 0.3s, opacity 0.6s, transform 0.6s;
    opacity: 0; transform: translateY(20px);
}
.gemeente.visible { opacity: 1; transform: translateY(0); }
.gemeente:hover {
    background: var(--blauw-primary);
    border-color: var(--blauw-primary);
    color: var(--off-white);
}

/* ============ CTA BLOK ============ */
.cta-blok {
    padding: 80px 24px;
    background: var(--off-white);
}
.cta-inner {
    background: linear-gradient(135deg, var(--blauw-primary) 0%, var(--paars-deep) 60%, var(--magenta) 100%);
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    max-width: var(--max-width); margin: 0 auto;
    color: var(--off-white); text-align: center;
    position: relative; overflow: hidden;
}
.cta-inner::before {
    content: ''; position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
    pointer-events: none;
}
.cta-inner h2 { color: var(--off-white); margin-bottom: 20px; }
.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 40px; font-size: 1.2rem;
    max-width: 600px;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--tekst-donker);
    color: var(--grijs-licht);
    padding: 80px 56px 40px;
    margin: 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 14, 39, 0.15);
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 15% 20%, rgba(20, 120, 180, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 85% 80%, rgba(140, 20, 80, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; max-width: var(--max-width); margin: 0 auto 60px;
}
.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--off-white);
    margin-bottom: 24px; font-weight: 600;
}
.footer-col p { color: rgba(255, 255, 255, 0.6); font-size: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.6); font-size: 15px;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem; font-weight: 700;
    color: var(--off-white);
    margin-bottom: 20px; display: block;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px; text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    max-width: var(--max-width); margin: 0 auto;
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .nav-menu { display: none; }
    .nav-toggle { display: block; }
    .foundation-grid, .footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tilt-grid { grid-template-columns: 1fr; }
    .h-scroll-card { flex: 0 0 320px; height: 500px; }
    .cta-inner { padding: 60px 32px; }
}
@media (max-width: 640px) {
    :root { --section-padding: 80px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > * { text-align: center; }
}

/* ============================================
   CINEMATIC HOMEPAGE - FULLSCREEN SCROLL
   ============================================ */

/* Hide standaard header op cinematic pages, of laat zwevend */
.cinematic-wrapper {
  position: relative;
}

/* Verberg footer op homepage (cinematisch effect) - body.cinematic-mode */
body.cinematic-mode .site-footer {
  display: none;
}

/* Voorkom FOUC: verberg main + footer tot JS geladen */
body.cinematic-mode {
  overflow: hidden;
}

/* Site header transparant overheen */
body.cinematic-mode .site-header {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
body.cinematic-mode .site-header .logo,
body.cinematic-mode .site-header .nav-menu a {
  color: #fff !important;
}
body.cinematic-mode .nav-cta {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
}

.cine-section {
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  visibility: hidden;
  text-transform: none;
}

.cine-section .outer,
.cine-section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

.cine-section .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}

/* Gradient overlay voor leesbaarheid */
.cine-section .bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.55) 0%,
    rgba(10, 14, 39, 0.35) 50%,
    rgba(10, 14, 39, 0.75) 100%
  );
  z-index: 1;
}

/* Sectie achtergronden */
.cine-section.first .bg {
  background-image: url('/static/img/hero/scene-1.jpg');
}
.cine-section.second .bg {
  background-image: url('/static/img/hero/scene-2.jpg');
}
.cine-section.third .bg {
  background-image: url('/static/img/hero/scene-3.jpg');
}
.cine-section.fourth .bg {
  background-image: url('/static/img/hero/scene-4.jpg');
}
.cine-section.fifth .bg {
  background-image: url('/static/img/hero/scene-5.jpg');
}

/* Scene content */
.scene-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90vw;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.scene-content .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}

.scene-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  margin: 0;
  text-transform: none;
}

.scene-content .scene-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 700px;
  margin: 32px auto 0;
  font-weight: 400;
}

.scene-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cine-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.cine-btn-primary {
  background: var(--magenta);
  color: #fff;
}
.cine-btn-primary:hover {
  background: var(--magenta-licht);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(140, 20, 80, 0.4);
}

.cine-btn-outline {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(10px);
}
.cine-btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.cine-btn i {
  width: 18px;
  height: 18px;
}

/* Mask reveal voor h2 */
.clip-text {
  overflow: hidden;
  display: block;
}

/* Scroll hint */
.cine-scroll-hint {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  pointer-events: none;
}
.hint-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hint-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #fff;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* Sectie teller rechts onder */
.cine-counter {
  position: fixed;
  bottom: 48px;
  right: 48px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  pointer-events: none;
}
.cine-counter .current {
  font-size: 2rem;
  line-height: 1;
}
.cine-counter .separator {
  font-size: 1rem;
  opacity: 0.5;
  margin: 0 4px;
}
.cine-counter .total {
  font-size: 1rem;
  opacity: 0.7;
}

/* Will-change voor performance */
.cine-section .outer,
.cine-section .inner,
.cine-section .bg {
  will-change: transform;
}

/* Mobile */
@media (max-width: 768px) {
  .scene-content .eyebrow {
    font-size: 0.7rem;
    padding: 8px 16px;
    margin-bottom: 24px;
  }
  .scene-content h2 {
    font-size: clamp(2rem, 10vw, 4rem);
  }
  .scene-content .scene-sub {
    font-size: 1rem;
    margin-top: 24px;
  }
  .scene-cta {
    margin-top: 36px;
  }
  .cine-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .cine-scroll-hint {
    bottom: 24px;
    font-size: 0.65rem;
  }
  .cine-counter {
    bottom: 24px;
    right: 24px;
  }
  .cine-counter .current {
    font-size: 1.5rem;
  }
}

/* ============================================
   SUBPAGINA LAYOUTS - Over Ons / Subpages
   Aanvulling op bestaande style.css
   ============================================ */

/* Container voor leespagina's */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0e27;
}

.dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.4) 0%,
    transparent 50%,
    rgba(10, 14, 39, 0.8) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 24px 0;
  text-transform: none;
}

.page-hero-content .hero-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-weight: 400;
  max-width: none;
}

.page-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.page-hero-scroll span {
  display: block;
  width: 100%;
  height: 30px;
  background: #fff;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(-30px); }
  100% { transform: translateY(60px); }
}

/* ============ EYEBROW LABEL ============ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--magenta);
}
.eyebrow-light {
  color: rgba(255,255,255,0.9);
}
.eyebrow-light::after {
  background: #fff;
}
/* Centreerde eyebrow in section header */
.section-header .eyebrow,
.page-hero-content .eyebrow,
.scene-content .eyebrow {
  /* deze blijven hun eigen styling houden */
}
.page-hero-content .eyebrow::after,
.section-header .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.section-header .eyebrow {
  margin-bottom: 20px;
}
.section-header h2 {
  margin-bottom: 24px;
}

/* ============ STORY SECTION (oprichter) ============ */
.story-section {
  padding: 140px 0;
  background: var(--creme);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.15);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.story-image:hover img {
  transform: scale(1.05);
}
.story-image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-image-label strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--tekst-donker);
  font-weight: 600;
}
.story-image-label span {
  font-size: 0.85rem;
  color: var(--tekst-grijs);
}

.story-text h2 {
  margin: 0 0 24px 0;
}
.story-text .lead {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--tekst-donker);
  font-weight: 500;
  margin-bottom: 24px;
  max-width: none;
}
.story-text p {
  margin-bottom: 20px;
  color: var(--tekst-grijs);
}
.story-text strong {
  color: var(--tekst-donker);
}

/* ============ QUOTE SECTION ============ */
.quote-section {
  padding: 100px 0;
  background: var(--off-white);
}
.quote-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  position: relative;
}
.quote-icon {
  width: 60px;
  height: 60px;
  color: var(--magenta);
  opacity: 0.15;
  margin: 0 auto 24px;
}
.quote-block blockquote {
  margin: 0;
}
.quote-block blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--tekst-donker);
  font-weight: 500;
  margin: 0 auto;
  max-width: none;
}

/* ============ VALUES SECTION ============ */
.values-section {
  padding: 140px 0;
  background: var(--creme);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.value-card {
  background: #fff;
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grijs-licht);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blauw-primary), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 14, 39, 0.1);
  border-color: transparent;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blauw-primary), var(--paars-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.value-icon i {
  width: 30px;
  height: 30px;
}
.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.97rem;
  color: var(--tekst-grijs);
  line-height: 1.6;
  margin: 0;
}

/* ============ MISSION SECTION (donker) ============ */
.mission-section {
  padding: 140px 0;
}
.mission-section.dark {
  background: var(--tekst-donker);
  color: rgba(255,255,255,0.85);
}
.mission-section.dark h2 {
  color: #fff;
}
.mission-section.dark p {
  color: rgba(255,255,255,0.8);
}
.mission-section.dark strong {
  color: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text h2 {
  margin: 0 0 32px 0;
}
.mission-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.mission-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ VISION SECTION ============ */
.vision-section {
  padding: 140px 0;
  background: var(--off-white);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vision-text h2 {
  margin: 0 0 32px 0;
}
.vision-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.vision-text strong {
  color: var(--tekst-donker);
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 140px 0;
  background: var(--creme);
}
.cta-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--blauw-primary) 0%, var(--paars-deep) 50%, var(--magenta) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: 0 40px 80px rgba(10, 14, 39, 0.15);
}
.cta-block h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-block p {
  font-size: 1.15rem;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ btn-outline-dark (nieuwe variant) ============ */
.btn-outline-dark {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff !important;
  backdrop-filter: blur(10px);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  color: #fff !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .story-grid,
  .mission-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mission-image,
  .vision-image,
  .story-image {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4/3;
  }
  .story-section,
  .values-section,
  .mission-section,
  .vision-section,
  .cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 70vh;
    min-height: 480px;
  }
  .page-hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }
  .value-card {
    padding: 36px 28px;
  }
  .cta-block {
    padding: 60px 24px;
  }
  .quote-block {
    padding: 40px 20px;
  }
}

/* ============================================
   EXTRA COMPONENTEN VOOR ALLE SUBPAGINA'S
   Aanvulling op style.css
   ============================================ */

/* ============ KERNWAARDEN LIST (Ambulante) ============ */
.kernwaarden-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.kernwaarden-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
.kernwaarden-list li:last-child {
  border-bottom: none;
}
.kernwaarden-list i {
  width: 24px;
  height: 24px;
  color: var(--magenta-licht);
  flex-shrink: 0;
}

/* ============ KEURMERKEN GRID (Kwaliteit) ============ */
.keurmerken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.keurmerk-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 160px;
}
.keurmerk-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}
.keurmerk-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.keurmerk-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============ VACATURE CARD (Werken bij) ============ */
.vacature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.08);
  border: 1px solid var(--grijs-licht);
}
.vacature-header {
  border-bottom: 1px solid var(--grijs-licht);
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.vacature-badge {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vacature-header h2 {
  margin: 0 0 24px 0;
}
.vacature-niveau {
  display: block;
  font-size: 0.6em;
  color: var(--tekst-grijs);
  font-weight: 500;
  margin-top: 4px;
}
.vacature-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.vacature-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tekst-grijs);
  font-size: 0.92rem;
}
.vacature-meta i {
  width: 16px;
  height: 16px;
  color: var(--blauw-primary);
}
.vacature-body .lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--tekst-donker);
  font-weight: 500;
  margin-bottom: 20px;
  max-width: none;
}

/* ============ VACATURE GRID ============ */
.vacature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.vacature-block h3 {
  margin: 16px 0 20px 0;
  font-size: 1.6rem;
}
.vacature-block p {
  margin-bottom: 16px;
  color: var(--tekst-grijs);
}
.vacature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.vacature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--tekst-grijs);
  line-height: 1.6;
}
.vacature-list i {
  width: 20px;
  height: 20px;
  color: var(--blauw-primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.vacature-list .lucide-star {
  color: var(--magenta);
}
.vacature-list strong {
  color: var(--tekst-donker);
}

/* ============ BIEDEN LIST (Werken bij dark) ============ */
.bieden-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.bieden-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bieden-list li:last-child {
  border-bottom: none;
}
.bieden-list i {
  width: 28px;
  height: 28px;
  color: var(--magenta-licht);
  flex-shrink: 0;
  margin-top: 3px;
}
.bieden-list strong {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.bieden-list span {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.cta-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ STAPPEN GRID (Klachten) ============ */
.stappen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.stap-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--grijs-licht);
  position: relative;
  transition: all 0.4s ease;
}
.stap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(10, 14, 39, 0.1);
  border-color: transparent;
}
.stap-nummer {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blauw-primary), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}
.stap-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.stap-card p {
  font-size: 0.95rem;
  color: var(--tekst-grijs);
  margin: 0;
}

/* ============ EXTERN BLOCK (Klachten - klachtenportaal) ============ */
.extern-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.extern-icon {
  width: 56px;
  height: 56px;
  color: var(--magenta-licht);
  margin-bottom: 24px;
}
.extern-block h2 {
  margin-bottom: 16px;
}
.extern-block p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 0 auto 32px;
  max-width: 540px;
}

/* ============ DOCUMENTEN GRID (Klachten) ============ */
.documenten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.document-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--grijs-licht);
  transition: all 0.3s ease;
  cursor: pointer;
}
.document-card:hover {
  border-color: var(--blauw-primary);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 14, 39, 0.08);
}
.document-card i {
  width: 32px;
  height: 32px;
  color: var(--blauw-primary);
  margin-bottom: 16px;
}
.document-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.document-card p {
  font-size: 0.88rem;
  color: var(--tekst-grijs);
  margin: 0;
}

/* ============ CONTACT GRID ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  margin: 0 0 16px 0;
}
.contact-info .lead {
  margin-bottom: 40px;
  max-width: none;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grijs-licht);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blauw-primary), var(--paars-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-icon i {
  width: 22px;
  height: 22px;
}
.contact-list strong {
  display: block;
  color: var(--tekst-donker);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-list a,
.contact-list span {
  color: var(--tekst-grijs);
  line-height: 1.6;
}
.contact-list a:hover {
  color: var(--magenta);
}

/* ============ FORMULIEREN (Contact + Aanmelden) ============ */
.contact-form-wrap,
.aanmeld-form-wrap {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.08);
  border: 1px solid var(--grijs-licht);
}
.contact-form-wrap h3 {
  margin: 0 0 32px 0;
  font-size: 1.6rem;
}
.aanmeld-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.aanmeld-intro .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}
.aanmeld-intro h2 {
  margin-bottom: 16px;
}
.aanmeld-intro p {
  margin: 0 auto;
}

.aanmeld-form-wrap {
  max-width: 900px;
  margin: 0 auto;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 36px 0;
}
fieldset legend {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tekst-donker);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--grijs-licht);
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-3-1 {
  grid-template-columns: 3fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-row .form-group {
  margin-bottom: 0;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tekst-donker);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  border: 1px solid var(--grijs-licht);
  border-radius: 10px;
  background: var(--creme);
  color: var(--tekst-donker);
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blauw-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 120, 180, 0.1);
}
.form-group textarea {
  resize: vertical;
  font-family: var(--font-sans);
}

.form-checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}
.form-checkbox input {
  width: auto;
  margin-top: 3px;
}
.form-checkbox label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--tekst-grijs);
  line-height: 1.6;
}
.form-checkbox a {
  color: var(--blauw-primary);
  text-decoration: underline;
}

.form-submit {
  margin-top: 12px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--tekst-grijs);
  font-style: italic;
  margin: 16px 0 0;
}

/* ============ LEGAL CONTENT (Privacy) ============ */
.page-hero-simple {
  height: 50vh;
  min-height: 360px;
  background: linear-gradient(135deg, var(--tekst-donker) 0%, var(--paars-deep) 50%, var(--magenta) 100%);
}
.page-hero-overlay-simple {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06) 0%, transparent 60%);
  z-index: 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  margin: 0 0 24px 0;
}
.legal-content .lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--tekst-donker);
  font-weight: 500;
  margin-bottom: 40px;
  max-width: none;
}
.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--tekst-donker);
  margin: 48px 0 16px 0;
  padding-top: 24px;
  border-top: 2px solid var(--grijs-licht);
}
.legal-content h3:first-of-type {
  border-top: none;
  padding-top: 0;
}
.legal-content p {
  margin-bottom: 16px;
  color: var(--tekst-grijs);
  line-height: 1.75;
  max-width: none;
}
.legal-content strong {
  color: var(--tekst-donker);
}
.legal-content a {
  color: var(--blauw-primary);
  text-decoration: underline;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.legal-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--tekst-grijs);
  line-height: 1.6;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--magenta);
}
.legal-contact {
  margin-top: 60px;
  padding: 32px;
  background: var(--creme);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--magenta);
}
.legal-contact h3 {
  margin: 0 0 12px 0;
  padding-top: 0;
  border-top: none;
}
.legal-update {
  margin-top: 40px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--tekst-grijs);
}

/* ============ TEXT BLOCK GEMEENSCHAPPELIJK ============ */
.text-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.text-block .eyebrow {
  margin-bottom: 16px;
}
.text-block .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}
.text-block h2 {
  margin-bottom: 24px;
}
.text-block .lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--tekst-donker);
  margin: 0 auto 20px;
  max-width: 700px;
}
.text-block p {
  margin: 0 auto;
  max-width: 700px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .vacature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vacature-card {
    padding: 40px 28px;
  }
  .contact-form-wrap,
  .aanmeld-form-wrap {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-row .form-group {
    margin-bottom: 20px;
  }
  .vacature-meta {
    flex-direction: column;
    gap: 12px;
  }
  .stap-card {
    padding: 36px 28px;
  }
  .stap-nummer {
    font-size: 3rem;
  }
}

/* ============ MISSION FULL-WIDTH (zonder foto) ============ */
.mission-full {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mission-full .eyebrow {
  margin-bottom: 20px;
}
.mission-full .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}
.mission-full h2 {
  margin-bottom: 32px;
}
.mission-full p {
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
}

/* ============================================
   FLOATING FOOTER RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .site-footer {
    margin: 24px 16px;
    padding: 60px 32px 32px;
    border-radius: 24px;
  }
}
@media (max-width: 480px) {
  .site-footer {
    margin: 16px 12px;
    padding: 48px 24px 24px;
    border-radius: 20px;
  }
}

/* ============================================
   LOGO STYLING
   ============================================ */

/* Header logo */
.site-header .logo {
  display: flex;
  align-items: center;
  padding: 0;
}
.site-header .logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.site-header .logo:hover img {
  opacity: 0.85;
}

/* Footer logo */
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 768px) {
  .site-header .logo img {
    height: 38px;
  }
  .footer-logo-img {
    height: 48px;
  }
}

/* ============================================
   MINIMAL HEADER + MENU OVERLAY
   ============================================ */

/* Override oude nav styling - verberg nav-menu en nav-cta */
.site-header .nav-menu,
.site-header .nav-cta,
.site-header .nav-toggle {
  display: none !important;
}

/* Nieuwe minimale header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  background: transparent;
  transition: background 0.3s ease;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.site-header .logo:hover img {
  opacity: 0.8;
}

/* MENU TOGGLE BUTTON */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: var(--tekst-donker);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu-toggle:hover {
  background: var(--blauw-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 14, 39, 0.2);
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.menu-toggle-icon span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle-icon span:nth-child(1) { width: 24px; }
.menu-toggle-icon span:nth-child(2) { width: 16px; margin-left: auto; }

.menu-toggle:hover .menu-toggle-icon span:nth-child(2) {
  width: 24px;
  margin-left: 0;
}

.menu-toggle-text {
  line-height: 1;
}

/* Op cinematic homepage (donkere bg): witte toggle */
body.cinematic-mode .menu-toggle {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
body.cinematic-mode .menu-toggle:hover {
  background: rgba(255,255,255,0.25);
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(8px);
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

/* MENU CARD */
.menu-card {
  background: #fff;
  border-radius: 32px;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  max-height: 800px;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: scale(0.92) translateY(40px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}
.menu-overlay.is-open .menu-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Subtiele decoratieve gradient */
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 100%, rgba(20, 120, 180, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(140, 20, 80, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* CARD HEADER */
.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.menu-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.menu-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--grijs-licht);
  color: var(--tekst-donker);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.menu-close:hover {
  background: var(--tekst-donker);
  color: #fff;
  border-color: var(--tekst-donker);
  transform: rotate(90deg);
}

/* NAV LINKS */
.menu-nav {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu-nav li {
  overflow: hidden;
}
.menu-nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tekst-donker);
  text-decoration: none;
  padding: 4px 0;
  transform: translateY(120%);
  opacity: 0;
  transition: color 0.3s ease;
}

.menu-overlay.is-open .menu-nav a {
  animation: menu-line-in 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.menu-overlay.is-open .menu-nav li:nth-child(1) a { animation-delay: 0.3s; }
.menu-overlay.is-open .menu-nav li:nth-child(2) a { animation-delay: 0.4s; }
.menu-overlay.is-open .menu-nav li:nth-child(3) a { animation-delay: 0.5s; }
.menu-overlay.is-open .menu-nav li:nth-child(4) a { animation-delay: 0.6s; }
.menu-overlay.is-open .menu-nav li:nth-child(5) a { animation-delay: 0.7s; }
.menu-overlay.is-open .menu-nav li:nth-child(6) a { animation-delay: 0.8s; }

@keyframes menu-line-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.menu-nav a:hover {
  color: var(--magenta);
}

/* CARD FOOTER */
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--grijs-licht);
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.menu-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-contact a {
  color: var(--tekst-grijs);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.menu-contact a:hover {
  color: var(--magenta);
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--tekst-donker);
  color: #fff !important;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-cta:hover {
  background: var(--magenta);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(140, 20, 80, 0.3);
}
.menu-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Body lock wanneer menu open */
body.menu-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 24px;
  }
  .site-header .logo img {
    height: 36px;
  }
  .menu-toggle {
    padding: 10px 20px;
    font-size: 0.75rem;
    gap: 10px;
  }
  .menu-toggle-icon { width: 18px; }
  .menu-toggle-icon span:nth-child(1) { width: 18px; }
  .menu-toggle-icon span:nth-child(2) { width: 12px; }

  .menu-overlay {
    padding: 16px;
  }
  .menu-card {
    padding: 32px 28px;
    border-radius: 24px;
  }
  .menu-card-header {
    margin-bottom: 24px;
  }
  .menu-logo img {
    height: 36px;
  }
  .menu-close {
    width: 40px;
    height: 40px;
  }
  .menu-nav a {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  .menu-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .menu-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ORGANIC LOOK - SUBPAGINA'S
   Ronde hoeken + zachte schaduwen + golvende dividers
   ============================================ */

/* ===== ZACHTE SCHADUWEN + RONDE HOEKEN OVERAL ===== */

/* Story image (over-ons foto Nechir) */
.story-image {
  border-radius: 40px !important;
  box-shadow: 0 40px 100px rgba(10, 14, 39, 0.18), 0 10px 30px rgba(20, 120, 180, 0.08);
}

/* Mission/Vision images */
.mission-image,
.vision-image {
  border-radius: 40px !important;
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.15);
}

/* Value cards */
.value-card {
  border-radius: 32px !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(10, 14, 39, 0.06);
  background: #fff;
}
.value-card:hover {
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.12), 0 0 0 1px rgba(20, 120, 180, 0.1);
}

.value-icon {
  border-radius: 24px !important;
}

/* Stap cards (klachten) */
.stap-card {
  border-radius: 32px !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(10, 14, 39, 0.06);
}
.stap-card:hover {
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.12);
}

/* Document cards */
.document-card {
  border-radius: 24px !important;
  border: none !important;
  box-shadow: 0 6px 24px rgba(10, 14, 39, 0.05);
}
.document-card:hover {
  box-shadow: 0 20px 50px rgba(10, 14, 39, 0.1);
}

/* Vacature card */
.vacature-card {
  border-radius: 40px !important;
  border: none !important;
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.08);
}

/* Keurmerk cards */
.keurmerk-card {
  border-radius: 24px !important;
}

/* CTA block */
.cta-block {
  border-radius: 48px !important;
  box-shadow: 0 50px 100px rgba(10, 14, 39, 0.2), 0 0 80px rgba(140, 20, 80, 0.15);
}

/* Form wrappers */
.contact-form-wrap,
.aanmeld-form-wrap {
  border-radius: 40px !important;
  border: none !important;
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.08);
}

/* Form fields - rondere inputs */
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 16px !important;
  border: 1.5px solid transparent !important;
  background: #f5f3ee !important;
  padding: 16px 20px !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blauw-primary) !important;
  background: #fff !important;
}

/* Page hero met afgeronde onderkant */
.page-hero {
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
}

/* ===== GOLVENDE DIVIDERS TUSSEN SECTIES ===== */

/* Wave divider element */
.wave-divider {
  position: relative;
  height: 80px;
  margin-top: -80px;
  z-index: 2;
  pointer-events: none;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Wave-top: wave aan de bovenkant van een sectie */
.section-wave-top {
  position: relative;
  padding-top: 0 !important;
}
.section-wave-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C320,80 560,0 720,40 C880,80 1120,0 1440,40 L1440,80 L0,80 Z' fill='%23faf7f2'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Wave-bottom: wave aan de onderkant van een sectie */
.section-wave-bottom {
  position: relative;
  padding-bottom: 160px !important;
}
.section-wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C320,0 560,80 720,40 C880,0 1120,80 1440,40 L1440,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ===== BLOB DECORATIES ===== */

/* Floating blob shapes als decoratie - subtiel */
.story-section,
.values-section,
.vision-section {
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 120, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.values-section::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 20, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Container zorgen dat hij boven de blobs zit */
.story-section .container,
.values-section .container,
.vision-section .container {
  position: relative;
  z-index: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .page-hero {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .story-image,
  .mission-image,
  .vision-image {
    border-radius: 28px !important;
  }

  .value-card,
  .stap-card,
  .vacature-card,
  .contact-form-wrap,
  .aanmeld-form-wrap {
    border-radius: 24px !important;
  }

  .cta-block {
    border-radius: 32px !important;
  }

  /* Kleiner wave op mobile */
  .story-section::after,
  .quote-section::after,
  .values-section::after,
  .mission-section.dark::after,
  .vision-section::after {
    height: 50px;
  }

  .story-section,
  .quote-section,
  .values-section,
  .mission-section.dark,
  .vision-section {
    padding-bottom: 120px !important;
  }
}

/* ============================================
   VOL GAS PASTEL KLEUREN - SUBPAGINA'S
   Pastel tinten van logo: zacht blauw, paars, magenta
   ============================================ */

/* Pastel kleur variabelen */
:root {
  --pastel-blauw: #d6e9f5;
  --pastel-blauw-deep: #a8d0e8;
  --pastel-paars: #e3d9e8;
  --pastel-paars-deep: #c4b5cf;
  --pastel-magenta: #f5d9e6;
  --pastel-magenta-deep: #e8b8ce;
  --pastel-creme: #faf5f0;
  --pastel-mint: #d9eee3;
}

/* ===== SECTIE ACHTERGRONDEN MET PASTEL GRADIENTS ===== */

/* Story sectie: zacht blauw-creme verloop */
.story-section {
  background: linear-gradient(135deg, #faf7f2 0%, #f0e8f0 50%, #e8eef5 100%) !important;
}

/* Quote sectie: pastel paars-magenta */
.quote-section {
  background: linear-gradient(135deg, #faf5f0 0%, #f5e8ee 100%) !important;
}

/* Values sectie: pastel blauw */
.values-section {
  background: linear-gradient(180deg, #e8eef5 0%, #faf7f2 100%) !important;
}

/* Mission section dark: gradient van paars naar magenta naar blauw */
.mission-section.dark {
  background: linear-gradient(135deg, #1a1247 0%, #2d1b4e 30%, #4a1f5c 70%, #5c1d4d 100%) !important;
}

/* Vision sectie: pastel mint-blauw */
.vision-section {
  background: linear-gradient(135deg, #faf7f2 0%, #e8f0ea 50%, #d6e9f5 100%) !important;
}

/* CTA sectie achtergrond */
.cta-section {
  background: linear-gradient(135deg, #f5e8ee 0%, #faf7f2 100%) !important;
}

/* CTA block extra kleurrijk */
.cta-block {
  background: linear-gradient(135deg, #1478b4 0%, #684170 35%, #8c1450 70%, #a0205a 100%) !important;
}

/* ===== KLEURRIJKE BLOB DECORATIES (sterker) ===== */

.story-section::before {
  width: 700px !important;
  height: 700px !important;
  background: radial-gradient(circle, rgba(20, 120, 180, 0.15) 0%, transparent 70%) !important;
}

.values-section::before {
  width: 800px !important;
  height: 800px !important;
  background: radial-gradient(circle, rgba(140, 20, 80, 0.13) 0%, transparent 70%) !important;
}

.vision-section::before {
  width: 700px !important;
  height: 700px !important;
  background: radial-gradient(circle, rgba(104, 65, 112, 0.12) 0%, transparent 70%) !important;
}

/* Extra blob op quote sectie */
.quote-section {
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 20, 80, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.quote-section .container {
  position: relative;
  z-index: 1;
}

/* ===== GRADIENT TEKST ACCENTS ===== */

/* H2 in section-header krijgen accent gradient op laatste woord */
.section-header h2 .accent,
.story-text h2 .accent,
.mission-text h2 .accent,
.vision-text h2 .accent {
  background: linear-gradient(90deg, #1478b4 0%, #684170 50%, #8c1450 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Eyebrow met meer kleur */
.eyebrow {
  background: linear-gradient(90deg, #1478b4 0%, #8c1450 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-weight: 600 !important;
}
.eyebrow::after {
  background: linear-gradient(90deg, #1478b4 0%, #8c1450 100%) !important;
}
.eyebrow-light {
  background: none !important;
  color: rgba(255,255,255,0.95) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.95) !important;
}

/* Lead tekst krijgt subtiele gradient */
.story-text .lead,
.vision-text .lead {
  color: var(--tekst-donker) !important;
}

/* ===== KLEURRIJKE VALUE CARDS ===== */

/* Iedere value card krijgt eigen pastel achtergrond */
.values-grid .value-card:nth-child(4n+1) {
  background: linear-gradient(135deg, #ffffff 0%, #e8f0f5 100%) !important;
}
.values-grid .value-card:nth-child(4n+1) .value-icon {
  background: linear-gradient(135deg, #1478b4 0%, #2682c3 100%) !important;
}

.values-grid .value-card:nth-child(4n+2) {
  background: linear-gradient(135deg, #ffffff 0%, #f0e8f0 100%) !important;
}
.values-grid .value-card:nth-child(4n+2) .value-icon {
  background: linear-gradient(135deg, #684170 0%, #8b5a93 100%) !important;
}

.values-grid .value-card:nth-child(4n+3) {
  background: linear-gradient(135deg, #ffffff 0%, #f5e8ee 100%) !important;
}
.values-grid .value-card:nth-child(4n+3) .value-icon {
  background: linear-gradient(135deg, #8c1450 0%, #a0205a 100%) !important;
}

.values-grid .value-card:nth-child(4n+4) {
  background: linear-gradient(135deg, #ffffff 0%, #e8eee8 100%) !important;
}
.values-grid .value-card:nth-child(4n+4) .value-icon {
  background: linear-gradient(135deg, #2682c3 0%, #684170 100%) !important;
}

/* Card hover effect: kleurige gloed */
.value-card:hover {
  box-shadow: 0 30px 80px rgba(20, 120, 180, 0.15), 0 0 60px rgba(140, 20, 80, 0.08) !important;
}

/* Gradient bovenkant van de card meer zichtbaar */
.value-card::before {
  height: 6px !important;
  background: linear-gradient(90deg, #1478b4 0%, #684170 50%, #8c1450 100%) !important;
  transform: scaleX(1) !important;
  opacity: 0.6;
}
.value-card:hover::before {
  opacity: 1;
}

/* ===== STAP CARDS KLEURRIJK ===== */

.stappen-grid .stap-card:nth-child(4n+1) {
  background: linear-gradient(135deg, #ffffff 0%, #e8f0f5 100%) !important;
}
.stappen-grid .stap-card:nth-child(4n+2) {
  background: linear-gradient(135deg, #ffffff 0%, #f0e8f0 100%) !important;
}
.stappen-grid .stap-card:nth-child(4n+3) {
  background: linear-gradient(135deg, #ffffff 0%, #f5e8ee 100%) !important;
}
.stappen-grid .stap-card:nth-child(4n+4) {
  background: linear-gradient(135deg, #ffffff 0%, #e8eee8 100%) !important;
}

/* ===== DOCUMENT CARDS ICONEN KLEUREN ===== */

.documenten-grid .document-card:nth-child(4n+1) i { color: #1478b4 !important; }
.documenten-grid .document-card:nth-child(4n+2) i { color: #684170 !important; }
.documenten-grid .document-card:nth-child(4n+3) i { color: #8c1450 !important; }
.documenten-grid .document-card:nth-child(4n+4) i { color: #2682c3 !important; }

/* ===== CONTACT LIST ICONEN KLEUREN ===== */

.contact-list li:nth-child(1) .contact-icon {
  background: linear-gradient(135deg, #1478b4 0%, #2682c3 100%) !important;
}
.contact-list li:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, #684170 0%, #8b5a93 100%) !important;
}
.contact-list li:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, #8c1450 0%, #a0205a 100%) !important;
}
.contact-list li:nth-child(4) .contact-icon {
  background: linear-gradient(135deg, #2682c3 0%, #684170 100%) !important;
}

/* ===== KEURMERK CARDS PASTEL TINTEN ===== */

.keurmerken-grid .keurmerk-card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}
.keurmerken-grid .keurmerk-card:hover {
  background: rgba(255,255,255,0.18) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

/* ===== VACATURE CARD GRADIENT ===== */

.vacature-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf5f0 100%) !important;
}
.vacature-badge {
  background: linear-gradient(90deg, #8c1450 0%, #a0205a 100%) !important;
}

/* ===== FORMULIEREN KLEURRIJKE INPUTS ===== */

.form-group input,
.form-group select,
.form-group textarea {
  background: #faf5f0 !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #ffffff !important;
  border-color: #1478b4 !important;
  box-shadow: 0 0 0 4px rgba(20, 120, 180, 0.12) !important;
}

fieldset legend {
  background: linear-gradient(90deg, #1478b4 0%, #8c1450 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid rgba(20, 120, 180, 0.2) !important;
}

/* ===== STAP NUMMERS GROTER + KLEURIG ===== */

.stappen-grid .stap-card:nth-child(4n+1) .stap-nummer {
  background: linear-gradient(135deg, #1478b4 0%, #2682c3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stappen-grid .stap-card:nth-child(4n+2) .stap-nummer {
  background: linear-gradient(135deg, #684170 0%, #8b5a93 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stappen-grid .stap-card:nth-child(4n+3) .stap-nummer {
  background: linear-gradient(135deg, #8c1450 0%, #a0205a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stappen-grid .stap-card:nth-child(4n+4) .stap-nummer {
  background: linear-gradient(135deg, #2682c3 0%, #684170 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ===== STORY IMAGE LABEL KLEURIGE BORDER ===== */

.story-image-label {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%) !important;
  border-left: 4px solid;
  border-image: linear-gradient(180deg, #1478b4 0%, #8c1450 100%) 1;
}

/* ===== EXTERN BLOCK MEER GLOED ===== */

.extern-block .extern-icon {
  filter: drop-shadow(0 0 30px rgba(140, 20, 80, 0.5));
}

/* ============================================
   INTENSE SCROLL ANIMATIES - SUBPAGINA'S
   ============================================ */

body.cinematic-mode .anim-slide-left,
body.cinematic-mode .anim-slide-right,
body.cinematic-mode .anim-fade-up,
body.cinematic-mode .anim-3d-flip,
body.cinematic-mode .anim-3d-rotate,
body.cinematic-mode .anim-rotate-in,
body.cinematic-mode .anim-rotate-in-right,
body.cinematic-mode .anim-zoom-rotate,
body.cinematic-mode .anim-spin-in,
body.cinematic-mode .anim-scale-up {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ===== HEADER PERSPECTIVE VOOR 3D EFFECTEN ===== */
.story-section,
.values-section,
.mission-section,
.vision-section,
.cta-section,
.story-grid,
.values-grid,
.stappen-grid,
.documenten-grid,
.keurmerken-grid {
  perspective: 1500px;
}

/* ===== SLIDE LEFT/RIGHT (INTENS) ===== */

.anim-slide-left {
  opacity: 0;
  transform: translateX(-120px) rotateY(15deg);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.anim-slide-left.anim-in {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(120px) rotateY(-15deg);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.anim-slide-right.anim-in {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

/* ===== FADE UP MET BLUR ===== */

.anim-fade-up {
  opacity: 0;
  transform: translateY(70px);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease-out;
}
.anim-fade-up.anim-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== 3D FLIP - cards klappen open vanaf links ===== */

.anim-3d-flip {
  opacity: 0;
  transform: perspective(1200px) rotateY(-90deg) translateZ(-100px);
  transform-origin: left center;
  transition: opacity 1.1s cubic-bezier(0.34, 1.4, 0.64, 1), transform 1.1s cubic-bezier(0.34, 1.4, 0.64, 1);
  backface-visibility: hidden;
  will-change: opacity, transform;
}
.anim-3d-flip.anim-in {
  opacity: 1;
  transform: perspective(1200px) rotateY(0) translateZ(0);
}

/* ===== 3D ROTATE - hele rotatie binnen ===== */

.anim-3d-rotate {
  opacity: 0;
  transform: perspective(1200px) rotateX(-90deg) translateY(80px);
  transform-origin: top center;
  transition: opacity 1.1s cubic-bezier(0.34, 1.4, 0.64, 1), transform 1.1s cubic-bezier(0.34, 1.4, 0.64, 1);
  backface-visibility: hidden;
}
.anim-3d-rotate.anim-in {
  opacity: 1;
  transform: perspective(1200px) rotateX(0) translateY(0);
}

/* ===== ROTATE-IN voor foto's - draaien terwijl ze binnenkomen ===== */

.anim-rotate-in {
  opacity: 0;
  transform: rotate(-12deg) scale(0.7) translateX(-80px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.anim-rotate-in.anim-in {
  opacity: 1;
  transform: rotate(0) scale(1) translateX(0);
}

.anim-rotate-in-right {
  opacity: 0;
  transform: rotate(12deg) scale(0.7) translateX(80px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.anim-rotate-in-right.anim-in {
  opacity: 1;
  transform: rotate(0) scale(1) translateX(0);
}

/* ===== ZOOM-ROTATE voor quote/cta blocks ===== */

.anim-zoom-rotate {
  opacity: 0;
  transform: scale(0.7) rotate(-5deg);
  transition: opacity 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-zoom-rotate.anim-in {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* ===== SPIN-IN voor keurmerken ===== */

.anim-spin-in {
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-spin-in.anim-in {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* ===== SCALE UP dramatic ===== */

.anim-scale-up {
  opacity: 0;
  transform: scale(0.6) translateY(80px);
  transition: opacity 1.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-scale-up.anim-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ===== WORD REVEAL - voor h2 headings woord voor woord ===== */

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotateX(-90deg);
  transform-origin: top center;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-word.anim-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ===== CARD TILT TRANSITIE ===== */

.value-card,
.stap-card,
.document-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

/* ===== HERO H1 PARALLAX ===== */

.page-hero-content {
  transition: opacity 0.1s linear;
  will-change: transform, opacity;
}
.page-hero h1 {
  transition: filter 0.2s linear;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  [class*="anim-"],
  .reveal-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ===== MOBILE - iets minder dramatic ===== */
@media (max-width: 768px) {
  .anim-slide-left { transform: translateX(-60px) rotateY(8deg); }
  .anim-slide-right { transform: translateX(60px) rotateY(-8deg); }
  .anim-fade-up { transform: translateY(40px); }
  .anim-3d-flip { transform: perspective(800px) rotateY(-60deg); }
  .anim-3d-rotate { transform: perspective(800px) rotateX(-60deg) translateY(50px); }
  .anim-rotate-in { transform: rotate(-8deg) scale(0.85) translateX(-40px); }
  .anim-rotate-in-right { transform: rotate(8deg) scale(0.85) translateX(40px); }
  .anim-zoom-rotate { transform: scale(0.85) rotate(-3deg); }
  .anim-spin-in { transform: rotate(-90deg) scale(0.7); }
  .anim-scale-up { transform: scale(0.8) translateY(50px); }

  /* Disable tilt op mobile - geen hover */
  .value-card,
  .stap-card,
  .document-card {
    transition: box-shadow 0.4s ease;
  }
}

/* ============================================
   FADE FOOTER
   ============================================ */

.site-footer.fade-footer {
  background: linear-gradient(
    180deg,
    #5a85b0 0%,
    #4a75a0 10%,
    #2c5f8a 25%,
    #1a4570 40%,
    #0e3258 55%,
    #0a2540 70%,
    #0a1a35 85%,
    #0a1428 100%
  ) !important;
  padding: 200px 60px 180px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.site-footer.fade-footer::before,
.site-footer.fade-footer::after {
  display: none !important;
}

main {
  position: relative;
}

.edge-end {
  position: relative;
  margin-top: -1px;
  background: #0a1428;
  overflow: hidden;
  width: 100%;
  height: 200px;
  display: block;
}
.edge-end svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.footer-brand h3 .italic {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 24px 0 0;
  max-width: 320px;
  line-height: 1.5;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}
.footer-btn i { width: 16px; height: 16px; }

.fade-footer .footer-col {
  display: block;
}
.fade-footer .footer-col h4 { display: none; }
.fade-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fade-footer .footer-col li {
  margin-bottom: 10px;
}
.fade-footer .footer-col a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  display: inline-block;
}
.fade-footer .footer-col a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.fade-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 60px;
  border-top: none !important;
  align-items: end;
  text-align: left !important;
}
.fade-footer .footer-bottom-col {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}
.fade-footer .footer-bottom-col strong {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.fade-footer .footer-logo-img { display: none; }

body.cinematic-mode .site-footer,
body.cinematic-mode .edge-end {
  display: none !important;
}

@media (max-width: 968px) {
  .fade-footer .footer-top,
  .fade-footer .footer-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .fade-footer .footer-top,
  .fade-footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer.fade-footer {
    padding: 120px 24px 120px !important;
  }
  .footer-brand h3 { font-size: 1.8rem; }
  .fade-footer .footer-col a { font-size: 1.15rem; }
}

/* ============================================
   ALLE LAATSTE SECTIES → EXACT ZELFDE GRADIENT
   ============================================ */
body main > section:last-of-type {
  background: linear-gradient(180deg, #faf7f2 0%, #c9d8e8 40%, #5a85b0 100%) !important;
  padding-bottom: 100px !important;
  color: #fff !important;
}

body main > section:last-of-type h1,
body main > section:last-of-type h2,
body main > section:last-of-type h3,
body main > section:last-of-type h4,
body main > section:last-of-type h5,
body main > section:last-of-type h6,
body main > section:last-of-type p,
body main > section:last-of-type li,
body main > section:last-of-type span,
body main > section:last-of-type strong,
body main > section:last-of-type em,
body main > section:last-of-type a:not(.btn):not(.cine-btn):not(.footer-btn):not(.extern-btn):not(.cine-btn-primary):not(.cine-btn-outline):not(.cta-btn) {
  color: #fff !important;
}

body main > section:last-of-type .value-card,
body main > section:last-of-type .stap-card,
body main > section:last-of-type .document-card,
body main > section:last-of-type .vacature-card {
  background: rgba(255,255,255,0.95) !important;
}
body main > section:last-of-type .value-card h1,
body main > section:last-of-type .value-card h2,
body main > section:last-of-type .value-card h3,
body main > section:last-of-type .value-card h4,
body main > section:last-of-type .value-card p,
body main > section:last-of-type .value-card li,
body main > section:last-of-type .value-card span,
body main > section:last-of-type .stap-card h1,
body main > section:last-of-type .stap-card h2,
body main > section:last-of-type .stap-card h3,
body main > section:last-of-type .stap-card h4,
body main > section:last-of-type .stap-card p,
body main > section:last-of-type .stap-card li,
body main > section:last-of-type .stap-card span,
body main > section:last-of-type .document-card h1,
body main > section:last-of-type .document-card h2,
body main > section:last-of-type .document-card h3,
body main > section:last-of-type .document-card h4,
body main > section:last-of-type .document-card p,
body main > section:last-of-type .document-card li,
body main > section:last-of-type .document-card span,
body main > section:last-of-type .document-card a,
body main > section:last-of-type .vacature-card h1,
body main > section:last-of-type .vacature-card h2,
body main > section:last-of-type .vacature-card h3,
body main > section:last-of-type .vacature-card h4,
body main > section:last-of-type .vacature-card p,
body main > section:last-of-type .vacature-card li,
body main > section:last-of-type .vacature-card span {
  color: #0a0e27 !important;
}

body main > section:last-of-type .eyebrow {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}

body main > section:last-of-type::after,
body main > section:last-of-type::before {
  display: none !important;
}

body {
  background: #faf7f2;
}

/* ============================================
   OVERRIDE: mission-section.dark als laatste OOK donkerblauw
   Specificity verhoogd om colors.css te overrulen
   ============================================ */

html body main > section.mission-section:last-of-type,
html body main > section.mission-section.dark:last-of-type {
  background: linear-gradient(180deg, #faf7f2 0%, #c9d8e8 40%, #5a85b0 100%) !important;
  padding-bottom: 100px !important;
  color: #fff !important;
}

html body main > section.mission-section:last-of-type .mission-text h2,
html body main > section.mission-section:last-of-type .mission-text p,
html body main > section.mission-section:last-of-type .mission-text .eyebrow,
html body main > section.mission-section:last-of-type .mission-text,
html body main > section.mission-section.dark:last-of-type .mission-text h2,
html body main > section.mission-section.dark:last-of-type .mission-text p,
html body main > section.mission-section.dark:last-of-type .mission-text .eyebrow,
html body main > section.mission-section.dark:last-of-type .mission-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Bieden list / Kernwaarden list items op donkerblauw */
html body main > section:last-of-type .bieden-list li,
html body main > section:last-of-type .kernwaarden-list li {
  color: #fff !important;
  border-color: rgba(255,255,255,0.2) !important;
}
html body main > section:last-of-type .bieden-list i,
html body main > section:last-of-type .kernwaarden-list i {
  color: #fff !important;
}

/* ============================================
   VLOEIENDE LIJNEN ONDER HERO - signature element
   ============================================ */

.page-hero {
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='hl1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%231478b4' stop-opacity='0.6'/%3E%3Cstop offset='50%25' stop-color='%23684170' stop-opacity='0.6'/%3E%3Cstop offset='100%25' stop-color='%238c1450' stop-opacity='0.6'/%3E%3C/linearGradient%3E%3ClinearGradient id='hl2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23684170' stop-opacity='0.5'/%3E%3Cstop offset='100%25' stop-color='%231478b4' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,40 C300,80 600,10 900,50 C1100,80 1300,30 1440,55' stroke='url(%23hl1)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,60 C300,30 600,90 900,60 C1100,40 1300,80 1440,70' stroke='url(%23hl2)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,80 C300,110 600,40 900,80 C1100,110 1300,60 1440,85' stroke='url(%23hl1)' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Cpath d='M0,100 C300,70 600,120 900,90 C1100,70 1300,110 1440,100' stroke='url(%23hl2)' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 768px) {
  .page-hero::after {
    height: 60px;
  }
}

/* ============================================
   KEURMERK CARDS op donkerblauwe achtergrond
   ============================================ */
body main > section:last-of-type .keurmerk-card {
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  backdrop-filter: blur(10px);
}
body main > section:last-of-type .keurmerk-card span,
body main > section:last-of-type .keurmerk-card p,
body main > section:last-of-type .keurmerk-card h3 {
  color: #fff !important;
}
body main > section:last-of-type .keurmerk-card i,
body main > section:last-of-type .keurmerk-card svg {
  color: #fff !important;
  stroke: #fff !important;
}
body main > section:last-of-type .keurmerk-card img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
body main > section:last-of-type .keurmerk-card:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateY(-4px);
}


/* ============================================
   LOGO bij "De fundering van jouw toekomst"
   Transparante PNG - gaat 100% op in footer
   ============================================ */
.footer-brand-logo-anim {
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  animation: brand-float 4s ease-in-out infinite;
}
.footer-brand-logo-anim img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(20, 120, 180, 0.5));
}

@keyframes brand-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .footer-brand-logo-anim {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }
}

/* ============================================
   HERO LIGHT - vlakke creme zoals sectie eronder
   ============================================ */

/* Hero achtergrond vlak creme */
body main > section.page-hero {
  background: #faf7f2 !important;
}

/* Eerste sectie na hero ook vlak creme - geen gradient meer */
body main > section.page-hero + section {
  background: #faf7f2 !important;
}

/* Vloeiende lijnen onder hero WEGHALEN - geen overgang meer */
.page-hero::after {
  display: none !important;
}

/* Overlay weg - geen donker filter meer */
body main > section.page-hero .page-hero-overlay,
body main > section.page-hero .page-hero-overlay-simple {
  background: transparent !important;
  display: none !important;
}

/* Dots netwerk: donkere dots op creme */
body main > section.page-hero .dots-canvas {
  filter: invert(1) hue-rotate(180deg) brightness(0.6);
  opacity: 0.4;
}

/* Tekst kleuren naar donker */
body main > section.page-hero h1,
body main > section.page-hero h1 .blur-word,
body main > section.page-hero .hero-lead {
  color: #0a0e27 !important;
}

/* Eyebrow met gradient kleuren */
body main > section.page-hero .eyebrow,
body main > section.page-hero .eyebrow-light {
  color: #684170 !important;
  -webkit-text-fill-color: #684170 !important;
  background: none !important;
}

/* Scroll indicator donker */
body main > section.page-hero .page-hero-scroll {
  color: #0a0e27 !important;
}
body main > section.page-hero .page-hero-scroll span {
  background: #684170 !important;
}

/* Hero lijnen onder hero - blijven zoals ze waren */

/* Golf boven footer verwijderd */







/* ============================================
   SPLASH SCREEN INTRO - alles zwart
   ============================================ */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
.splash-screen video {
  width: 80vmin;
  height: 80vmin;
  max-width: 600px;
  max-height: 600px;
  object-fit: contain;
  background: #000000;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: block;
}
.splash-hide {
  opacity: 0;
  pointer-events: none;
}

body.splash-active {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {
  .splash-screen video {
    max-width: 90vw;
    max-height: 90vw;
  }
}


/* MID PAGE WAVE - op naad van sectie */
.has-mid-wave {
  position: relative;
}
.mid-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='mw1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%231478b4' stop-opacity='0.28'/%3E%3Cstop offset='50%25' stop-color='%23684170' stop-opacity='0.28'/%3E%3Cstop offset='100%25' stop-color='%238c1450' stop-opacity='0.28'/%3E%3C/linearGradient%3E%3ClinearGradient id='mw2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%231478b4' stop-opacity='0.42'/%3E%3Cstop offset='50%25' stop-color='%23684170' stop-opacity='0.42'/%3E%3Cstop offset='100%25' stop-color='%238c1450' stop-opacity='0.42'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,50 C240,90 480,20 720,50 C960,80 1200,30 1440,55 L1440,100 L0,100 Z' fill='url(%23mw1)'/%3E%3Cpath d='M0,70 C240,40 480,95 720,65 C960,35 1200,80 1440,70 L1440,100 L0,100 Z' fill='url(%23mw2)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 768px) {
  .mid-wave { height: 55px; }
}
body.cinematic-mode .mid-wave { display: none !important; }


/* DARK BLOCK WAVES */
.mission-section.dark {
  position: relative;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
@media (max-width: 768px) {
  .mission-section.dark {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
/* END DARK BLOCK WAVES */


/* MESH GRADIENT HERO */
.mesh-wrap {
  position: relative;
  background: #0a1428;
  overflow: hidden;
}

.mesh-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  filter: blur(60px);
  background:
    radial-gradient(at 20% 30%, #1478b4 0px, transparent 50%),
    radial-gradient(at 80% 20%, #684170 0px, transparent 50%),
    radial-gradient(at 70% 80%, #8c1450 0px, transparent 50%),
    radial-gradient(at 30% 70%, #1478b4 0px, transparent 50%);
  animation: meshShift 20s ease-in-out infinite;
}

.mesh-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  filter: blur(80px);
  background:
    radial-gradient(at 60% 40%, #684170 0px, transparent 60%),
    radial-gradient(at 10% 90%, #8c1450 0px, transparent 50%);
  animation: meshShift2 25s ease-in-out infinite;
}

@keyframes meshShift {
  0%, 100% { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%; }
  50% { background-position: 30% 20%, 70% 30%, 70% 80%, 30% 70%; }
}
@keyframes meshShift2 {
  0%, 100% { background-position: 0% 0%, 100% 100%; }
  50% { background-position: 40% 60%, 60% 40%; }
}

.mesh-wrap > section {
  position: relative;
  z-index: 1;
  background: transparent !important;
  background-image: none !important;
  border-radius: 0 !important;
}

.mesh-wrap > section.page-hero {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.mesh-wrap > section::before,
.mesh-wrap > section::after {
  display: none !important;
}

.mesh-wrap .dots-canvas {
  display: none !important;
}

.mesh-wrap,
.mesh-wrap h1,
.mesh-wrap h2,
.mesh-wrap h3,
.mesh-wrap h4,
.mesh-wrap p,
.mesh-wrap li,
.mesh-wrap span,
.mesh-wrap strong,
.mesh-wrap .eyebrow,
.mesh-wrap .story-text,
.mesh-wrap .story-text * {
  color: #ffffff !important;
}

.mesh-wrap .page-hero-overlay {
  background: transparent !important;
}

/* END MESH GRADIENT HERO */


/* SCROLL ZOOM EFFECTS */

/* Hero: zoomt in/uit op scroll positie (via JS data-scroll attribute) */
.page-hero {
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Afbeeldingen: start klein, zoom in als ze in beeld komen */
.story-image,
.mission-image,
.vision-image,
.story-section img,
.mission-section img,
.vision-section img,
.values-section img,
img.zoom-img {
  transform-origin: center center;
  transform: scale(0.7);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.story-image.in-view,
.mission-image.in-view,
.vision-image.in-view,
.story-section img.in-view,
.mission-section img.in-view,
.vision-section img.in-view,
.values-section img.in-view,
img.zoom-img.in-view {
  transform: scale(1.0);
}

/* END SCROLL ZOOM EFFECTS */


/* FOOTER SEAMLESS FIX */
/* Verwijder ALLE wave/golf decoraties onderaan secties zodat footer naadloos aansluit */
main > section::after,
main > section::before,
.story-section::after,
.quote-section::after,
.values-section::after,
.vision-section::after,
.mission-section.dark::after,
.cta-section::after,
.section-header::after {
  display: none !important;
}

/* Herstel padding-bottom van secties naar normaal */
.story-section,
.quote-section,
.values-section,
.vision-section,
.cta-section,
.mission-section.dark,
.section-header {
  padding-bottom: 80px !important;
}

/* END FOOTER SEAMLESS FIX */


/* EDGE END RESTORE */
.edge-end {
  display: block !important;
  position: relative;
  margin-top: -1px;
  background: #0a1428;
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.edge-end svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* END EDGE END RESTORE */


/* EDGE END MOVING LINES */
.edge-end {
  display: block !important;
  position: relative;
  margin-top: -1px;
  background: #0a1428;
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.edge-end svg {
  display: block;
  width: 100%;
  height: 100%;
}
.edge-end svg path {
  stroke-dasharray: 2400;
  animation: edgeFlow 12s ease-in-out infinite;
}
.edge-end svg path:nth-child(2) { animation-duration: 14s; animation-delay: -2s; }
.edge-end svg path:nth-child(3) { animation-duration: 16s; animation-delay: -4s; }
.edge-end svg path:nth-child(4) { animation-duration: 18s; animation-delay: -6s; }
@keyframes edgeFlow {
  0%   { stroke-dashoffset: 0; transform: translateX(0); }
  50%  { stroke-dashoffset: -400; transform: translateX(-20px); }
  100% { stroke-dashoffset: 0; transform: translateX(0); }
}
body.cinematic-mode .edge-end { display: block !important; }

/* Footer direct aan laatste sectie plakken */
.site-footer {
  margin-top: 0 !important;
}

main > section:last-of-type {
  margin-bottom: 0 !important;
}

/* END REMOVE WHITE STRIP FOOTER */


/* MENU GLASS EVERYWHERE */
.menu-toggle {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
}
.menu-toggle:hover {
  background: rgba(255,255,255,0.25) !important;
}
.menu-toggle-icon span {
  background: #fff !important;
}
/* END MENU GLASS EVERYWHERE */


/* FLOATING MENU ON SCROLL */
body.scrolled .site-header {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(-50%) translateX(-10px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
/* END FLOATING MENU */


/* SCROLLED TOGGLE COLOR */
body.scrolled .menu-toggle {
  background: rgba(10, 14, 39, 0.9) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
body.scrolled .menu-toggle-icon span {
  background: #fff !important;
}
/* END SCROLLED TOGGLE */

/* FLOATING SIDE MENU BUTTON */
.menu-toggle-float {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%) translateX(-20px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: rgba(10,14,39,0.9);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
body.scrolled .menu-toggle-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.menu-toggle-float:hover {
  background: var(--blauw-primary);
}
.menu-toggle-float .menu-toggle-icon span {
  background: #fff;
}
/* END FLOATING SIDE */


/* STORY-TEXT EYEBROW BLUE */
.story-section .story-text .eyebrow {
  color: #1478b4 !important;
  -webkit-text-fill-color: #1478b4 !important;
  background: none !important;
}
.story-section .story-text .eyebrow::after {
  background: #1478b4 !important;
}
/* END STORY-TEXT EYEBROW */


/* QUOTE SECTION COMPACT */
.quote-section {
  padding: 40px 0 !important;
}
.quote-block {
  padding: 20px 40px !important;
}
.quote-icon {
  width: 40px !important;
  height: 40px !important;
  margin: 0 auto 12px !important;
}
/* END QUOTE COMPACT */


/* MISSION DARK WAVE EDGE */
.mission-section.dark {
  position: relative;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1000' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,960 C1200,995 960,925 720,955 C480,985 240,920 0,950 Z' fill='black'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1000' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,960 C1200,995 960,925 720,955 C480,985 240,920 0,950 Z' fill='black'/%3E%3C/svg%3E") !important;
  -webkit-mask-size: 100% 100% !important;
  mask-size: 100% 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  padding-bottom: 140px !important;
}
/* END WAVE EDGE */


/* MISSION DARK NO MASK WHEN LAST */
html body main > section.mission-section.dark:last-of-type {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  padding-bottom: 100px !important;
}
/* END NO MASK */


/* EDGE END HIDE ON CINEMATIC */
body.cinematic-mode .edge-end {
  display: none !important;
}
/* END HIDE CINEMATIC */
