/* =======================================================================
   LEFRA PRODUKSIES — 2026 theatrical rebuild
   Palette: theatre-dark ink · deep velvet · brand crimson · marquee gold · playbill cream
   Type: Fraunces (display) · Hanken Grotesk (body) · Space Mono (ticket/credits)
   ======================================================================= */

:root {
    --ink:        #140a0c;   /* warm theatre black          */
    --ink-2:      #1d1013;   /* raised surface              */
    --ink-3:      #271518;   /* card surface                */
    --velvet:     #5c0d16;   /* deep curtain burgundy       */
    --velvet-lo:  #3a0910;
    --crimson:    #e11f2b;   /* Lefra brand red             */
    --crimson-hi: #ff3a45;
    --gold:       #e3b872;   /* champagne / marquee         */
    --gold-hi:    #f2d29a;
    --cream:      #f5ecdd;   /* playbill paper              */
    --ash:        #b7a59b;   /* muted warm grey text        */
    --ash-dim:    #8a7a72;
    --line:       rgba(245,236,221,.12);
    --line-2:     rgba(245,236,221,.07);

    --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
    --ff-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
    --ff-mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

    --wrap: 1460px;
    --gutter: clamp(1.25rem, 4vw, 3.25rem);
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 24px 60px -24px rgba(0,0,0,.7);
    --ease: cubic-bezier(.22,.61,.36,1);
    --header-h: 84px;
}

/* ----------------------------- Reset-ish ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    font-family: var(--ff-body);
    color: var(--cream);
    background: var(--ink);
    line-height: 1.65;
    font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }

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

.skip-link {
    position: fixed; top: -60px; left: 12px; z-index: 200;
    background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: 8px;
    font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------- Utilities ------------------------------- */
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.eyebrow {
    font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .32em;
    text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .7; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 {
    font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem); margin-top: 1rem; color: var(--cream);
}
.section-head p { color: var(--ash); margin: 1.1rem 0 0; font-size: 1.08rem; }
.text-accent { color: var(--gold); font-style: italic; }
.text-crimson { color: var(--crimson); }

/* ----------------------------- Buttons --------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .6rem; justify-content: center;
    padding: .85rem 1.5rem; border-radius: 100px; font-weight: 700; font-size: .92rem;
    letter-spacing: .01em; border: 1px solid transparent; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
    white-space: nowrap;
}
.btn .ico { width: 1.15rem; height: 1.15rem; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--crimson); color: #fff; box-shadow: 0 12px 30px -12px rgba(225,31,43,.7); }
.btn-primary:hover { background: var(--crimson-hi); }
.btn-ticket { background: var(--gold); color: var(--ink); }
.btn-ticket:hover { background: var(--gold-hi); }
.btn-ghost { border-color: var(--line); color: var(--cream); background: rgba(245,236,221,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .5rem; color: var(--gold);
    font-weight: 600; font-size: .95rem;
}
.link-arrow svg { width: 1.05rem; height: 1.05rem; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =======================================================================
   HEADER
   ======================================================================= */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
    display: flex; align-items: center;
    background: color-mix(in srgb, var(--ink) 82%, transparent);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-2);
    transition: background .35s, border-color .35s, height .35s;
}
.site-header[data-transparent="1"]:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(10,5,6,.55), transparent);
    border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.scrolled { height: 70px; background: color-mix(in srgb, var(--ink) 92%, transparent); }
.header-inner {
    width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto;
    display: flex; align-items: center; gap: 1.5rem; justify-content: space-between;
}
.brand {
    display: inline-flex; align-items: center; background: var(--cream);
    padding: .4rem .7rem; border-radius: 12px;
    box-shadow: 0 4px 14px -6px rgba(0,0,0,.5); transition: padding .35s;
}
.brand img { height: 44px; width: auto; transition: height .35s; }
.site-header.scrolled .brand { padding: .35rem .6rem; }
.site-header.scrolled .brand img { height: 38px; }

