/* ═══════════════════════════════════════════════════════════════════════
   Chinese Quanfa Belgium — kungfugent.be
   Gedeelde stijl voor alle publieke pagina's
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

/* ── Kleurenpalet ──────────────────────────────────────────────────── */
:root {
    --cream:        #FAF6EE;       /* basis-achtergrond, warm ivoor */
    --cream-soft:   #F2EBDC;       /* iets dieper voor info-boxen */
    --paper:        #FFFFFF;       /* echte witte panelen */
    --ink:          #1A1A1A;       /* hoofd-tekstkleur, niet pikzwart */
    --ink-soft:     #4A4A4A;       /* secundaire tekst */
    --ink-mute:     #7A7A7A;       /* meta-tekst, datum, captions */

    --accent:       #8B1F1F;       /* diep rood — uit logo */
    --accent-dark:  #6B1414;       /* hover */
    --accent-soft:  rgba(139,31,31,0.08);

    --gold:         #C9A961;       /* warm goud — uit logo-rand */
    --gold-dark:    #A88840;       /* hover */
    --gold-soft:    rgba(201,169,97,0.12);

    --black:        #0A0A0A;       /* echt zwart voor banners */
    --black-soft:   #1F1F1F;       /* iets zachter zwart */

    --line:         rgba(0,0,0,0.08);    /* dunne scheidingslijnen */
    --line-strong:  rgba(0,0,0,0.18);

    --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg:    0 18px 48px rgba(0,0,0,0.14);
    --shadow-xl:    0 30px 80px rgba(0,0,0,0.20);

    --radius-sm:    8px;
    --radius:       14px;
    --radius-lg:    24px;

    --container:    1240px;
    --container-narrow: 920px;
}

/* ── Typografie ────────────────────────────────────────────────────── */
h1, h2, h3, h4, .display {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.3rem; }

.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 14px;
}

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

/* ── Container & Layout ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,246,238,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,246,238,0.98); }

.site-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}
.site-logo img { width: 50px; height: 50px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.site-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.site-logo-text .tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.site-nav a:hover { background: var(--accent-soft); color: var(--accent); }
.site-nav a.active { color: var(--accent); }

.nav-toggle {
    display: none;
    background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px;
    padding: 10px;
    color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
@media (max-width: 880px) {
    .site-nav {
        position: fixed;
        top: 78px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--cream);
        padding: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform .3s;
        gap: 0;
    }
    .site-nav.open { transform: translateY(0); }
    .site-nav a { padding: 14px 18px; font-size: 16px; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
    margin-top: 100px;
    font-size: 14px;
}
.site-footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}
@media (max-width: 760px) {
    .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .site-footer-brand { grid-column: 1 / -1; }
}
.site-footer h5 {
    color: var(--gold);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold); }
.site-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.site-footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}
.site-footer-brand p { font-size: 13px; line-height: 1.7; max-width: 360px; }
.site-footer-bottom {
    max-width: var(--container);
    margin: 60px auto 0;
    padding: 24px 28px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.site-footer-bottom a { color: rgba(255,255,255,0.55); margin-left: 18px; font-size: 12px; }
.site-footer-bottom a:hover { color: var(--gold); }

.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-links a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    transition: border-color .2s, background .2s, transform .2s;
}
.social-links a:hover {
    border-color: var(--gold);
    background: rgba(201,169,97,0.12);
    transform: translateY(-2px);
}
.social-links svg { width: 16px; height: 16px; }

/* ── Hero / Banners ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    color: #fff;
}
.hero-slider {
    position: absolute; inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.30) 40%,
        rgba(0,0,0,0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 28px 80px;
    max-width: 900px;
    animation: heroIn 1.2s ease-out both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: inline-block;
}
.hero-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-tagline {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 36px;
    font-weight: 300;
}
.hero-chinese {
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.hero-dots {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.hero-dot {
    width: 28px; height: 3px;
    background: rgba(255,255,255,0.3);
    border: 0; cursor: pointer;
    transition: background .3s, width .3s;
    padding: 0;
}
.hero-dot.active { background: var(--gold); width: 48px; }

/* Compact hero voor binnenpagina's */
.page-hero {
    background: var(--black);
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.4;
}
.page-hero[data-bg]::before { background-image: var(--page-hero-bg); }
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.85));
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 {
    color: #fff;
    margin-bottom: 14px;
}
.page-hero .hero-tagline { color: rgba(255,255,255,0.8); margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); }

