/* ===================================================
   2Faces – Stylesheet
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
    --bg:        #090909;
    --surface:   #111111;
    --surface-2: #1a1a1a;
    --border:    rgba(255, 255, 255, 0.07);
    --text:      #f0ede8;
    --text-muted:#888;
    --accent:    #c9a84c;
    --red:       #c0392b;
    --white:     #ffffff;
    --font-h:    'Cinzel', Georgia, serif;
    --font-b:    'Open Sans', system-ui, sans-serif;
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --r:         8px;
    --r-lg:      16px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--white); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-h); font-weight: 700; line-height: 1.15; letter-spacing: 0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }
p { margin-bottom: 0.75em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--white); }
em { font-style: italic; }

.accent { color: var(--accent); }
.muted  { color: var(--text-muted); font-size: 0.9em; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 720px; }
.container-wide   { max-width: 1400px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--r);
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--accent);
    color: #0a0a0a;
    border: 2px solid var(--accent);
}
.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    font-size: 0.8rem;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--white); }
.btn-lg  { padding: 15px 36px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark    { background: var(--surface); }
.section-concept { background: var(--bg); }
.section-register {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.section-eyebrow {
    font-family: var(--font-b);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    margin-bottom: 56px;
    color: var(--white);
}
.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    text-align: center;
}

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

/* ===========================================
   COOKIE BANNER
=========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 1px solid var(--border);
    z-index: 9999;
    padding: 20px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden  { display: none; }

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { display: block; margin-bottom: 4px; color: var(--white); }
.cookie-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ===========================================
   NAVBAR
=========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo img { height: 44px; width: auto; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.8; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-family: var(--font-h);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 8px 14px;
    border-radius: var(--r);
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
    background: var(--accent);
    color: #0a0a0a !important;
    padding: 8px 18px;
    margin-left: 8px;
}
.nav-cta:hover { background: var(--white); color: #0a0a0a !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--r);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.3s;
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================
   HERO
=========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Diagonal split background echoing the logo */
.hero-split-left {
    position: absolute;
    inset: 0;
    background: #000;
    clip-path: polygon(0 0, 52% 0, 48% 100%, 0 100%);
}
.hero-split-right {
    position: absolute;
    inset: 0;
    background: #181818;
    clip-path: polygon(52% 0, 100% 0, 100% 100%, 48% 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(9,9,9,0.2) 0%, rgba(9,9,9,0.85) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.hero-logo {
    width: clamp(160px, 30vw, 240px);
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
    animation: fadeInDown 0.8s var(--ease) both;
}
.hero-tagline {
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s 0.1s var(--ease) both;
}
.hero-title {
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s 0.2s var(--ease) both;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-family: var(--font-b);
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.3s var(--ease) both;
}
.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s 0.4s var(--ease) both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s var(--ease) both;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    animation: bounce 2s infinite 1.5s;
    transition: color 0.2s;
}
.hero-scroll:hover { color: var(--white); }

/* ===========================================
   TIJDLIJN (Het Avontuur)
=========================================== */
.timeline-wrap {
    position: relative;
    margin-bottom: 64px;
}

/* Horizontaal scrollbare rij */
.timeline-scroll {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    padding: 48px 48px 40px;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Fades aan de zijkanten */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.timeline-scroll::-webkit-scrollbar { display: none; }

/* Individueel tijdlijn-item */
.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    flex-shrink: 0;
    position: relative;
}

/* Verbindingslijn tussen items */
.tl-connector {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 40px; /* Lijn op hoogte van node-center */
    width: 60px;
}
.tl-connector span {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--accent), rgba(201,168,76,0.3));
    position: relative;
}
/* Pijlpunt */
.tl-connector span::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid rgba(201,168,76,0.5);
    border-right: 1px solid rgba(201,168,76,0.5);
    transform: rotate(45deg);
}