.primary-nav { margin-left: auto; }
.menu { list-style: none; display: flex; gap: .35rem; margin: 0; padding: 0; }
.menu-link {
    display: inline-flex; align-items: center; gap: .25rem; padding: .6rem .85rem;
    font-size: .93rem; font-weight: 600; color: var(--cream); border-radius: 8px;
    position: relative; transition: color .2s;
}
.menu-link .chev { width: .85rem; height: .85rem; opacity: .6; transition: transform .3s; }
.menu-link:hover, .menu-link.is-current { color: var(--gold); }
.menu-link.is-current::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .3rem; height: 2px;
    background: var(--crimson); border-radius: 2px;
}
.has-children:hover .menu-link .chev { transform: rotate(180deg); }

.submenu {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
    background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px;
    padding: .5rem; list-style: none; margin: 0; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.menu-item { position: relative; }
.has-children:hover .submenu,
.has-children:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
    display: block; padding: .6rem .8rem; border-radius: 9px; font-size: .9rem; font-weight: 500; color: var(--ash);
    transition: background .18s, color .18s;
}
.submenu a:hover { background: rgba(227,184,114,.1); color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
    display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
    background: rgba(245,236,221,.03); color: var(--cream); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle .ico-close { display: none; }

/* Mobile nav */
.mobile-nav {
    position: fixed; top: 0; right: 0; z-index: 99; height: 100dvh; width: min(420px, 88vw);
    background: var(--ink-2); border-left: 1px solid var(--line);
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > nav > ul > li { border-bottom: 1px solid var(--line-2); }
.mobile-nav a, .m-parent {
    display: flex; justify-content: space-between; align-items: center; width: 100%;
    padding: 1rem .25rem; font-size: 1.05rem; font-weight: 600; color: var(--cream);
    background: none; border: none; text-align: left; font-family: var(--ff-display);
}
.m-parent .chev { width: 1.1rem; height: 1.1rem; transition: transform .3s; }
.m-parent[aria-expanded="true"] .chev { transform: rotate(180deg); }
.m-submenu { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.m-submenu.open { max-height: 420px; }
.m-submenu a { padding: .7rem .25rem .7rem 1rem; font-size: .95rem; font-weight: 500; color: var(--ash); font-family: var(--ff-body); }
.mobile-nav .btn { margin-top: 1.5rem; }
.nav-scrim { position: fixed; inset: 0; z-index: 98; background: rgba(5,2,3,.6); backdrop-filter: blur(2px); }
body.nav-open { overflow: hidden; }

/* =======================================================================
   HERO
   ======================================================================= */
.hero {
    position: relative; min-height: 100svh; display: flex; align-items: center;
    padding: calc(var(--header-h) + 3rem) 0 4rem; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.6s var(--ease), transform 8s linear;
    transform: scale(1.08);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(120% 90% at 15% 20%, rgba(20,10,12,.35), transparent 60%),
        linear-gradient(to right, rgba(10,5,6,.94) 0%, rgba(10,5,6,.7) 42%, rgba(10,5,6,.35) 100%),
        linear-gradient(to top, var(--ink) 2%, rgba(20,10,12,.2) 55%);
}
/* marquee light strip */
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
    background: repeating-linear-gradient(to right, var(--gold) 0 10px, transparent 10px 22px);
    opacity: .5;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-kicker {
    font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: .8rem;
}
.hero-kicker span { width: 40px; height: 1px; background: var(--gold); opacity: .6; }
.hero h1 {
    font-size: clamp(3rem, 1.8rem + 8vw, 7rem); font-weight: 600; line-height: .96;
    letter-spacing: -.02em; margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold); }
.hero-brandline { display: block; color: var(--crimson); }
.hero p.lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); color: #e7dccd; max-width: 54ch; margin: 0 0 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-meta {
    margin-top: 2.6rem; display: flex; gap: 2.2rem; flex-wrap: wrap;
    font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .1em; color: var(--ash);
    border-top: 1px solid var(--line); padding-top: 1.5rem;
}
.hero-meta b { display: block; font-family: var(--ff-display); font-size: 1.9rem; color: var(--gold); font-weight: 600; letter-spacing: 0; }
.scroll-cue {
    position: absolute; bottom: 1.6rem; right: var(--gutter); left: auto; z-index: 3;
    font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--ash); display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* =======================================================================
   PROMO BANDS (LTickets / Nuusbrief)
   ======================================================================= */