/* ── Round buttons (landing) ───────────────────────────────────────── */
.round-buttons-section {
    padding: 100px 0 80px;
    text-align: center;
}
.round-buttons-section .eyebrow { margin-bottom: 18px; }
.round-buttons-section h2 {
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 400;
}
.round-buttons-section .lead {
    max-width: 620px;
    margin: 0 auto 60px;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.round-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 36px 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}
@media (max-width: 760px) { .round-buttons { gap: 30px 16px; } }
@media (max-width: 480px) { .round-buttons { grid-template-columns: repeat(2, 1fr); } }

.round-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--ink);
    transition: transform .3s;
    cursor: pointer;
}
.round-btn:hover { transform: translateY(-6px); }
.round-btn:hover .round-btn-img { box-shadow: var(--shadow-lg); }
.round-btn:hover .round-btn-img::after { opacity: 1; }
.round-btn:hover .round-btn-img img { transform: scale(1.08); }
.round-btn:hover .round-btn-label { color: var(--accent); }

.round-btn-img {
    position: relative;
    width: 200px; height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow .3s;
    background: var(--black);
}
@media (max-width: 480px) { .round-btn-img { width: 140px; height: 140px; } }
.round-btn-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.round-btn-img::after {
    content: '';
    position: absolute; inset: 0;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.round-btn-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    transition: color .2s;
}

/* ── Section algemeen ──────────────────────────────────────────────── */
section { padding: 80px 0; }
section.tight { padding: 60px 0; }
section.dark {
    background: var(--black);
    color: rgba(255,255,255,0.85);
}
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }
section.dark .eyebrow { color: var(--gold); }
section.dark a:not(.btn) { color: var(--gold); }
section.dark a:not(.btn):hover { color: #fff; }

section.cream { background: var(--cream-soft); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head .lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin-top: 18px;
}

/* ── Content blocks (gebruikt in welkom/team etc.) ─────────────────── */
.content-block {
    margin: 0 auto 70px;
    max-width: var(--container-narrow);
    padding: 0 28px;
}
.content-block:last-child { margin-bottom: 0; }

.content-block h2 {
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
    color: var(--accent-dark);
}

.content-text { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.85; }
.content-text a {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    font-weight: 500;
}
.content-text a:hover { color: var(--accent-dark); border-color: var(--accent-dark); }

.content-image {
    margin: 36px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.content-image img { width: 100%; height: auto; display: block; }
.content-image .caption {
    padding: 12px 18px;
    font-size: 13px;
    color: var(--ink-mute);
    background: var(--cream-soft);
    font-style: italic;
    text-align: center;
}

.info-box {
    background: linear-gradient(135deg, var(--gold-soft), var(--cream-soft));
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    border-radius: var(--radius-sm);
    margin: 32px 0;
}
.info-box p:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--accent-dark);
    margin-bottom: 12px;
    font-weight: 500;
}
.info-box p {
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.75;
}

.quote-block {
    text-align: center;
    max-width: 720px;
    margin: 70px auto;
    padding: 0 28px;
}
.quote-block::before {
    content: '“';
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    line-height: 0.8;
    color: var(--gold);
    margin-bottom: 12px;
}
.quote-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
}
.quote-block .quote-author {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 24px;
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(139,31,31,0.3);
}
.btn-primary:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(139,31,31,0.4);
}
.btn-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(201,169,97,0.3);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--cream);
}
.btn-ghost-light {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ── Stats / Highlights row ────────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin: 60px 0;
}
.stat-item {
    padding: 30px 20px;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}
.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ── Team / instructor cards ───────────────────────────────────────── */
.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    margin-top: 60px;
}
.instructor-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.instructor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.instructor-card-body { padding: 28px 30px 32px; }
.instructor-card h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    color: var(--ink);
}
.instructor-card .title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: block;
}

