/* ==========================================================================
   Licht & Lawaai - stylesheet
   Dark & energiek met elegante serif-accenten (Fraunces + Outfit)
   ========================================================================== */

/* --- Fonts (zelf gehost, GDPR-proof) --- */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('/assets/fonts/outfit.woff2') format('woff2');
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
@font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 300 700;
    font-display: swap;
    src: url('/assets/fonts/fraunces-italic.woff2') format('woff2');
}

/* --- Design tokens --- */
:root {
    --bg: #0b0b12;
    --bg-alt: #10101b;
    --surface: #16162399;
    --surface-solid: #161623;
    --line: rgba(244, 241, 236, 0.09);
    --ink: #f4f1ec;
    --muted: #a9a5b9;
    --gold: #e8b86d;
    --pink: #ff4d8d;
    --violet: #8b5cf6;
    --grad: linear-gradient(100deg, #ffd166, #ff4d8d 48%, #8b5cf6);
    --grad-gold: linear-gradient(100deg, #ffd166, #e8b86d 55%, #ff9d6c);
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --radius: 18px;
    --container: 1140px;
}

/* --- Reset & basis --- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.06rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 0.6em;
    text-wrap: balance;
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; }

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.container.narrow { max-width: 780px; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 100;
    padding: 0.6rem 1rem;
    background: var(--surface-solid);
    border-radius: 0 0 10px 10px;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

::selection { background: var(--pink); color: #fff; }

/* --- Typografische accenten --- */
.accent-serif {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accent-glow {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 77, 141, 0.45));
}

.overline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    margin-bottom: 1.2rem;
}