/* Node = cirkel met icoon */
.tl-node {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid rgba(201,168,76,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    color: var(--accent);
}
.tl-node svg { width: 28px; height: 28px; }

/* Eindnode (groepspot) krijgt gouden gloed */
.tl-node-last {
    border-color: var(--accent);
    background: rgba(201,168,76,0.1);
    box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

/* Stapnummer badge */
.tl-num {
    position: absolute;
    top: -10px;
    right: -8px;
    font-family: var(--font-h);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: var(--surface);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    padding: 1px 6px;
    line-height: 1.6;
}

/* Tekstblok onder de node */
.tl-content { padding: 0 8px; }
.tl-content h3 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.tl-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Hover effect per item */
.tl-item:hover .tl-node {
    border-color: var(--accent);
    background: rgba(201,168,76,0.08);
    box-shadow: 0 0 16px rgba(201,168,76,0.15);
}
.tl-item:hover .tl-content h3 { color: var(--accent); }

/* Scroll-hint op mobiel */
.tl-scroll-hint {
    display: none;
    align-items: center;
    gap: 6px;
    justify-content: center;
    padding-top: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeHint 2s 1.5s ease forwards;
    opacity: 1;
}
.tl-scroll-hint svg { width: 16px; height: 16px; }

@keyframes fadeHint {
    0%   { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

@media (max-width: 900px) {
    .tl-scroll-hint { display: flex; }
    .timeline-scroll { padding: 40px 32px 32px; }
    .tl-item { width: 150px; }
    .tl-connector { width: 40px; }
}
@media (max-width: 480px) {
    .tl-item { width: 130px; }
    .tl-node { width: 60px; height: 60px; }
    .tl-node svg { width: 22px; height: 22px; }
}

.spel-cta {
    text-align: center;
    padding-top: 12px;
}
.spel-quote {
    font-family: var(--font-b);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ===========================================
   CONCEPT
=========================================== */
.concept-vs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
}
.concept-block {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    text-align: center;
}
.concept-kandidaten { border-top: 3px solid rgba(255,255,255,0.15); }
.concept-twofaces   { border-top: 3px solid var(--accent); }

.concept-num {
    font-family: var(--font-h);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}
.concept-num.accent { color: var(--accent); }
.concept-block h3 { color: var(--white); margin-bottom: 16px; }
.concept-block p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.concept-list {
    text-align: left;
    display: inline-block;
}
.concept-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.concept-list li:last-child { border-bottom: none; }
.concept-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.concept-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.concept-divider span {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.info-box {
    display: flex;
    gap: 20px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 28px;
    align-items: flex-start;
}
.info-box-red  { border-left: 3px solid var(--red); }
.info-box-gold { border-left: 3px solid var(--accent); }
.info-box-icon { flex-shrink: 0; width: 28px; height: 28px; margin-top: 2px; }
.info-box-icon svg { width: 100%; height: 100%; }
.info-box-red  .info-box-icon { color: var(--red); }
.info-box-gold .info-box-icon { color: var(--accent); }
.info-box h3 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.info-box p  { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ===========================================
   SFEERBEELDEN CARROUSEL
=========================================== */
.section-carousel {
    padding: 80px 0 0;
    background: var(--bg);
    overflow: hidden;
}
.section-carousel .container {
    text-align: center;
    margin-bottom: 40px;
}
.section-carousel .section-title {
    margin-bottom: 0;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s var(--ease);
}
.carousel-slide.active img {
    transform: scale(1.02);
}

/* Gradient overlay top & bottom for atmosphere */
.carousel::before,
.carousel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}
.carousel::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(9,9,9,0.5), transparent);
}
.carousel::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(9,9,9,0.7), transparent);
}

/* Nav buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.08);
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s, width 0.25s;
    flex-shrink: 0;
}
.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}
.carousel-dot:hover { background: rgba(255,255,255,0.65); }

/* Desktop carousel: contained width, not full-bleed */
@media (min-width: 769px) {
    .section-carousel {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 80px;
    }
    .carousel {
        max-width: 1100px;
        margin: 0 auto;
        border-radius: var(--r-lg);
        overflow: hidden;
    }
}

/* Responsive aspect ratio */
@media (max-width: 768px) {
    .carousel-slide { aspect-ratio: 4 / 3; }
    .carousel-btn   { width: 38px; height: 38px; }
    .carousel-btn svg { width: 16px; height: 16px; }
    .carousel-prev  { left: 10px; }
    .carousel-next  { right: 10px; }
    .section-carousel { padding-top: 64px; }
}
@media (max-width: 480px) {
    .carousel-slide { aspect-ratio: 1 / 1; }
}

/* Gallery page wrapper — intentionally NOT .page-content to avoid link/container overrides */
.gallery-section {
    padding: 64px 0 100px;
}

.gallery-item--more { display: none; }


/* Gallery CTA (sfeerbeelden section) */
.gallery-cta {
    text-align: center;
    padding: 32px 0 64px;
}
@media (min-width: 769px) {
    .gallery-cta { padding-bottom: 0; }
}

/* ===========================================
   GALLERIJ
=========================================== */
.gallery-masonry {
    columns: 3 240px;
    column-gap: 14px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    cursor: pointer;
    border-radius: var(--r);
    overflow: hidden;
    display: block;
    position: relative;
    border: none;
    background: none;
    padding: 0;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s var(--ease), filter 0.3s;
    background: var(--surface-2); /* placeholder colour while loading */
    min-height: 160px;            /* reserve space so columns don't collapse */
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.04);
    filter: brightness(1.1);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    pointer-events: none;
}
.gallery-item:hover::after { background: rgba(0,0,0,0.18); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
    padding: 64px 80px;
}
.lightbox.visible { opacity: 1; }
.lightbox.hidden  { display: none; }

.lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 128px);
    object-fit: contain;
    border-radius: var(--r);
    box-shadow: 0 16px 64px rgba(0,0,0,0.8);
    display: block;
}
/* Shared base for all three lightbox control buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    z-index: 1;
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lightbox-close:hover {
    background: rgba(201,168,76,0.2);
    border-color: var(--accent);
    color: var(--white);
}
.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0a;
    transform: translateY(-50%) scale(1.08);
}
.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-h);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.4);
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .gallery-masonry { columns: 2 140px; column-gap: 10px; }
    .gallery-item    { margin-bottom: 10px; }
    .lightbox        { padding: 56px 48px; }
    .lightbox-prev   { left: 8px; }
    .lightbox-next   { right: 8px; }
}

/* ===========================================
   PRAKTISCHE INFO
=========================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.info-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: border-color 0.25s;
}
.info-card:hover { border-color: rgba(201,168,76,0.25); }
.info-card-icon { width: 36px; height: 36px; margin-bottom: 20px; color: var(--accent); }
.info-card-icon svg { width: 100%; height: 100%; }
.info-card h3 { color: var(--white); margin-bottom: 14px; }
.info-card p  { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 8px; }
.praktisch-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0 4px 18px;
    position: relative;
}
.praktisch-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.praktisch-list { margin: 8px 0; }

/* ===========================================
   RECENSIES
=========================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Ruben's featured recensie: volle breedte onderaan */
.review-card-featured {
    grid-column: 1 / -1;
}

.review-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
}
.review-stars svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
    display: block;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
    margin: 0;
    quotes: "\201C" "\201D";
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(201, 168, 76, 0.35);
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card-featured {
        grid-column: 1;
    }
}

/* ===========================================
   INSCHRIJFFORMULIER
=========================================== */
.register-form {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 48px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
label span[aria-hidden] { color: var(--accent); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.95rem;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.2); }
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
input.invalid,
select.invalid,
textarea.invalid { border-color: var(--red); }

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
select option { background: var(--surface-2); color: var(--text); }