.bio-list { list-style: none; padding: 0; margin: 0; }
.bio-item { border-top: 1px solid var(--line); }
.bio-item:first-child { border-top: 0; }
.bio-header {
    background: none; border: 0; cursor: pointer;
    width: 100%; padding: 14px 0;
    display: flex; align-items: center; justify-content: space-between;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: color .2s;
}
.bio-header:hover { color: var(--accent); }
.bio-header .chev {
    width: 14px; height: 14px;
    color: var(--ink-mute);
    transition: transform .25s;
    flex-shrink: 0;
}
.bio-item.active .bio-header .chev { transform: rotate(180deg); color: var(--accent); }
.bio-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}
.bio-item.active .bio-content { max-height: 600px; padding-bottom: 18px; }

/* ── Tabel ─────────────────────────────────────────────────────────── */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.schedule-table th, .schedule-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.schedule-table th {
    background: var(--black);
    color: var(--gold);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.schedule-table tr:last-child td { border-bottom: 0; }
.schedule-table tr:hover td { background: var(--cream-soft); }
.schedule-table td:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}
@media (max-width: 760px) {
    .schedule-table { font-size: 13px; }
    .schedule-table th, .schedule-table td { padding: 12px 10px; }
}

/* ── Map embed ─────────────────────────────────────────────────────── */
.map-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 30px 0;
}
.map-card-body { padding: 24px 28px; }
.map-card h3 { margin-bottom: 6px; }
.map-card .address {
    color: var(--ink-mute);
    font-size: 14px;
    margin-bottom: 14px;
}
.map-card iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* ── Reveal-on-scroll ──────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger helpers */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }

/* ── Cookie banner ─────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    max-width: 540px;
    margin-left: auto;
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 200;
    display: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cookie-banner p { font-size: 13px; flex: 1 1 280px; line-height: 1.55; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner button {
    background: var(--gold);
    color: var(--black);
    border: 0;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.cookie-banner button:hover { background: #fff; }
@media (max-width: 600px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

/* ── Utility ───────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 24px; }
.mt-4 { margin-top: 48px; }
hr.divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 60px 0;
}
.divider-fancy {
    text-align: center;
    margin: 60px 0;
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 16px;
}

/* ── Publieke kalender (FullCalendar override) ─────────────────────── */
.calendar-wrap {
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 28px;
    margin: 30px 0;
}
@media (max-width: 600px) { .calendar-wrap { padding: 14px 10px; } }

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-soft);
}
.calendar-legend-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.calendar-legend-dot::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}
.legend-training::before  { background: #2E7D5B; }
.legend-cancelled::before { background: #999; }
.legend-moved::before     { background: #B97E1F; }
.legend-activity::before  { background: var(--accent); }

/* FullCalendar look-and-feel — match site theme */
#publicCalendar { font-family: 'Manrope', sans-serif; font-size: 14px; }
.fc { color: var(--ink); }
.fc .fc-toolbar-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    text-transform: capitalize;
}
.fc .fc-button {
    background: var(--paper) !important;
    color: var(--ink) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    text-transform: capitalize !important;
    box-shadow: none !important;
    transition: background .15s, color .15s, border-color .15s !important;
}
.fc .fc-button:hover:not(:disabled) {
    background: var(--accent-soft) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}
.fc .fc-button-primary:disabled { opacity: 0.4 !important; }
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 1.2em !important;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 600px) {
    .fc .fc-toolbar.fc-header-toolbar { justify-content: center !important; }
    .fc .fc-toolbar-title { font-size: 1.3rem !important; }
}

.fc-theme-standard td, .fc-theme-standard th { border-color: var(--line) !important; }
.fc-theme-standard .fc-scrollgrid { border-color: var(--line) !important; }
.fc .fc-col-header-cell { background: var(--cream-soft); }
.fc .fc-col-header-cell-cushion {
    color: var(--ink-mute) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 10px 6px !important;
}
.fc .fc-daygrid-day-number {
    color: var(--ink) !important;
    font-weight: 500 !important;
    padding: 6px 8px !important;
}
.fc .fc-day-today { background: var(--gold-soft) !important; }
.fc .fc-day-today .fc-daygrid-day-number { color: var(--accent) !important; font-weight: 700 !important; }

/* Event-stijlen — semantische kleuren */
.fc .fc-event {
    border-radius: 6px !important;
    border: 0 !important;
    padding: 2px 6px !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    cursor: pointer;
}
.fc .evt-training {
    background: #2E7D5B !important;
    color: #fff !important;
}
.fc .evt-cancelled {
    background: #E8E8E8 !important;
    color: #888 !important;
    text-decoration: line-through !important;
}
.fc .evt-moved {
    background: #B97E1F !important;
    color: #fff !important;
}
.fc .evt-activity {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* List-view (mobiel/lijst-weergave) */
.fc .fc-list-event:hover td { background: var(--cream-soft) !important; }
.fc .fc-list-day-cushion { background: var(--cream-soft) !important; }

/* Modal voor event-detail */
.evt-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 300;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
}
.evt-modal-backdrop.show { display: flex; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.evt-modal {
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.evt-modal-header {
    padding: 22px 26px 18px;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: flex-start; gap: 14px;
}
.evt-modal-header-text { flex: 1; }
.evt-modal-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}
.evt-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1.3;
    margin: 0;
}
.evt-modal-close {
    background: none; border: 0;
    cursor: pointer;
    color: var(--ink-mute);
    padding: 4px;
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
}
.evt-modal-close:hover { background: var(--cream-soft); color: var(--ink); }
.evt-modal-close svg { width: 20px; height: 20px; }

.evt-modal-body { padding: 22px 26px 26px; }
.evt-detail-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 8px 0;
    font-size: 14px;
}
.evt-detail-row + .evt-detail-row { border-top: 1px solid var(--line); }
.evt-detail-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-mute);
    min-width: 90px;
    padding-top: 2px;
    flex-shrink: 0;
}
.evt-detail-value { color: var(--ink-soft); flex: 1; line-height: 1.6; }
.evt-detail-value strong { color: var(--ink); font-weight: 600; }

