/* ==========================================================================
   Mello — publieke site design system
   Stoer dark-mode palet: houtskool/antraciet, warm koper accent,
   gedempt teal als tweede accent, kraftpapier-bruin voor menukaarten.
   ========================================================================== */

:root{
    --ink: #161616;
    --ink-2: #201f1e;
    --ink-3: #2a2827;
    --cream: #f4f4f4;
    --cream-dim: #c7c4c1;
    --muted: #8c8987;
    --copper: #c45f22;
    --copper-bright: #d97a35;
    --teal: #84b0b3;
    --teal-bright: #a7c9cb;
    --kraft: #a48366;
    --kraft-dim: #8a6c50;
    --line: rgba(244,244,244,0.12);
    --line-strong: rgba(244,244,244,0.22);
    --shadow: 0 30px 80px -30px rgba(0,0,0,.7);
    --ff-display: 'Oswald', ui-sans-serif, sans-serif;
    --ff-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: auto; }
html.has-lenis{ height: auto; }
body{
    margin: 0;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
::selection{ background: var(--copper); color: #1a0f08; }

h1,h2,h3,h4{
    font-family: var(--ff-display); font-weight: 700; margin: 0;
    text-transform: uppercase; letter-spacing: .01em;
}
p{ margin: 0; }

.container{
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow{
    display: inline-flex;
    align-items: center;
    gap: .6em;
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--teal-bright);
    font-weight: 700;
}
.eyebrow::before{
    content: '';
    width: 28px; height: 1px;
    background: var(--teal-bright);
    display: inline-block;
}

/* Plek voor een eigen foto/illustratie die er nog niet is */
.mascot-slot{
    border: 1.5px dashed var(--line-strong); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 2.5rem 1.5rem; color: var(--muted); font-size: .82rem; line-height: 1.6;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px);
}

/* Grain overlay voor tactiele textuur */
.grain{
    position: fixed; inset: 0; pointer-events: none; z-index: 200;
    opacity: .045; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom cursor (alleen fine-pointer devices) */
.cursor-dot{
    position: fixed; top:0; left:0; width: 10px; height: 10px; border-radius: 50%;
    background: var(--copper-bright); pointer-events: none; z-index: 999;
    transform: translate(-50%,-50%); mix-blend-mode: difference;
    transition: width .2s var(--ease), height .2s var(--ease), opacity .2s;
    opacity: 0;
}
.cursor-dot.is-visible{ opacity: 1; }
.cursor-dot.is-hover{ width: 42px; height: 42px; }
@media (pointer: coarse){ .cursor-dot{ display: none; } }

/* ---------------------------------------------------------------------
   Header / navigatie
   --------------------------------------------------------------------- */
.site-header{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.1rem 0;
    background: linear-gradient(to bottom, rgba(22,22,22,.85), transparent);
    transition: background .3s ease, padding .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
    background: rgba(22,22,22,.94);
    backdrop-filter: blur(10px);
    padding: .75rem 0;
    border-color: var(--line);
}
.nav{ display: flex; align-items: center; justify-content: space-between; }
.nav__brand{ display: flex; align-items: center; text-decoration: none; }
.nav__brand-mark{ height: 46px; width: 46px; display: block; transition: transform .25s var(--ease); }
.nav__brand:hover .nav__brand-mark{ transform: rotate(-8deg); }
@media (max-width: 860px){ .nav__brand-mark{ height: 40px; width: 40px; } }
.nav__links{ display: flex; gap: 2.1rem; list-style: none; margin: 0; padding: 0; }
.nav__links a{
    text-decoration: none; font-size: .88rem; color: var(--cream-dim); letter-spacing: .01em;
    position: relative; padding-bottom: 4px; display: flex; flex-direction: column; align-items: center; gap: .15rem;
}
.nav__links a::after{
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--teal-bright);
    transition: width .3s var(--ease);
}
.nav__links a:hover{ color: var(--cream); }
.nav__links a:hover::after{ width: 100%; }
.nav__links a.is-active{ color: var(--copper-bright); }
.nav__sub{
    font-size: .68rem; color: var(--cream-dim); opacity: .55; letter-spacing: .01em;
    font-weight: 400; text-transform: none; white-space: nowrap;
}
.nav__links a.is-active .nav__sub{ color: var(--copper-bright); opacity: .75; }
.nav__cta{
    background: var(--copper); color: #fff2ea; text-decoration: none; font-weight: 600; font-size: .84rem;
    padding: .6rem 1.15rem; border-radius: 6px; letter-spacing: .01em; transition: filter .2s, transform .2s;
}
.nav__cta:hover{ filter: brightness(1.12); transform: translateY(-1px); }
.nav__burger{
    display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer;
}
.nav__burger::before{ content: '☰'; }
/* Checkbox zelf blijft volledig onzichtbaar maar wél aanwezig in de DOM —
   dat is wat de pure-CSS open/dicht-mechaniek aandrijft via :checked. */
.nav__toggle-input{
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 860px){
    .nav__links{
        position: fixed; inset: 0; top: 0; height: 100dvh; background: var(--ink);
        flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
        transform: translateY(-100%); transition: transform .5s var(--ease); z-index: 90;
    }
    .nav__toggle-input:checked ~ .nav__links{ transform: translateY(0); }
    .nav__links a{ font-size: 1.4rem; font-family: var(--ff-display); text-transform: uppercase; }
    .nav__sub{ font-size: .8rem; font-family: var(--ff-body); text-transform: none; letter-spacing: .01em; }
    .nav__burger{ display: block; z-index: 95; }
    .nav__toggle-input:checked ~ .nav__burger::before{ content: '✕'; }
}

/* ---------------------------------------------------------------------
   Video-scrub hero — scroll-positie stuurt lineair de afspeeltijd van één
   doorlopende video (montage van foto's die elke ~1,5s wisselen; zie
   assets/js/video-scrub.js). Geen handmatige hoogte hier: GSAP's pin
   (pinSpacing: true) reserveert zelf de juiste scrolruimte rond
   .video-hero__pin — dat voorkomt mismatches tussen een met de hand
   ingeschatte hoogte en de werkelijke pin-duur (die eerder zowel een zwart
   gat ná de hero als een hero die nooit losliet heeft veroorzaakt).
   .video-hero zelf is dus gewoon zo hoog als zijn inhoud (100dvh, de
   hoogte van .video-hero__pin) totdat GSAP een spacer omheen zet.
   --------------------------------------------------------------------- */
.video-hero{ position: relative; }
/* Fallback als scroll-scrub niet opstart (zie video-scrub.js): de hero
   blijft dan gewoon één schermhoogte met het eerste tekstblok statisch aan
   (geen pin, dus geen extra scrolruimte nodig). */
.video-hero--static{ height: 100dvh; }
.video-hero--static .video-hero__pin{ position: relative; }
.video-hero__pin{
    position: relative; height: 100dvh; overflow: hidden;
    background: var(--ink);
}
.video-hero__video{
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-hero__overlay{
    position: absolute; inset: 0; z-index: 1;
    /* Extra vignet rechtsonder, boven de standaard donkere overlay — dooft
       daar het randmerkje van de bronvideo op een manier die bij de
       filmische look past i.p.v. een harde crop. */
    background:
        radial-gradient(32% 42% at 90% 86%, rgba(0,0,0,.92), rgba(0,0,0,.5) 55%, transparent 80%),
        rgba(0,0,0,.6);
}
.video-hero__fallback{
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 55% at 75% 25%, rgba(196,95,34,.25), transparent 60%),
        radial-gradient(55% 45% at 20% 80%, rgba(132,176,179,.16), transparent 60%),
        var(--ink);
    display: none; align-items: center; justify-content: center; text-align: center;
    color: var(--muted); font-size: .82rem; padding: 2rem;
}
.video-hero--fallback .video-hero__fallback{ display: flex; }
.video-hero--fallback .video-hero__video{ display: none; }

.video-hero__nav-spacer{ height: 6rem; }
.video-hero__text{
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 clamp(1.25rem, 6vw, 6rem);
    opacity: 0; pointer-events: none;
}
.video-hero__text .eyebrow{ margin-bottom: 1.25rem; }
.video-hero__text h1, .video-hero__text h2{
    font-size: clamp(2.4rem, 7vw, 5.4rem); line-height: .98; color: var(--cream);
    max-width: 18ch;
}
.video-hero__text h1 em, .video-hero__text h2 em{ font-style: normal; color: var(--copper-bright); }
.video-hero__text p{
    margin-top: 1.5rem; max-width: 36ch; color: var(--cream-dim); font-size: 1.08rem;
}
.video-hero__scroll-cue{
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    color: var(--muted); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
    z-index: 3;
}
.video-hero__scroll-cue .stick{ width: 1px; height: 40px; background: linear-gradient(var(--copper-bright), transparent); animation: pulse-stick 2s ease-in-out infinite; }
@keyframes pulse-stick{ 0%,100%{ opacity: .3; } 50%{ opacity: 1; } }

.hero__actions{ display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.btn{
    display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
    padding: .95rem 1.7rem; border-radius: 6px; font-weight: 700; font-size: .85rem;
    letter-spacing: .04em; text-transform: uppercase;
    transition: transform .25s var(--ease), filter .2s, background .2s, color .2s, box-shadow .25s;
}
.btn--gold{ background: linear-gradient(135deg, var(--copper-bright), var(--copper)); color: #fff2ea; box-shadow: 0 12px 30px -12px rgba(196,95,34,.5); }
.btn--gold:hover{ filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(196,95,34,.65); }
.btn--ghost{ border: 1px solid var(--line-strong); color: var(--cream); }
.btn--ghost:hover{ border-color: var(--teal-bright); color: var(--teal-bright); transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   Marquee ticker
   --------------------------------------------------------------------- */
.marquee{
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 1.1rem 0; overflow: hidden; white-space: nowrap; background: var(--ink-2);
}
.marquee__track{ display: inline-flex; gap: 3rem; animation: marquee 28s linear infinite; will-change: transform; }
.marquee__track span{
    font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem; color: var(--cream-dim);
    text-transform: uppercase; letter-spacing: .04em;
    display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span em{ font-style: normal; color: var(--teal-bright); }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------------------------------------------------------------------
   Generieke secties
   --------------------------------------------------------------------- */
.section{ padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.section--tight{ padding: clamp(3rem, 6vw, 5rem) 0; }
.section__head{ max-width: 44rem; margin-bottom: 3.5rem; }
.section__title{ font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin-top: 1rem; color: var(--cream); }
.section__text{ color: var(--cream-dim); font-size: 1.05rem; margin-top: 1.1rem; max-width: 42ch; text-transform: none; letter-spacing: normal; font-family: var(--ff-body); font-weight: 400; }

.split{ display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px){ .split{ grid-template-columns: 1fr 1fr; gap: 5rem; } }
.split--reverse{ direction: rtl; }
.split--reverse > *{ direction: ltr; }

.frame{
    position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/5;
    background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.frame img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.frame::after{
    /* Donker verlopend laagje onder de caption, zodat die leesbaar blijft
       boven op een willekeurige foto. */
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.65));
    pointer-events: none;
}
.frame__caption{
    position: absolute; left: 1.25rem; bottom: 1.25rem; right: 1.25rem; z-index: 2;
    display: flex; justify-content: space-between; align-items: flex-end;
    font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--cream-dim);
}

/* Proces-galerij: 4 stappen van snijplank tot bord, elk met foto + korte
   uitleg — zelfde kaart-ritme als .values hierboven. */
.process{ display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.process__item{ margin: 0; }
.process__item img{
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px;
    border: 1px solid var(--line); display: block;
}
.process__num{ font-family: var(--ff-display); font-size: .9rem; color: var(--copper-bright); margin-top: 1.1rem; }
.process__title{ font-family: var(--ff-display); font-size: 1.1rem; margin-top: .35rem; color: var(--cream); text-transform: uppercase; }
.process__desc{ font-size: .88rem; color: var(--cream-dim); margin-top: .4rem; line-height: 1.5; }

.values{ display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 3rem; }
.values__item{ background: var(--ink-2); padding: 2.25rem 1.75rem; }
.values__num{ font-family: var(--ff-display); font-size: 1rem; color: var(--copper-bright); }
.values__title{ font-family: var(--ff-display); font-size: 1.25rem; margin-top: 1rem; color: var(--cream); text-transform: uppercase; }
.values__desc{ font-size: .92rem; color: var(--cream-dim); margin-top: .6rem; }

/* Stats */
.stats{ display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 2rem; margin-top: 3rem; border-top: 1px solid var(--line); padding-top: 2.5rem; }
.stat__num{ font-family: var(--ff-display); font-size: clamp(2.2rem,4vw,3rem); color: var(--copper-bright); }
.stat__label{ font-size: .8rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; margin-top: .4rem; }

/* ---------------------------------------------------------------------
   Horizontaal scrollende "signature dishes" galerij (gepind)
   --------------------------------------------------------------------- */
.gallery-pin{ position: relative; overflow: hidden; }
.gallery-pin__head{ padding-top: clamp(4rem,8vw,6rem); }
.gallery-track{ display: flex; gap: 1.75rem; padding: 4rem clamp(1.25rem,4vw,3rem) 6rem; width: max-content; }
.gallery-card{
    width: min(80vw, 400px); flex-shrink: 0; border-radius: 10px; overflow: hidden;
    background: var(--kraft); border: 1px solid var(--kraft-dim); box-shadow: var(--shadow);
}
.gallery-card__media{ aspect-ratio: 4/3; background: linear-gradient(155deg,var(--ink-3),#2a2318); position: relative; }
.gallery-card__price{
    position: absolute; top: 1rem; right: 1rem; background: var(--ink); color: var(--copper-bright);
    font-weight: 700; font-size: .85rem; padding: .4rem .8rem; border-radius: 6px;
}
.gallery-card__body{ padding: 1.5rem 1.6rem 1.75rem; }
.gallery-card__title{ font-family: var(--ff-display); font-size: 1.3rem; color: #201509; text-transform: uppercase; }
.gallery-card__desc{ font-size: .9rem; color: #3a2c1c; margin-top: .6rem; }

/* ---------------------------------------------------------------------
   Quote / verhaal block
   --------------------------------------------------------------------- */
.quote-band{ text-align: center; padding: clamp(4rem,9vw,7rem) 0; }
.quote-band blockquote{
    font-family: var(--ff-display); font-weight: 500; text-transform: none;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.3;
    max-width: 46rem; margin: 0 auto; color: var(--cream);
}
.quote-band cite{ display: block; margin-top: 2rem; font-style: normal; color: var(--copper-bright); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------------------------------------------------------------------
   Planning / locaties
   --------------------------------------------------------------------- */
.schedule-list{ margin-top: 2.5rem; border-top: 1px solid var(--line); }
.schedule-row{
    display: grid; grid-template-columns: 5rem 1fr auto; gap: 1.5rem; align-items: center;
    padding: 1.4rem 0; border-bottom: 1px solid var(--line);
}
.schedule-row__date{ font-family: var(--ff-display); color: var(--copper-bright); }
.schedule-row__date small{ display: block; color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.schedule-row__loc{ font-size: 1.05rem; color: var(--cream); }
.schedule-row__loc small{ display: block; color: var(--cream-dim); font-size: .85rem; margin-top: .2rem; }
.schedule-row__time{ color: var(--cream-dim); font-size: .9rem; white-space: nowrap; }
.schedule-empty{ padding: 2rem 0; color: var(--cream-dim); }

/* ---------------------------------------------------------------------
   Menu pagina — kaarten in kraftpapier-bruin, zoals streetfood-bakjes
   --------------------------------------------------------------------- */
.menu-tabs{ display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2.5rem; }
.menu-tabs a{
    text-decoration: none; padding: .55rem 1.1rem; border-radius: 6px; border: 1px solid var(--line-strong);
    color: var(--cream-dim); font-size: .82rem; text-transform: uppercase; letter-spacing: .03em;
}
.menu-tabs a:hover{ border-color: var(--copper-bright); color: var(--copper-bright); }
.menu-group{ margin-top: 4.5rem; scroll-margin-top: 7rem; }
.menu-group__title{ font-size: clamp(1.7rem,3vw,2.2rem); color: var(--cream); }
.menu-grid{ display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.menu-item{
    display: flex; gap: 1.1rem; padding: 1.4rem; border-radius: 10px;
    background: var(--kraft); border: 1px solid var(--kraft-dim); color: #201509;
}
.menu-item__thumb{ width: 84px; height: 84px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: linear-gradient(155deg,#8a6c50,#6e5540); }
.menu-item__thumb img{ width: 100%; height: 100%; object-fit: cover; }
.menu-item__head{ display: flex; justify-content: space-between; gap: 1rem; }
.menu-item__name{ font-family: var(--ff-display); font-size: 1.1rem; color: #201509; text-transform: uppercase; }
.menu-item__price{ font-weight: 700; color: var(--copper); white-space: nowrap; }
.menu-item__desc{ font-size: .87rem; color: #4a3826; margin-top: .4rem; }
.menu-item__allergens{ font-size: .74rem; color: #6b5744; margin-top: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.menu-item--featured{ border-color: var(--copper); border-width: 2px; }

/* ---------------------------------------------------------------------
   Contact / formulieren
   --------------------------------------------------------------------- */
.contact-links{ display: flex; flex-direction: column; gap: .9rem; margin-top: 2rem; }
.contact-links a{
    color: var(--cream-dim); text-decoration: none; font-size: .95rem;
    display: inline-flex; align-items: center; gap: .6rem; transition: color .2s;
}
.contact-links a span{ color: var(--copper-bright); }
.contact-links a:hover{ color: var(--cream); }
.contact-card{
    background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px;
    padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow);
}
.form-field{ margin-bottom: 1.4rem; }
.form-field label{ display: block; font-size: .8rem; color: var(--cream-dim); margin-bottom: .5rem; letter-spacing: .02em; }
.form-field input, .form-field textarea{
    width: 100%; padding: .85rem 1rem; background: var(--ink-2); border: 1px solid var(--line-strong);
    border-radius: 8px; color: var(--cream); font-family: inherit; font-size: .95rem;
}
.form-field textarea{ min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus{ outline: none; border-color: var(--teal-bright); }
.alert{ padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 2rem; font-size: .9rem; }
.alert-success{ background: rgba(132,176,179,.15); border: 1px solid rgba(132,176,179,.4); color: #c9e3e4; }
.alert-error{ background: rgba(200,60,50,.15); border: 1px solid rgba(200,60,50,.4); color: #f3c9c4; }

/* ---------------------------------------------------------------------
   CTA band + footer
   --------------------------------------------------------------------- */
.cta-band{
    margin: 0 clamp(1.25rem,4vw,3rem); padding: clamp(3rem,7vw,5rem) clamp(2rem,6vw,4rem);
    border-radius: 14px; background: linear-gradient(135deg, var(--ink-3), var(--copper) 160%);
    display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between;
    border: 1px solid var(--line);
}
.cta-band__title{ font-size: clamp(1.8rem,3.4vw,2.6rem); max-width: 20ch; }

.site-footer{ padding: 5rem 0 2.5rem; margin-top: 6rem; border-top: 1px solid var(--line); }
.footer-grid{ display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 3rem; }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-brand{ font-family: var(--ff-display); font-size: 1.6rem; color: var(--cream); text-transform: uppercase; }
.footer-tag{ color: var(--cream-dim); font-size: .9rem; margin-top: 1rem; max-width: 28ch; }
.footer-col h4{ font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a{ text-decoration: none; color: var(--cream-dim); font-size: .92rem; }
.footer-col a:hover{ color: var(--teal-bright); }
.footer-bottom{ margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: .78rem; }

/* ---------------------------------------------------------------------
   Cookiemelding — puur informatief (zie /cookiebeleid), verschijnt onderin
   tot bevestigd; onzichtbaar (translateY + pointer-events:none) i.p.v.
   display:none zodat 'm inschuiven kan animeren.
   --------------------------------------------------------------------- */
.cookie-banner{
    position: fixed; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 300;
    max-width: 46rem; margin: 0 auto;
    display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
    background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: 14px;
    padding: 1.1rem 1.4rem; box-shadow: var(--shadow);
    transform: translateY(120%); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cookie-banner.is-visible{ transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner p{ margin: 0; flex: 1 1 20rem; color: var(--cream-dim); font-size: .88rem; line-height: 1.5; }
.cookie-banner p a{ color: var(--teal-bright); }
.cookie-banner .btn{ flex-shrink: 0; }
@media (max-width: 640px){
    .cookie-banner{ flex-direction: column; align-items: stretch; text-align: center; }
}

/* ---------------------------------------------------------------------
   Reveal-on-scroll utility (JS toggles .is-visible)
   --------------------------------------------------------------------- */
/* Fail-safe: standaard gewoon zichtbaar. Alleen wanneer site.js écht is
   gestart (en de "js-ready"-klasse op <html> heeft gezet) krijgen deze
   elementen hun verborgen startstaat + fade-in-animatie. Zo blijft alle
   inhoud gewoon leesbaar als een script om wat voor reden dan ook niet
   (op tijd) laadt — i.p.v. dat de hele pagina "leeg" oogt. */
[data-reveal]{ opacity: 1; transform: none; }
.js-ready [data-reveal]{ opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-ready [data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: .1s; }
[data-reveal-delay="2"]{ transition-delay: .2s; }
[data-reveal-delay="3"]{ transition-delay: .3s; }

@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal]{ opacity: 1; transform: none; }
}