.bands { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 1.5rem; }
.band {
    position: relative; overflow: hidden; border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--line); display: flex; flex-direction: column; gap: 1rem; min-height: 260px;
    justify-content: center; isolation: isolate;
}
.band-ltickets { background: linear-gradient(135deg, var(--velvet), var(--velvet-lo)); }
.band-club { background: linear-gradient(135deg, #43300f, var(--ink-3)); }
.band-news { background: linear-gradient(135deg, #241318, var(--ink-3)); }
.band::after {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .16; background-size: cover; background-position: center;
}
.band-ltickets::after { background-image: url("/media/01/LTickets.jpg"); }
.band-club::after { background-image: url("/media/01/CTA-BG.jpg"); }
.band-news::after { background-image: url("/media/01/sluit_aan_by_ons_nuusbrief_kleiner.png"); }
.band h3 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); color: var(--cream); }
.band p { color: #e7dccd; margin: 0; max-width: 40ch; }
.band .btn { align-self: flex-start; margin-top: .5rem; }
.newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .4rem; }
.newsletter-form input {
    flex: 1 1 200px; padding: .85rem 1.1rem; border-radius: 100px; border: 1px solid var(--line);
    background: rgba(0,0,0,.3); color: var(--cream); font-family: inherit; font-size: .95rem;
}
.newsletter-form input::placeholder { color: var(--ash-dim); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* =======================================================================
   PLAYBILL CARDS (productions grid)
   ======================================================================= */
.plays-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.25rem, 2.4vw, 2rem);
}
.play-card {
    position: relative; background: var(--ink-3); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.play-card:hover { transform: translateY(-6px); border-color: rgba(227,184,114,.5); box-shadow: var(--shadow); }
.play-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.play-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; filter: saturate(.95); }
.play-card:hover .play-media img { transform: scale(1.06); filter: saturate(1.1); }
/* spotlight sweep on hover */
.play-media::after {
    content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
    background: radial-gradient(60% 80% at 50% 0%, rgba(227,184,114,.28), transparent 70%);
    mix-blend-mode: screen;
}
.play-card:hover .play-media::after { opacity: 1; }
.play-media::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(20,10,12,.9) 4%, transparent 45%);
}
.play-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.play-tag {
    font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); align-self: flex-start;
}
.play-card h3 { font-size: 1.4rem; color: var(--cream); line-height: 1.1; }
.play-card p { color: var(--ash); font-size: .95rem; line-height: 1.6; margin: 0; }
.play-card .link-arrow { margin-top: auto; padding-top: .4rem; }

/* Full production entry (produksies page) */
/* Stacked banner card — every production image is a uniform ~2.63:1 banner */
.prod {
    max-width: 900px; margin-inline: auto;
    padding: clamp(2.2rem, 4vw, 3.4rem) 0; border-top: 1px solid var(--line-2);
}
.prod:first-child { border-top: none; padding-top: clamp(1rem, 2vw, 1.5rem); }
.prod-media {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
    background: var(--ink-3); margin-bottom: 1.6rem; box-shadow: var(--shadow);
}
.prod-media img { display: block; width: 100%; height: auto; aspect-ratio: 746 / 284; object-fit: cover; }
.prod-body { max-width: 74ch; }
.prod-body h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); color: var(--cream); margin-bottom: 1rem; }
.prod-body p { color: var(--ash); margin: 0 0 1.2rem; }
.prod-body .btn { margin-top: .3rem; }
.category-head { margin: clamp(2.5rem,6vw,4.5rem) 0 1rem; }
.category-head .eyebrow { margin-bottom: .8rem; }
.category-head h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); color: var(--cream); }
.category-head p { color: var(--ash); max-width: 62ch; margin: .8rem 0 0; }

/* =======================================================================
   TOUR — TICKET STUBS  (signature element)
   ======================================================================= */