/* --- Knoppen --- */
.btn {
    display: inline-block;
    padding: 0.72rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.btn-lg { padding: 0.9rem 1.9rem; font-size: 1.05rem; }

.btn-primary {
    background: var(--grad);
    color: #14060d;
    box-shadow: 0 4px 24px rgba(255, 77, 141, 0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 77, 141, 0.5);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: transparent;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    border-color: var(--pink);
    transform: translateY(-2px);
}

/* --- Header & navigatie --- */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
    background: rgba(11, 11, 18, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.brand-name {
    font-weight: 600;
    font-size: 1.12rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-name em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-inline: 0.06em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 400;
    font-size: 0.98rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current='page'] { color: var(--ink); }

.nav-links a[aria-current='page'] {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.nav-toggle { display: none; }

/* --- Hero --- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-sub { min-height: 100svh; padding: 9rem 0 4rem; }

.hero-beams {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(45% 60% at 12% -10%, rgba(139, 92, 246, 0.32), transparent 70%),
        radial-gradient(40% 55% at 88% -8%, rgba(255, 77, 141, 0.26), transparent 70%),
        radial-gradient(50% 45% at 50% 115%, rgba(255, 209, 102, 0.12), transparent 70%);
}

.hero-beams::before,
.hero-beams::after {
    content: '';
    position: absolute;
    top: -20%;
    width: 32vw;
    height: 130%;
    opacity: 0.5;
    filter: blur(6px);
}

.hero-beams::before {
    left: 6%;
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(139, 92, 246, 0.20) 8deg, transparent 22deg);
    animation: beam-sway 9s ease-in-out infinite alternate;
}

.hero-beams::after {
    right: 6%;
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(255, 77, 141, 0.18) 8deg, transparent 22deg);
    animation: beam-sway 11s ease-in-out infinite alternate-reverse;
}

@keyframes beam-sway {
    from { transform: rotate(-7deg); }
    to   { transform: rotate(7deg); }
}

.hero-inner { position: relative; max-width: 860px; }

.hero-title {
    font-size: clamp(2.4rem, 6.2vw, 4.4rem);
    margin-bottom: 1.1rem;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.9vw, 1.25rem);
    color: var(--muted);
    max-width: 40rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.4rem;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
}

.hero-chips li {
    padding: 0.38rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.86rem;
    color: var(--muted);
}

/* --- Secties --- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }

.section-alt {
    background: linear-gradient(180deg, var(--bg-alt), var(--bg));
    border-block: 1px solid var(--line);
}

/* --- USP's --- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.usp-num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.6rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.4rem;
}

.usp h3 { font-size: 1.25rem; }
.usp p { color: var(--muted); margin: 0; }

/* --- Kaarten --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.7rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card:not(.card-static):hover,
.card:not(.card-static):focus-visible {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 141, 0.5);
    box-shadow: 0 14px 40px rgba(255, 77, 141, 0.14);
}

.card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.card p { color: var(--muted); margin: 0; flex-grow: 1; }

.card-tag {
    align-self: flex-start;
    padding: 0.22rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink);
    border: 1px solid rgba(255, 77, 141, 0.4);
    margin-bottom: 0.5rem;
}

.card-tag-gold {
    color: var(--gold);
    border-color: rgba(232, 184, 109, 0.45);
}

.card-link {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Split-secties --- */
.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.split-text p { color: var(--muted); }
.split-text .section-title { color: var(--ink); }
.split-text .btn { margin-top: 0.5rem; }

.visual-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background:
        radial-gradient(70% 90% at 30% 20%, rgba(139, 92, 246, 0.25), transparent 65%),
        radial-gradient(70% 90% at 80% 85%, rgba(255, 77, 141, 0.2), transparent 65%),
        var(--surface-solid);
    overflow: hidden;
}

.visual-frame-gold {
    background:
        radial-gradient(70% 90% at 30% 20%, rgba(232, 184, 109, 0.22), transparent 65%),
        radial-gradient(70% 90% at 80% 85%, rgba(255, 157, 108, 0.16), transparent 65%),
        var(--surface-solid);
}

.visual-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.35;
    text-align: center;
    margin: 0;
    padding: 1rem;
}

.visual-quote em {
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Equalizer-animatie --- */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: clamp(6px, 1.4vw, 12px);
    height: 55%;
}

.equalizer span {
    width: clamp(10px, 2vw, 18px);
    height: 30%;
    border-radius: 6px 6px 2px 2px;
    background: var(--grad);
    background-size: 100% 400%;
    animation: eq-bounce 1.15s ease-in-out infinite alternate;
}

.equalizer span:nth-child(2) { animation-delay: -0.9s; }
.equalizer span:nth-child(3) { animation-delay: -0.35s; }
.equalizer span:nth-child(4) { animation-delay: -0.7s; }
.equalizer span:nth-child(5) { animation-delay: -0.15s; }
.equalizer span:nth-child(6) { animation-delay: -0.55s; }
.equalizer span:nth-child(7) { animation-delay: -1s; }
.equalizer span:nth-child(8) { animation-delay: -0.25s; }
.equalizer span:nth-child(9) { animation-delay: -0.8s; }

@keyframes eq-bounce {
    from { height: 22%; }
    to   { height: 100%; }
}

/* --- Stappen --- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.6rem;
    list-style: none;
    counter-reset: stap;
    margin-top: 2rem;
}

.step {
    counter-increment: stap;
    padding: 1.7rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.step::before {
    content: counter(stap, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.step h3 { font-size: 1.2rem; }
.step p { color: var(--muted); margin: 0; }

/* --- Checklists --- */
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 0.9rem 2rem;
    margin-top: 1.6rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--muted);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.28em;
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230b0b12' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m4 8.4 2.7 2.7L12 5.4'/%3E%3C/svg%3E") center / 70% no-repeat,
        var(--grad);
}

/* --- FAQ --- */
.faq-list { display: grid; gap: 0.8rem; margin-top: 1.6rem; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color 0.2s;
}

.faq-item[open] { border-color: rgba(255, 77, 141, 0.4); }

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.3rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--pink);
    transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 0 1.3rem 1.2rem;
    margin: 0;
    color: var(--muted);
}

/* --- CTA-band --- */
.cta-band { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.cta-inner {
    position: relative;
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid rgba(255, 77, 141, 0.35);
    background:
        radial-gradient(60% 120% at 50% 0%, rgba(139, 92, 246, 0.22), transparent 70%),
        radial-gradient(50% 100% at 50% 110%, rgba(255, 77, 141, 0.18), transparent 70%),
        var(--surface-solid);
    overflow: hidden;
}

.cta-title {
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    margin-bottom: 0.6rem;
}

.cta-text {
    color: var(--muted);
    max-width: 34rem;
    margin: 0 auto 1.8rem;
}

/* --- Duo (over ons) --- */
.duo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
    margin-top: 2rem;
}

.duo-card {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.duo-avatar {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grad);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.2rem;
    color: #14060d;
}

.duo-card h3 { font-size: 1.4rem; margin-bottom: 0.1rem; }