textarea { resize: vertical; min-height: 100px; }

.field-error {
    color: var(--red);
    font-size: 0.8rem;
    min-height: 1em;
    display: block;
}

/* Custom checkbox */
.form-consent { margin-top: 8px; }
.checkbox-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.checkbox-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: var(--surface);
    margin-top: 2px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.checkbox-wrap input:checked ~ .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}
.checkbox-wrap input:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: 2px solid #0a0a0a;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.checkbox-wrap input:focus-visible ~ .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}
.checkbox-text a { color: var(--accent); }

.form-feedback {
    margin: 16px 0;
    padding: 14px 18px;
    border-radius: var(--r);
    font-size: 0.9rem;
    display: none;
}
.form-feedback.error {
    display: block;
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.4);
    color: #e88;
}
.form-feedback.success {
    display: block;
    background: rgba(39,174,96,0.15);
    border: 1px solid rgba(39,174,96,0.4);
    color: #8e8;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block; /* [hidden] reset rule handles the hidden state */
}
#submit-btn[disabled] { opacity: 0.7; cursor: not-allowed; transform: none !important; }

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.success-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    color: var(--accent);
    animation: fadeInDown 0.5s var(--ease) both;
}
.success-check svg { width: 100%; height: 100%; stroke-dasharray: 150; stroke-dashoffset: 150; animation: drawCheck 0.6s 0.3s var(--ease) forwards; }
.form-success h3 { font-family: var(--font-h); color: var(--white); margin-bottom: 16px; font-size: 1.5rem; }
.form-success p  { color: var(--text-muted); }

/* ===========================================
   FOOTER
=========================================== */
.footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    text-align: center;
}
.footer-top { margin-bottom: 20px; }
.footer-logo { height: 64px; width: auto; margin: 0 auto 16px; opacity: 0.85; }
.footer-tagline {
    font-family: var(--font-b);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}
.footer-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: var(--border); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.footer-gdpr { font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.footer-gdpr a { color: rgba(255,255,255,0.35); }
.footer-gdpr a:hover { color: var(--text-muted); }

/* ===========================================
   PRIVACY PAGE
=========================================== */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: var(--text-muted); margin-top: 12px; }

.page-content {
    padding: 64px 0 100px;
}
.page-content .container { max-width: 760px; }
.page-content h2 {
    font-size: 1.3rem;
    color: var(--white);
    margin: 48px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.page-content h2:first-of-type { margin-top: 0; }
.page-content h3 { font-size: 1.05rem; color: var(--accent); margin: 28px 0 10px; }
.page-content p  { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 12px; }
.page-content ul, .page-content ol { margin: 12px 0 12px 20px; }
.page-content ul li { list-style: disc; color: var(--text-muted); font-size: 0.93rem; margin-bottom: 6px; }
.page-content ol li { list-style: decimal; color: var(--text-muted); font-size: 0.93rem; margin-bottom: 6px; }
.page-content a { color: var(--accent); }
.page-content strong { color: var(--white); }
.page-content .update-date { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 40px; font-style: italic; }

/* ===========================================
   ANIMATIONS
=========================================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 900px) {
    .concept-vs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .concept-divider span { width: 44px; height: 44px; font-size: 1rem; }
    .concept-boxes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Navbar mobile */
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 85vw);
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        border-left: 1px solid var(--border);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { font-size: 1rem; padding: 14px 18px; width: 100%; }
    .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }

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

    .form-row { grid-template-columns: 1fr; }
    .register-form { padding: 32px 24px; }

    .cookie-inner { flex-direction: column; gap: 16px; }
    .cookie-actions { width: 100%; justify-content: stretch; }
    .cookie-actions .btn { flex: 1; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
}

/* Honeypot botcheck – verborgen voor gebruikers, zichtbaar voor bots */
.botcheck {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Focus visible styles for accessibility */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}