.tour-list { display: grid; gap: 1rem; }
.stub {
    --notch: 16px;
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
    background: var(--cream); color: var(--ink); border-radius: 14px; padding: 1.3rem 1.6rem;
    position: relative; overflow: hidden; transition: transform .3s var(--ease);
}
.stub:hover { transform: translateY(-3px) rotate(-.3deg); }
/* perforation between date block and body */
.stub-date {
    text-align: center; padding-right: clamp(1rem, 3vw, 2.2rem); position: relative; min-width: 78px;
}
.stub-date::after {
    content: ""; position: absolute; right: 0; top: -1.3rem; bottom: -1.3rem; width: 0;
    border-right: 2px dashed rgba(20,10,12,.28);
}
.stub-date .day { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--crimson); }
.stub-date .mon { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .3rem; }
.stub-body h3 { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ink); margin-bottom: .25rem; }
.stub-body .venue { font-size: .9rem; color: #5b4a44; display: flex; align-items: center; gap: .4rem; }
.stub-body .venue svg { width: 1rem; height: 1rem; color: var(--crimson); }
.stub .btn-primary { flex-shrink: 0; }
.stub-disabled { opacity: .92; }
.stub-soon { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash-dim); }
/* edge notches — the ticket looks torn from a strip (colour matches the section behind it) */
.stub::before, .stub::after {
    content: ""; position: absolute; width: var(--notch); height: var(--notch); border-radius: 50%;
    background: var(--ink-2); top: 50%; transform: translateY(-50%);
}
.stub::before { left: calc(var(--notch) * -0.5); }
.stub::after  { right: calc(var(--notch) * -0.5); }

/* =======================================================================
   LEFRA TV
   ======================================================================= */
/* ---- The set: antennas + wood cabinet (screen | control panel) ---- */
.tvset { position: relative; max-width: 1080px; margin-inline: auto; padding-top: 58px; }