.duo-role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.8rem;
}

.duo-card p:last-child { color: var(--muted); margin: 0; }

.prose p { color: var(--muted); font-size: 1.1rem; }

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-form { display: block; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.form-field .optional { color: var(--muted); font-weight: 400; }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    background: var(--surface-solid);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    font: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field select { appearance: auto; }

.form-field textarea { resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 77, 141, 0.22);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(169, 165, 185, 0.55); }

.form-field input[type="date"] { color-scheme: dark; }

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(69%) sepia(41%) saturate(451%) hue-rotate(358deg) brightness(96%) contrast(92%);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.86rem;
    color: var(--muted);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    padding: 1.5rem 1.7rem;
    border-radius: var(--radius);
    border: 1px solid;
    margin-bottom: 1.5rem;
}

.notice h2 { font-size: 1.5rem; }
.notice p { margin: 0; color: var(--muted); }

.notice-success {
    border-color: rgba(120, 220, 150, 0.4);
    background: rgba(120, 220, 150, 0.07);
}

.notice-error {
    border-color: rgba(255, 110, 110, 0.45);
    background: rgba(255, 110, 110, 0.08);
}

.contact-aside {
    padding: 1.8rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: sticky;
    top: 96px;
}

.contact-aside h2 { font-size: 1.35rem; }

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
}

.contact-list a { color: var(--ink); }

.aside-note {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(232, 184, 109, 0.08);
    border: 1px solid rgba(232, 184, 109, 0.25);
}

.aside-note p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-alt);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-logo { font-size: 1.3rem; margin-bottom: 0.6rem; }

.footer-blurb { color: var(--muted); max-width: 26rem; }