.evt-warning {
    margin-top: 14px;
    padding: 12px 16px;
    background: #FEF3E0;
    border-left: 3px solid #B97E1F;
    border-radius: 6px;
    font-size: 13px;
    color: #6B4D14;
}
.evt-warning strong { color: #B97E1F; }
.evt-cancelled-banner {
    margin-top: 14px;
    padding: 12px 16px;
    background: #F0F0F0;
    border-left: 3px solid #888;
    border-radius: 6px;
    font-size: 13px;
    color: #555;
}

/* ── Formulieren (contact, lidmaatschap, …) ────────────────────────── */
.form-wrap {
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 40px 44px;
    max-width: 740px;
    margin: 0 auto;
}
@media (max-width: 600px) { .form-wrap { padding: 28px 22px; } }

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; gap: 14px; } }

.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-grid-2 .form-field { margin-bottom: 0; }

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink);
}
.form-field label .req {
    color: var(--accent);
    margin-left: 2px;
}
.form-field label .optional {
    color: var(--ink-mute);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    margin-left: 4px;
}
.form-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--ink-mute);
    font-style: italic;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line-strong);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--accent);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-field input:invalid:not(:placeholder-shown) { border-color: #C0392B; }

.captcha-field { margin-top: 8px; }
.captcha-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.captcha-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--gold-soft);
    padding: 10px 18px;
    border-radius: 8px;
    letter-spacing: 2px;
}