/* rabbit-ear antennas */
.tv-antenna { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 62px; z-index: 0; }
.tv-antenna .ant { position: absolute; bottom: 4px; left: 50%; width: 3px; height: 62px; border-radius: 3px; transform-origin: bottom center;
    background: linear-gradient(#d8d8d8, #7c7c7c); box-shadow: 0 0 4px rgba(0,0,0,.5); }
.tv-antenna .ant::after { content: ""; position: absolute; top: -5px; left: -3px; width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, #999); }
.tv-antenna .ant-l { transform: rotate(-34deg); }
.tv-antenna .ant-r { transform: rotate(34deg); }
.tv-antenna .ant-base { position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 44px; height: 16px; border-radius: 8px 8px 5px 5px; background: linear-gradient(#3a3a3a, #141414); box-shadow: inset 0 1px 0 rgba(255,255,255,.15); }

/* wood cabinet */
.tv-cabinet {
    position: relative; z-index: 1; border-radius: 24px; padding: clamp(16px, 2vw, 26px);
    background-color: #4a2c18;
    background-image:
        linear-gradient(158deg, rgba(255,214,168,.14), rgba(0,0,0,.34) 72%),
        repeating-linear-gradient(87deg, rgba(0,0,0,.17) 0 2px, transparent 2px 5px, rgba(255,222,182,.06) 5px 7px, transparent 7px 12px);
    border: 1px solid rgba(255,205,155,.14);
    box-shadow: 0 60px 120px -46px rgba(0,0,0,.9), inset 0 2px 0 rgba(255,220,180,.16), inset 0 -4px 10px rgba(0,0,0,.55);
}
.tv-cab-inner { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: clamp(14px, 1.8vw, 22px); }
.tv-left { display: flex; flex-direction: column; }

/* CRT screen */
.tv-screen {
    position: relative; aspect-ratio: 16 / 10; width: 100%; overflow: hidden; border-radius: 16px / 20px;
    background: #05070a var(--poster) center / cover no-repeat;
    box-shadow: inset 0 0 90px rgba(0,0,0,.95), inset 0 0 0 3px rgba(0,0,0,.6), inset 0 0 0 5px rgba(255,220,180,.06);
}
.tv-screen::before { content: ""; position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(135% 125% at 50% 45%, transparent 38%, rgba(0,0,0,.82)), linear-gradient(to top, rgba(6,4,5,.9), transparent 55%); }
.tv-scanlines { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .16; mix-blend-mode: overlay;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,.55) 0 1px, transparent 1px 3px); }
.tv-glare { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .45;
    background: linear-gradient(125deg, rgba(255,255,255,.16), transparent 32%); }
.tv-flicker { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: rgba(255,255,255,.03); opacity: 0; animation: tvflicker 6s steps(24) infinite; }
@keyframes tvflicker { 0%,100% { opacity: .04; } 4% { opacity: .28; } 8% { opacity: .05; } 52% { opacity: .18; } 56% { opacity: .05; } }
.tv-static {
    position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0; mix-blend-mode: screen; background-size: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%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");
}
.tv-screen.tuning .tv-static { opacity: .7; animation: tvstatic .12s steps(2) infinite; }
@keyframes tvstatic { 0% { background-position: 0 0; } 50% { background-position: 60px -40px; } 100% { background-position: -30px 26px; } }

/* ON AIR + play */
.tv-badge { position: absolute; top: 1rem; right: 1.1rem; z-index: 4;
    font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .22em; color: #fff;
    background: rgba(225,31,43,.92); padding: .3rem .65rem; border-radius: 100px; display: inline-flex; align-items: center; gap: .45rem; }
.tv-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: onair 1.6s ease-in-out infinite; }
@keyframes onair { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
.tv-play {
    position: absolute; inset: 0; margin: auto; z-index: 4; width: 84px; height: 84px; border-radius: 50%;
    background: rgba(225,31,43,.94); border: none; color: #fff; display: grid; place-items: center; cursor: pointer;
    box-shadow: 0 14px 44px -8px rgba(225,31,43,.8); transition: transform .3s var(--ease), background .3s, opacity .3s;
}
.tv-play svg { width: 2rem; height: 2rem; margin-left: 5px; }
.tv-play:hover { transform: scale(1.08); background: var(--crimson-hi); }

/* tuning overlay (suspense) */
.tv-tune { position: absolute; inset: 0; z-index: 6; display: none; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; }
.tv-screen.tuning .tv-tune { display: flex; }
.tv-screen.tuning .tv-play, .tv-screen.tuning .tv-badge, .tv-screen.tuning .tv-lower3 { opacity: 0; }
.tv-tune-num { font-family: var(--ff-mono); font-weight: 700; font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); color: #fff;
    text-shadow: 3px 0 rgba(255,0,60,.9), -3px 0 rgba(0,200,255,.9); animation: tvroll .2s linear infinite; }
.tv-tune-label { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .35em; color: var(--gold); }
@keyframes tvroll { 0% { transform: translateY(-2px); } 50% { transform: translateY(2px); } 100% { transform: translateY(-2px); } }

/* now-playing lower third (the reveal) */
.tv-lower3 { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 8; display: flex; align-items: center; gap: .7rem;
    transform: translateY(150%); opacity: 0; transition: transform .5s var(--ease), opacity .4s; }
.tv-screen.nowplaying .tv-lower3 { transform: translateY(0); opacity: 1; }
.l3-ch { flex: none; font-family: var(--ff-mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em; color: #fff;
    background: var(--crimson); padding: .35rem .6rem; border-radius: 6px; }
.l3-title { font-size: .82rem; color: #fff; background: rgba(6,4,5,.82); backdrop-filter: blur(4px); padding: .45rem .8rem; border-radius: 6px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* iframe + power states */
.tv-iframe { position: absolute; inset: 0; z-index: 7; width: 100%; height: 100%; border: 0; }
.tv-screen.playing .tv-badge, .tv-screen.playing .tv-play, .tv-screen.playing .tv-glare { display: none; }
.tv-screen.turnon { animation: crton .55s ease-out; }
@keyframes crton { 0% { clip-path: inset(49.5% 0 49.5% 0); filter: brightness(4) saturate(0); } 55% { clip-path: inset(0 0 0 0); filter: brightness(1.7); } 100% { filter: brightness(1); } }
.tv-standby { position: absolute; inset: 0; z-index: 9; display: none; place-items: center; background: #030304; }
.tv-standby span { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .3em; color: rgba(227,184,114,.5); }
.tv-screen.off { background: #030304; }
.tv-screen.off > *:not(.tv-standby) { display: none !important; }
.tv-screen.off .tv-standby { display: grid; }

/* speaker grille under the screen */
.tv-grille { height: 40px; margin-top: 12px; border-radius: 8px; border: 1px solid rgba(0,0,0,.5);
    background: radial-gradient(circle, rgba(0,0,0,.55) 1px, transparent 1.7px) 0 0 / 8px 8px, linear-gradient(#2a160c, #180c05);
    box-shadow: inset 0 2px 5px rgba(0,0,0,.7); }

/* ---- Control panel ---- */
.tv-panel { display: flex; flex-direction: column; gap: 1rem; padding: clamp(.9rem, 1.4vw, 1.3rem);
    border-radius: 16px; background: linear-gradient(165deg, #2a1c12, #180f09); border: 1px solid rgba(255,205,155,.12);
    box-shadow: inset 0 1px 0 rgba(255,220,180,.12), inset 0 -3px 8px rgba(0,0,0,.5); }
.tv-plate { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; letter-spacing: .02em; color: var(--cream); text-align: center;
    padding-bottom: .7rem; border-bottom: 1px solid rgba(255,205,155,.14); }
.tv-plate span { color: var(--gold); }
.tv-led { background: #0a0605; border-radius: 10px; padding: .4rem 0; text-align: center;
    border: 1px solid rgba(0,0,0,.6); box-shadow: inset 0 0 16px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,255,255,.03); }
.tv-led span { font-family: var(--ff-mono); font-weight: 700; font-size: 2rem; letter-spacing: .12em;
    color: #ff5233; text-shadow: 0 0 10px rgba(255,60,40,.9), 0 0 26px rgba(255,60,40,.5); transition: color .3s, text-shadow .3s; }
.tvset.powered-off .tv-led span { color: #2a1210; text-shadow: none; }

/* surf row: CH- / SURF / CH+ */
.tv-surf { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: .5rem; }
.tv-updown, .tv-surfbtn {
    font-family: var(--ff-mono); font-weight: 700; cursor: pointer; border-radius: 10px; padding: .65rem 0;
    background: linear-gradient(#3a2a1c, #1c120a); border: 1px solid rgba(255,205,155,.1); color: var(--cream);
    box-shadow: 0 3px 0 rgba(0,0,0,.55), inset 0 1px 0 rgba(255,220,180,.1); transition: transform .1s, color .25s, box-shadow .1s;
}
.tv-updown { font-size: 1.2rem; }
.tv-surfbtn { font-size: .82rem; letter-spacing: .18em; color: var(--ink); background: linear-gradient(var(--gold-hi), var(--gold)); border-color: transparent; }
.tv-updown:active, .tv-surfbtn:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(0,0,0,.55); }
.tv-surfbtn:hover { background: linear-gradient(#fbe0b0, var(--gold-hi)); }
.tv-updown:hover { color: var(--gold); }

/* knobs */
.tv-knobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.tv-knob { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .45rem; padding: 0; }
.knob-dial { width: 48px; height: 48px; border-radius: 50%; position: relative;
    background: radial-gradient(circle at 36% 30%, #56504f, #201c1d 62%, #100e0f);
    box-shadow: inset 0 2px 3px rgba(255,255,255,.18), inset 0 -4px 8px rgba(0,0,0,.7), 0 5px 12px rgba(0,0,0,.6); transition: transform .35s var(--ease); }
.knob-dial::after { content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 13px; border-radius: 2px; background: var(--gold); box-shadow: 0 0 6px rgba(227,184,114,.7); }
.tv-knob:hover .knob-dial { box-shadow: inset 0 2px 3px rgba(255,255,255,.22), inset 0 -4px 8px rgba(0,0,0,.7), 0 6px 16px rgba(0,0,0,.7); }
.knob-cap { font-family: var(--ff-mono); font-size: .54rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ash-dim); }
.tv-knob-power .power-led { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 9px; height: 9px; border-radius: 50%;
    background: #3a1414; transition: background .3s, box-shadow .3s; }
.tv-knob-power.on .power-led { background: #ff3a2e; box-shadow: 0 0 10px rgba(255,60,40,.9); }
.tv-knob-power .knob-dial::after { display: none; }
.tv-hint { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .06em; color: var(--ash-dim); text-align: center; margin: 0; }

@media (max-width: 780px) {
    .tv-cab-inner { grid-template-columns: 1fr; }
    .tv-panel { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "plate led" "surf surf" "knobs knobs" "hint hint"; align-items: center; gap: .9rem 1rem; }
    .tv-plate { grid-area: plate; border: none; padding: 0; text-align: left; }
    .tv-led { grid-area: led; padding: .3rem 1rem; } .tv-surf { grid-area: surf; } .tv-knobs { grid-area: knobs; max-width: 340px; } .tv-hint { grid-area: hint; }
}

/* =======================================================================
   ARCHIVE GALLERY
   ======================================================================= */
.gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 148px; grid-auto-flow: dense; gap: 12px;
}
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; filter: grayscale(.18); }
.gallery figure:hover img { transform: scale(1.05); filter: grayscale(0); }
/* collage span variations */
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-big  { grid-column: span 2; grid-row: span 2; }
@media (max-width: 600px) {
    .gallery .g-big { grid-column: span 2; grid-row: span 2; }
    .gallery .g-wide { grid-column: span 2; }
}
.gallery figure::after {
    content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px transparent, inset 0 -60px 40px -40px rgba(225,31,43,0);
    transition: box-shadow .4s;
}
.gallery figure:hover::after { box-shadow: inset 0 0 0 1px rgba(227,184,114,.4), inset 0 -60px 40px -40px rgba(225,31,43,.5); }

/* =======================================================================
   PAGE HERO (interior pages)
   ======================================================================= */
.page-hero {
    position: relative; padding: calc(var(--header-h) + 4.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--hero-img, none);
    background-size: cover; background-position: center; opacity: .28; transform: scale(1.05);
}
.page-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, var(--ink) 8%, rgba(20,10,12,.55) 60%, rgba(20,10,12,.75));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 1.6rem + 4.5vw, 5rem); color: var(--cream); margin: 1rem 0 .6rem; }
.crumbs { font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .12em; color: var(--ash); text-transform: uppercase; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--crimson); margin: 0 .5rem; }

/* =======================================================================
   PROSE (about / profile pages)
   ======================================================================= */
.prose { max-width: 74ch; }
.prose p { margin: 0 0 1.4rem; color: #d8cabb; }
/* single drop cap — only the lead paragraph, opted in per page */
.prose.lead p:first-of-type::first-letter {
    font-family: var(--ff-display); font-size: 3.6rem; line-height: .8; float: left;
    padding: .3rem .6rem .1rem 0; color: var(--crimson); font-weight: 700;
}
.prose-figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1rem; margin: 2.5rem 0; }
.prose-figures img { border-radius: var(--radius-sm); border: 1px solid var(--line); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* Centered editorial article (Agtergrond) — narrow readable text, wider photo rows */
/* Agtergrond article — full width, left-aligned (uses the whole content area) */
.article { max-width: none; }
.article .prose { max-width: none; margin-inline: 0; }
.article .section-head { max-width: none; margin-inline: 0; text-align: left; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.value-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem; }
.value-card .n { font-family: var(--ff-mono); font-size: .8rem; color: var(--gold); letter-spacing: .1em; }
.value-card h3 { font-size: 1.15rem; margin: .5rem 0 .4rem; color: var(--cream); }
.value-card p { margin: 0; color: var(--ash); font-size: .92rem; }

.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.25rem; }
.service { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem; }
.service h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.service ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.service li { color: var(--ash); font-size: .93rem; padding-left: 1.1rem; position: relative; }
.service li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); }

.mission-visie { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.mv-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; background: linear-gradient(135deg, var(--ink-2), var(--ink-3)); }
.mv-card .eyebrow { margin-bottom: 1rem; }
.mv-card p { font-family: var(--ff-display); font-size: 1.25rem; line-height: 1.4; color: var(--cream); margin: 0; font-style: italic; }

/* Team member */
.team-member { display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.team-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.team-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(227,184,114,.2); border-radius: var(--radius); }
.team-role { font-family: var(--ff-mono); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.team-member h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); color: var(--cream); margin: .6rem 0; }
.team-contact { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-family: var(--ff-mono); font-size: .85rem; margin-bottom: 1.5rem; }

/* =======================================================================
   FORMS (contact / booking)
   ======================================================================= */
.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.8rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ash); text-transform: uppercase; }
.field label .req { color: var(--crimson); }
.field input, .field textarea, .field select {
    padding: .85rem 1rem; border-radius: 10px; border: 1px solid var(--line);
    background: rgba(0,0,0,.28); color: var(--cream); font-family: inherit; font-size: .98rem; width: 100%;
    transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ash-dim); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: rgba(0,0,0,.4); }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible,
.newsletter-form input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.field .hint { font-size: .8rem; color: var(--ash-dim); }
.form-note { font-size: .88rem; color: var(--ash); margin: 0 0 1.2rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* reCAPTCHA v3: hide the floating badge (attribution shown in-form instead) */
.grecaptcha-badge { visibility: hidden; }
.rc-note { font-size: .76rem; color: var(--ash-dim); margin: 1rem 0 0; line-height: 1.5; }
.rc-note a { color: var(--ash); text-decoration: underline; }
.rc-note a:hover { color: var(--gold); }
.form-alert { padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1.4rem; font-size: .95rem; }
.form-alert.ok { background: rgba(56,142,60,.15); border: 1px solid rgba(120,200,120,.4); color: #cdeccd; }
.form-alert.err { background: rgba(225,31,43,.12); border: 1px solid rgba(225,31,43,.4); color: #f3c7ca; }
.fieldset-title { font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 2rem 0 1rem; grid-column: 1/-1; display: flex; align-items: center; gap: .8rem; }
.fieldset-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.contact-aside { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci-ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); background: var(--ink-2); }
.contact-item .ci-ico svg { width: 1.3rem; height: 1.3rem; }
.contact-item h3 { font-size: 1rem; color: var(--cream); margin-bottom: .2rem; }
.contact-item a, .contact-item p { color: var(--ash); font-size: .95rem; margin: 0; }
.contact-item a:hover { color: var(--gold); }

/* =======================================================================
   PARTNERS MARQUEE (home)
   ======================================================================= */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 48px; width: auto; opacity: .9; transition: opacity .3s, transform .3s; margin: 0 2rem; flex: none; }
.marquee-track img:hover { opacity: 1; transform: scale(1.06); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =======================================================================
   FOOTER
   ======================================================================= */
.site-footer { position: relative; background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(3rem,6vw,5rem) 0 2rem; margin-top: 2rem; }
.site-footer > * { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.footer-quill { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.footer-quill svg { width: 1.7rem; height: 1.7rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-2); }
.footer-brand img { height: 54px; width: auto; margin-bottom: 1.2rem; background: var(--cream); padding: .5rem .75rem; border-radius: 12px; box-sizing: content-box; }
.footer-lead { color: var(--ash); font-size: .95rem; max-width: 34ch; margin: 0 0 1.4rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ash); transition: color .25s, border-color .25s, transform .25s; }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-socials svg { width: 1.2rem; height: 1.2rem; }
.footer-col h4 { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-col a { color: var(--ash); font-size: .93rem; transition: color .2s; display: inline-flex; align-items: center; gap: .5rem; }
.footer-col a:hover { color: var(--cream); }
.ico-sm { width: 1rem; height: 1rem; color: var(--crimson); flex-shrink: 0; }
.footer-partners { padding: 2rem 0; border-bottom: 1px solid var(--line-2); text-align: center; }
.partners-label { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--ash-dim); }
.partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.4rem; margin-top: 1.4rem; }
.partners-row img { height: 42px; width: auto; opacity: .85; transition: opacity .3s; }
.partners-row img:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.6rem; font-size: .8rem; color: var(--ash-dim); }
.footer-est { font-family: var(--ff-mono); letter-spacing: .1em; }

/* To-top */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60; width: 48px; height: 48px; border-radius: 50%; background: var(--crimson); color: #fff; border: none; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s var(--ease); box-shadow: 0 10px 24px -8px rgba(225,31,43,.7); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 1.3rem; height: 1.3rem; transform: rotate(180deg); }

/* =======================================================================
   SCROLL REVEAL
   ======================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-slide { transition: opacity .4s; transform: none; }
    .marquee-track, .scroll-cue span { animation: none; }
}

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 1080px) {
    .primary-nav { display: none; }
    .nav-toggle { display: flex; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
    .bands { grid-template-columns: 1fr; }
    .split, .team-member, .mission-visie { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .stub { grid-template-columns: auto 1fr; }
    .stub .btn-primary { grid-column: 1 / -1; margin-top: .4rem; }
}
@media (max-width: 560px) {
    :root { --header-h: 72px; }
    .header-actions .btn-ticket span { display: none; }
    .header-actions .btn-ticket { padding: .7rem; }
    .hero-meta { gap: 1.4rem; }
    .gallery { columns: 2 130px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: flex-start; }
    .hero::after { display: none; }
}