.footer-socials {
    list-style: none;
    display: flex;
    gap: 0.9rem;
    margin-top: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--muted);
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-socials a:hover, .footer-socials a:focus-visible {
    color: var(--pink);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.footer-nav ul, .footer-contact ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

.footer-nav a, .footer-contact a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover, .footer-contact a:hover { color: var(--ink); }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-block: 1.3rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.footer-bottom p { margin: 0; }

/* --- Scroll-reveal (alleen met JS actief) --- */
html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.visible {
    opacity: 1;
    transform: none;
}

/* --- Responsief --- */
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
    .split-visual { order: -1; }
    .visual-frame { aspect-ratio: 16 / 9; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-aside { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: transparent;
        border: 1px solid var(--line);
        border-radius: 12px;
        cursor: pointer;
        position: relative;
    }

    .nav-toggle-bar,
    .nav-toggle-bar::before,
    .nav-toggle-bar::after {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: var(--ink);
        transition: transform 0.25s, opacity 0.25s;
    }

    .nav-toggle-bar { position: relative; }
    .nav-toggle-bar::before, .nav-toggle-bar::after {
        content: '';
        position: absolute;
        left: 0;
    }
    .nav-toggle-bar::before { top: -6px; }
    .nav-toggle-bar::after { top: 6px; }

    .nav-toggle[aria-expanded='true'] .nav-toggle-bar { transform: rotate(45deg); }
    .nav-toggle[aria-expanded='true'] .nav-toggle-bar::before { transform: rotate(-90deg) translateX(-6px); }
    .nav-toggle[aria-expanded='true'] .nav-toggle-bar::after { opacity: 0; }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.6rem 1.2rem 1.4rem;
        background: rgba(11, 11, 18, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        display: none;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 0.2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--line);
    }

    .nav-cta { margin-top: 1.1rem; text-align: center; }

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

    .hero { padding-top: 6.5rem; }
    .hero-actions .btn { width: 100%; text-align: center; }

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

/* --- Toegankelijkheid: minder beweging --- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .hero-beams::before,
    .hero-beams::after,
    .equalizer span { animation: none; }

    .equalizer span { height: 60%; }

    html.js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn, .card, .footer-socials a { transition: none; }
}

/* ==========================================================================
   THEMA: dark - neon & energiek (THEME=dark of ?thema=dark)
   Vol gas: diepzwart, magenta/cyaan-neon, vette Outfit-koppen.
   ========================================================================== */

body.theme-dark {
    --bg: #06060a;
    --bg-alt: #0a0a14;
    --surface: #10101ccc;
    --surface-solid: #101019;
    --line: rgba(240, 245, 255, 0.1);
    --ink: #f2f6ff;
    --muted: #8f93a8;
    --gold: #22d3ee;
    --pink: #ff2d78;
    --violet: #a855f7;
    --grad: linear-gradient(100deg, #22d3ee, #ff2d78 52%, #a855f7);
    --grad-gold: linear-gradient(100deg, #22d3ee, #4dc9ff);
    --font-display: 'Outfit', system-ui, sans-serif;
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

body.theme-dark .accent-serif,
body.theme-dark .usp-num,
body.theme-dark .step::before,
body.theme-dark .visual-quote em,
body.theme-dark .duo-avatar,
body.theme-dark .brand-name em,
body.theme-dark .faq-item summary::after {
    font-style: normal;
}

body.theme-dark ::selection { background: #22d3ee; color: #06060a; }

body.theme-dark .overline { color: #22d3ee; }

body.theme-dark .accent-glow {
    filter: drop-shadow(0 0 22px rgba(255, 45, 120, 0.65));
}

body.theme-dark .hero-beams {
    background:
        radial-gradient(45% 60% at 12% -10%, rgba(34, 211, 238, 0.30), transparent 70%),
        radial-gradient(40% 55% at 88% -8%, rgba(255, 45, 120, 0.34), transparent 70%),
        radial-gradient(50% 45% at 50% 115%, rgba(168, 85, 247, 0.18), transparent 70%);
}

body.theme-dark .hero-beams::before {
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(34, 211, 238, 0.26) 8deg, transparent 22deg);
}

body.theme-dark .hero-beams::after {
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(255, 45, 120, 0.24) 8deg, transparent 22deg);
}

body.theme-dark .btn-primary {
    color: #05060c;
    box-shadow: 0 4px 26px rgba(255, 45, 120, 0.45);
}

body.theme-dark .btn-primary:hover,
body.theme-dark .btn-primary:focus-visible {
    box-shadow: 0 8px 36px rgba(34, 211, 238, 0.45);
}

body.theme-dark .card:not(.card-static):hover,
body.theme-dark .card:not(.card-static):focus-visible {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 14px 40px rgba(34, 211, 238, 0.12);
}

body.theme-dark .card-tag { border-color: rgba(255, 45, 120, 0.45); }
body.theme-dark .card-tag-gold { border-color: rgba(34, 211, 238, 0.5); }

body.theme-dark .faq-item[open] { border-color: rgba(34, 211, 238, 0.45); }

body.theme-dark .cta-inner {
    border-color: rgba(34, 211, 238, 0.4);
    background:
        radial-gradient(60% 120% at 50% 0%, rgba(168, 85, 247, 0.26), transparent 70%),
        radial-gradient(50% 100% at 50% 110%, rgba(255, 45, 120, 0.2), transparent 70%),
        var(--surface-solid);
}

body.theme-dark .form-field input:focus,
body.theme-dark .form-field select:focus,
body.theme-dark .form-field textarea:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.22);
}

body.theme-dark .aside-note {
    background: rgba(34, 211, 238, 0.07);
    border-color: rgba(34, 211, 238, 0.3);
}

body.theme-dark .site-header.scrolled { background: rgba(6, 6, 10, 0.85); }

@media (max-width: 760px) {
    body.theme-dark .nav-menu { background: rgba(6, 6, 10, 0.97); }
}

/* ==========================================================================
   THEMA: licht - ivoor & elegant (THEME=licht of ?thema=licht)
   Wedding-chic: warm wit, champagne-goud en zachte terracotta-accenten.
   ========================================================================== */

body.theme-licht {
    --bg: #faf7f2;
    --bg-alt: #f2ecdf;
    --surface: #ffffff;
    --surface-solid: #ffffff;
    --line: rgba(43, 36, 28, 0.13);
    --ink: #2b241c;
    --muted: #75695c;
    --gold: #a97c2f;
    --pink: #bc5f53;
    --violet: #9c6bb8;
    --grad: linear-gradient(100deg, #c8963f, #c96b5e 60%, #9c6bb8);
    --grad-gold: linear-gradient(100deg, #a97c2f, #c8963f);
    font-weight: 400;
}

body.theme-licht ::selection { background: #c8963f; color: #fff; }

body.theme-licht .accent-glow {
    filter: drop-shadow(0 0 14px rgba(201, 107, 94, 0.25));
}

body.theme-licht .hero-beams {
    background:
        radial-gradient(45% 60% at 12% -10%, rgba(200, 150, 63, 0.18), transparent 70%),
        radial-gradient(40% 55% at 88% -8%, rgba(201, 107, 94, 0.14), transparent 70%),
        radial-gradient(50% 45% at 50% 115%, rgba(156, 107, 184, 0.08), transparent 70%);
}

body.theme-licht .hero-beams::before {
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(200, 150, 63, 0.12) 8deg, transparent 22deg);
}

body.theme-licht .hero-beams::after {
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(201, 107, 94, 0.1) 8deg, transparent 22deg);
}

body.theme-licht .btn-primary {
    color: #fff;
    box-shadow: 0 4px 20px rgba(201, 107, 94, 0.3);
}

body.theme-licht .btn-primary:hover,
body.theme-licht .btn-primary:focus-visible {
    box-shadow: 0 8px 28px rgba(201, 107, 94, 0.4);
}

body.theme-licht .card,
body.theme-licht .step,
body.theme-licht .duo-card,
body.theme-licht .faq-item,
body.theme-licht .contact-aside {
    box-shadow: 0 2px 16px rgba(43, 36, 28, 0.05);
}

body.theme-licht .card:not(.card-static):hover,
body.theme-licht .card:not(.card-static):focus-visible {
    border-color: rgba(201, 107, 94, 0.5);
    box-shadow: 0 14px 36px rgba(43, 36, 28, 0.12);
}

body.theme-licht .card-tag { border-color: rgba(188, 95, 83, 0.4); }
body.theme-licht .card-tag-gold { border-color: rgba(169, 124, 47, 0.45); }

body.theme-licht .visual-frame {
    background:
        radial-gradient(70% 90% at 30% 20%, rgba(200, 150, 63, 0.16), transparent 65%),
        radial-gradient(70% 90% at 80% 85%, rgba(201, 107, 94, 0.12), transparent 65%),
        #fff;
}

body.theme-licht .visual-frame-gold {
    background:
        radial-gradient(70% 90% at 30% 20%, rgba(169, 124, 47, 0.14), transparent 65%),
        radial-gradient(70% 90% at 80% 85%, rgba(200, 150, 63, 0.12), transparent 65%),
        #fff;
}

body.theme-licht .faq-item[open] { border-color: rgba(188, 95, 83, 0.45); }

body.theme-licht .cta-inner {
    border-color: rgba(200, 150, 63, 0.5);
    background:
        radial-gradient(60% 120% at 50% 0%, rgba(200, 150, 63, 0.13), transparent 70%),
        radial-gradient(50% 100% at 50% 110%, rgba(201, 107, 94, 0.1), transparent 70%),
        #fff;
}

body.theme-licht .form-field input:focus,
body.theme-licht .form-field select:focus,
body.theme-licht .form-field textarea:focus {
    border-color: #bc5f53;
    box-shadow: 0 0 0 3px rgba(188, 95, 83, 0.16);
}

body.theme-licht .notice-success {
    border-color: rgba(46, 125, 74, 0.4);
    background: rgba(46, 125, 74, 0.07);
}

body.theme-licht .notice-error {
    border-color: rgba(178, 58, 58, 0.4);
    background: rgba(178, 58, 58, 0.06);
}

body.theme-licht .aside-note {
    background: rgba(169, 124, 47, 0.08);
    border-color: rgba(169, 124, 47, 0.32);
}

body.theme-licht .duo-avatar { color: #fff; }

body.theme-licht .site-header.scrolled { background: rgba(250, 247, 242, 0.86); }

body.theme-licht .skip-link { background: #fff; }

@media (max-width: 760px) {
    body.theme-licht .nav-menu { background: rgba(250, 247, 242, 0.97); }
}

/* ==========================================================================
   THEMA: goud - zwart & goud (THEME=goud of ?thema=goud)
   Luxe en tijdloos, in de stijl van het L&L Events-logo.
   ========================================================================== */

body.theme-goud {
    --bg: #070706;
    --bg-alt: #0d0b07;
    --surface: #17130acc;
    --surface-solid: #151208;
    --line: rgba(232, 200, 119, 0.15);
    --ink: #f6f1e4;
    --muted: #a89e88;
    --gold: #e8c877;
    --pink: #d4a445;
    --violet: #96702c;
    --grad: linear-gradient(100deg, #f2d992, #cf9d4b 55%, #96702c);
    --grad-gold: linear-gradient(100deg, #f2d992, #cf9d4b);
}

body.theme-goud ::selection { background: #cf9d4b; color: #1d1405; }

body.theme-goud .accent-glow {
    filter: drop-shadow(0 0 18px rgba(207, 157, 75, 0.5));
}

body.theme-goud .hero-beams {
    background:
        radial-gradient(45% 60% at 12% -10%, rgba(207, 157, 75, 0.22), transparent 70%),
        radial-gradient(40% 55% at 88% -8%, rgba(242, 217, 146, 0.14), transparent 70%),
        radial-gradient(50% 45% at 50% 115%, rgba(150, 112, 44, 0.14), transparent 70%);
}

body.theme-goud .hero-beams::before {
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(242, 217, 146, 0.14) 8deg, transparent 22deg);
}

body.theme-goud .hero-beams::after {
    background: conic-gradient(from 168deg at 50% 0%, transparent 0deg, rgba(207, 157, 75, 0.16) 8deg, transparent 22deg);
}

body.theme-goud .btn-primary {
    color: #1d1405;
    box-shadow: 0 4px 24px rgba(207, 157, 75, 0.35);
}

body.theme-goud .btn-primary:hover,
body.theme-goud .btn-primary:focus-visible {
    box-shadow: 0 8px 32px rgba(207, 157, 75, 0.5);
}

body.theme-goud .card:not(.card-static):hover,
body.theme-goud .card:not(.card-static):focus-visible {
    border-color: rgba(207, 157, 75, 0.55);
    box-shadow: 0 14px 40px rgba(207, 157, 75, 0.12);
}

body.theme-goud .card-tag { border-color: rgba(212, 164, 69, 0.45); }
body.theme-goud .card-tag-gold { border-color: rgba(232, 200, 119, 0.5); }

body.theme-goud .visual-frame,
body.theme-goud .visual-frame-gold {
    background:
        radial-gradient(70% 90% at 30% 20%, rgba(207, 157, 75, 0.18), transparent 65%),
        radial-gradient(70% 90% at 80% 85%, rgba(242, 217, 146, 0.1), transparent 65%),
        var(--surface-solid);
}

body.theme-goud .faq-item[open] { border-color: rgba(212, 164, 69, 0.45); }

body.theme-goud .cta-inner {
    border-color: rgba(212, 164, 69, 0.45);
    background:
        radial-gradient(60% 120% at 50% 0%, rgba(207, 157, 75, 0.16), transparent 70%),
        radial-gradient(50% 100% at 50% 110%, rgba(242, 217, 146, 0.1), transparent 70%),
        var(--surface-solid);
}

body.theme-goud .form-field input:focus,
body.theme-goud .form-field select:focus,
body.theme-goud .form-field textarea:focus {
    border-color: #cf9d4b;
    box-shadow: 0 0 0 3px rgba(207, 157, 75, 0.22);
}

body.theme-goud .aside-note {
    background: rgba(207, 157, 75, 0.08);
    border-color: rgba(207, 157, 75, 0.32);
}

body.theme-goud .duo-avatar { color: #1d1405; }

body.theme-goud .site-header.scrolled { background: rgba(7, 7, 6, 0.86); }

@media (max-width: 760px) {
    body.theme-goud .nav-menu { background: rgba(7, 7, 6, 0.97); }
}

/* --- Logo-embleem kleurt mee per thema (inline SVG-gradientstops) --- */

body.theme-dark .brand-mark stop:nth-of-type(1) { stop-color: #22d3ee; }
body.theme-dark .brand-mark stop:nth-of-type(2) { stop-color: #ff2d78; }
body.theme-dark .brand-mark stop:nth-of-type(3) { stop-color: #a855f7; }

body.theme-licht .brand-mark stop:nth-of-type(1) { stop-color: #c8963f; }
body.theme-licht .brand-mark stop:nth-of-type(2) { stop-color: #c96b5e; }
body.theme-licht .brand-mark stop:nth-of-type(3) { stop-color: #9c6bb8; }

body.theme-goud .brand-mark stop:nth-of-type(1) { stop-color: #f2d992; }
body.theme-goud .brand-mark stop:nth-of-type(2) { stop-color: #cf9d4b; }
body.theme-goud .brand-mark stop:nth-of-type(3) { stop-color: #96702c; }