.form-actions {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 600px) {
    .form-actions { justify-content: stretch; }
    .form-actions .btn { width: 100%; justify-content: center; }
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.form-status {
    margin: 24px 0 0;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    border-left: 4px solid;
}
.form-status.success {
    background: rgba(46,125,91,0.08);
    border-color: #2E7D5B;
    color: #1F5942;
}
.form-status.error {
    background: rgba(192,57,43,0.08);
    border-color: #C0392B;
    color: #8B1F1F;
}

/* ── Nieuwsberichten: lijst ────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
}
@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; gap: 24px; }
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--ink);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}

.news-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-soft);
    flex-shrink: 0;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-image-placeholder {
    background: linear-gradient(135deg, var(--black), var(--black-soft));
    display: flex; align-items: center; justify-content: center;
}
.news-placeholder-symbol {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

.news-card-body {
    padding: 24px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-date {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.news-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 12px;
}
.news-card-intro {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 18px;
    flex: 1;
}
.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.news-card-readmore {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    transition: color .2s;
}
.news-card:hover .news-card-readmore { color: var(--accent-dark); }
.news-card-tags {
    display: flex;
    gap: 8px;
    align-items: center;
}
.news-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--gold-soft);
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 600;
}

/* ── Nieuwsberichten: artikel content (HTML uit JSON) ──────────────── */
.news-article {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
}
.news-article h2 {
    font-size: 1.7rem;
    color: var(--accent-dark);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}
.news-article h3 {
    font-size: 1.35rem;
    color: var(--accent-dark);
    margin: 32px 0 14px;
    font-weight: 600;
}
.news-article h4 { font-size: 1.15rem; margin: 26px 0 12px; color: var(--ink); }
.news-article p { margin-bottom: 18px; }
.news-article p:last-child { margin-bottom: 0; }
.news-article a {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    font-weight: 500;
}
.news-article a:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
.news-article ul, .news-article ol {
    margin: 18px 0 24px 22px;
    line-height: 1.8;
}
.news-article li { margin-bottom: 8px; }
.news-article blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    background: var(--cream-soft);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    font-style: italic;
}
.news-article img {
    border-radius: var(--radius-sm);
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}
.news-article strong { color: var(--ink); font-weight: 600; }
.news-article em { color: var(--accent-dark); }

/* ── Video grid (lite-YouTube) ─────────────────────────────────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}
.video-wrap {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #000;
}
lite-youtube {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: #000;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    position: relative;
}
lite-youtube::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent);
}
lite-youtube > .lty-playbtn {
    width: 70px;
    height: 46px;
    background: rgba(33, 33, 33, 0.85);
    border-radius: 14%;
    z-index: 1;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color .15s;
    cursor: pointer;
}
lite-youtube > .lty-playbtn:hover { background-color: var(--accent); }
lite-youtube > .lty-playbtn::before {
    content: '';
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 11px 0 11px 19px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
lite-youtube .lty-playbtn { text-indent: -9999px; overflow: hidden; }
lite-youtube.lyt-activated { cursor: unset; }
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn { opacity: 0; pointer-events: none; }

/* ── PDF-bijlagen ──────────────────────────────────────────────────── */
.attachment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.attachment-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.attachment-link:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
}
.attachment-icon { font-size: 24px; flex-shrink: 0; }
.attachment-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.attachment-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.attachment-meta { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.5px; }
.attachment-arrow { color: var(--accent); font-size: 20px; flex-shrink: 0; }

/* ── Vorige / Volgende navigatie ───────────────────────────────────── */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) { .article-nav { grid-template-columns: 1fr; } }
.article-nav-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 26px;
    background: var(--paper);
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.article-nav-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-nav-link.next { text-align: right; }
.article-nav-link .dir {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
}
.article-nav-link .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.3;
    margin-top: 4px;
}
.article-nav-link .date {
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 2px;
}

/* ── Lidmaatschap-wizard ───────────────────────────────────────────── */
.wizard-progress {
    max-width: 740px;
    margin: 0 auto 50px;
    padding: 0 20px;
}
.wizard-progress-bar {
    height: 3px;
    background: var(--line);
    border-radius: 50px;
    margin-bottom: 18px;
    overflow: hidden;
}
.wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 50px;
    width: 0%;
    transition: width .4s ease;
}
.wizard-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 6px;
}
.wizard-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--ink-mute);
    transition: color .3s;
}
.wizard-step .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    transition: all .3s;
}
.wizard-step .lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.wizard-step.active {
    color: var(--accent);
}
.wizard-step.active .num {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(139,31,31,0.3);
    transform: scale(1.1);
}
.wizard-step.done {
    color: var(--ink);
}
.wizard-step.done .num {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.wizard-step.done .num::before {
    content: '✓';
    font-size: 16px;
}
.wizard-step.done .num span,
.wizard-step.done .num {
    font-size: 0;
}
.wizard-step.done .num::before {
    font-size: 16px;
}
@media (max-width: 600px) {
    .wizard-step .lbl { font-size: 9px; letter-spacing: 0.5px; }
    .wizard-step .num { width: 28px; height: 28px; font-size: 11px; }
}

.wizard-form { position: relative; }
.wizard-pane {
    display: none;
    animation: fadeInPane .35s ease;
}
.wizard-pane.active { display: block; }
@keyframes fadeInPane {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
@media (max-width: 600px) {
    .wizard-actions { flex-direction: column-reverse; }
    .wizard-actions .btn { width: 100%; justify-content: center; }
}

/* Berekening box (lidgeld pro-rata) */
.berekening-box {
    margin: 32px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--gold-soft), var(--cream-soft));
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
}
.berekening-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--accent-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.berekening-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: 14px;
}
.berekening-row .lbl { flex: 1; }
.berekening-row .val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.5px;
}
.berekening-row.total {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 2px solid var(--gold);
    align-items: center;
}
.berekening-row.total .lbl {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.berekening-row.total .val {
    font-size: 1.8rem;
    color: var(--accent);
}
.berekening-detail {
    font-size: 12px;
    color: var(--ink-mute);
    font-weight: 400;
    margin-left: 6px;
    display: inline-block;
}

/* Document-cards in stap 3 en 4 */
.document-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin: 20px 0;
}
.document-card-icon {
    font-size: 36px;
    flex-shrink: 0;
    line-height: 1;
}
.document-card-body { flex: 1; }
.document-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--ink);
}
.document-card-body p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 14px;
}
.document-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.document-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

/* Akkoord-checkboxes */
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--cream-soft);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    margin: 14px 0 0;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.checkbox-row:hover { border-color: var(--accent); }
.checkbox-row input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--accent);
}
.checkbox-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
}
.checkbox-text strong { color: var(--ink); }

/* Betaalbox */
.payment-box {
    margin: 24px 0;
    padding: 24px 28px;
    background: var(--paper);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
}
.payment-box h3 {
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}
.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
}
.payment-row:last-child { border-bottom: 0; }
.payment-row .lbl {
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 130px;
}
.payment-row .val {
    color: var(--ink);
    font-weight: 600;
    text-align: right;
}
.payment-row .val.mono {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--accent);
}

/* Success-icon (stap 6) */
.success-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E7D5B, #4CA378);
    color: #fff;
    font-size: 44px;
    line-height: 84px;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(46,125,91,0.3);
    animation: successPop .4s ease;
}
@keyframes successPop {
    from { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    to { transform: scale(1); opacity: 1; }
}
/* ── Legal pages (Disclaimer, Privacy, Cookies, Terms) ─────────────── */
.legal-meta {
    text-align: center;
    margin: -10px 0 40px;
    color: var(--ink-mute);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal-section {
    margin-bottom: 44px;
}
.legal-section:last-child { margin-bottom: 0; }

.legal-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: var(--accent-dark);
    margin: 0 0 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.legal-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 22px 0 10px;
    letter-spacing: 0.3px;
}

.legal-section p { margin: 0 0 14px; }
.legal-section ul, .legal-section ol {
    margin: 8px 0 16px 22px;
    line-height: 1.8;
    color: var(--ink-soft);
}
.legal-section li { margin-bottom: 4px; }

.legal-toc {
    background: var(--cream-soft);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 20px 26px;
    margin-bottom: 50px;
}
.legal-toc h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 12px;
    font-weight: 700;
}
.legal-toc ol {
    margin: 0;
    padding-left: 22px;
    columns: 2;
    gap: 24px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.9;
}
.legal-toc a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.legal-toc a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
@media (max-width: 600px) {
    .legal-toc ol { columns: 1; }
}

.legal-contact-box {
    background: var(--paper);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 22px 26px;
    margin-top: 34px;
}
.legal-contact-box h4 {
    color: var(--accent-dark);
    margin: 0 0 12px;
    font-size: 1rem;
}
.legal-contact-box p { margin: 0 0 6px; font-size: 14px; }
.legal-contact-box p:last-child { margin-bottom: 0; }
.legal-contact-box strong { color: var(--ink); display: inline-block; min-width: 130px; }
