/* ============================================
   Strator — Obsidiaan & Platina Theme
   Kleuren: #E4E6EB (platina accent), #0A0A0C (obsidiaan bg)
   Fonts: Bebas Neue (display), Barlow Condensed (headings), Barlow (body)
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary:       #1554FF;
    --color-primary-hover:  #4D7DFF;
    --color-primary-rgb:    21,84,255;
    --color-bg:            #040505;
    --color-bg-elevated:   #0B0D12;
    --color-bg-section:    #080A0F;
    --color-surface:       #14181F;
    --color-border:        rgba(255, 255, 255, 0.07);
    --color-border-light:  rgba(255, 255, 255, 0.14);
    --color-text:          #F0F0F2;
    --color-text-muted:    #7A7C82;
    --color-text-dim:      #4A4C52;
    --color-white:         #ffffff;
    --color-black:         #040505;
    --color-success:       #22c55e;
    --color-error:         #ef4444;
    --color-footer:        #020303;
    --color-iveco-blue:    #1554FF;

    /* Strator brand palet (2026 redesign — premium automotive) */
    --color-bg-deep:       #030303;
    --color-ink:           #070707;
    --color-charcoal:      #0B0B0B;
    --color-panel:         #10100E;
    --color-panel-soft:    #15130F;
    --color-text-primary:   #F4F0E8;
    --color-text-secondary: #B8B0A2;
    --color-text-muted-warm: #7D766B;
    --color-text-cream:    #F4F0E8;
    --color-text-warm:     #B8B0A2;
    --color-gold:          #C8943A;
    --color-gold-light:    #E2B75C;
    --color-gold-dark:     #6E4B18;
    --color-gold-soft:     rgba(200, 148, 58, 0.22);
    --color-border-gold:   rgba(226, 183, 92, 0.22);
    --color-line-subtle:   rgba(255, 255, 255, 0.08);
    --color-line-soft:     rgba(255, 255, 255, 0.12);
    --gradient-black-fade: linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,0.9) 38%, rgba(3,3,3,0.45) 68%, rgba(3,3,3,0.95) 100%);
    --gradient-gold:       linear-gradient(135deg, #6E4B18 0%, #C8943A 35%, #E2B75C 55%, #8A5F22 100%);
    --font-serif:          'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans:           'Inter', 'Manrope', system-ui, sans-serif;

    --font-heading:        'Barlow Condensed', system-ui, sans-serif;
    --font-body:           'Barlow', system-ui, sans-serif;
    --font-accent:         'Bebas Neue', system-ui, sans-serif;
    --container-max:       1200px;
    --section-padding:     100px 0;
    --border-radius:       16px;
    --transition:          all 0.3s ease;
    --transition-fast:     all 0.15s ease;
    --shadow:              0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg:           0 12px 48px rgba(0, 0, 0, 0.5);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    opacity: 1 !important;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-primary-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* --- Utility --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.text-accent { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.bg-elevated { background: var(--color-bg-elevated); }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
.font-accent { font-family: var(--font-accent); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary);
}
h1 { font-size: clamp(2.5rem, 6vw + 1rem, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw + 0.75rem, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
.section__intro {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1;
}
.btn--primary {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
}
.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
}
.btn--ghost {
    background: transparent;
    color: var(--color-primary);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.btn--ghost:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.btn--full { width: 100%; }
.btn--large { padding: 1.125rem 2.5rem; font-size: 1rem; }
.btn--small { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-icon { padding: 0.5rem; color: var(--color-text-muted); transition: var(--transition-fast); }
.btn-icon:hover { color: var(--color-error); }

/* Hero: outline knop WIT op donkere hero overlay */
.hero .btn--outline {
    color: var(--color-white);
    border-color: var(--color-white);
}
.hero .btn--outline:hover {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
/* CTA-sectie: outline in gold */
.section--cta .btn--outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.section--cta .btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--color-border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.header__logo img { height: 44px; width: auto; }
.header__logo--text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}
.header__logo-brand {
    font-family: 'Open Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--color-iveco-blue);
    margin-bottom: 2px;
}
.header__logo-text {
    font-family: 'Open Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    color: var(--color-iveco-blue);
    line-height: 1;
}
.header__logo--text:hover .header__logo-text,
.header__logo--text:hover .header__logo-brand { opacity: 0.85; }
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__cart { position: relative; font-size: 1.25rem; color: var(--color-text); padding: 0.5rem; }
.header__cart:hover { color: var(--color-primary); }
.header__cart-count {
    position: absolute;
    top: 0;
    right: -4px;
    background: var(--color-primary);
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Language Switcher --- */
.lang-switcher { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; }
.lang-switcher__link {
    color: var(--color-text-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-decoration: none;
}
.lang-switcher__link--active { color: var(--color-primary); }
.lang-switcher__link:hover { color: var(--color-text); }
.lang-switcher__divider { color: var(--color-border); }

/* --- Navigation --- */
.nav__list { display: flex; gap: 0.25rem; }
.nav__link {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--color-text);
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
}
.nav__link:hover,
.nav__link--active {
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
}

/* --- Hamburger --- */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 0.5rem 0; }
.hamburger__line { width: 100%; height: 2.5px; background: var(--color-text); border-radius: 2px; transition: var(--transition); }
.hamburger.is-active .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}
.hero--personal { background-position: center top; }
.hero--small { min-height: 50vh; }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}
.hero__content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.hero__title {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.hero__title-accent { color: var(--color-primary); }
.hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}
.hero__tagline {
    font-family: var(--font-accent);
    color: var(--color-primary);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* --- Page Hero (subpages) --- */
.page-hero {
    position: relative;
    min-height: 50vh;
    min-height: max(50vh, 400px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
}
.page-hero__content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.page-hero__title { color: var(--color-white); }
.page-hero__subtitle { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; margin-top: 0.75rem; }

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}
.scroll-indicator__arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator__arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* --- Sections --- */
.section { padding: var(--section-padding); }
.section--dark { background: var(--color-bg); }
.section--elevated { background: var(--color-bg-elevated); }
.section--welcome { background: var(--color-bg-section); }
.section--cta { background: var(--color-bg-elevated); padding: 80px 0; }
.section--testimonials { background: var(--color-bg); }
.section--brands { background: var(--color-bg-section); padding: 60px 0; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* --- Grain Texture --- */
.grain { position: relative; }
.grain::after,
.section--grain::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    z-index: 0;
}
.section--grain { position: relative; }

/* Header transparant op homepage tot je scrollt */
body[data-page="home"] .header:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ============================================
   Homepage — Cinema Components
   Ferrari-geïnspireerd: full-bleed, pinned scroll, animated counters
   ============================================ */

/* --- Hero cinema (full-viewport) --- */
.hero--cinema {
    min-height: 100vh;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
    background: var(--color-bg);
    text-align: left;
}
.hero--cinema .hero__content {
    text-align: left;
    max-width: 1200px;
    padding: 0 1.25rem;
    margin-left: auto;
    margin-right: auto;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroKenBurns 18s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
    from { transform: scale(1.08) translate(0, 0); }
    to   { transform: scale(1.18) translate(-2%, -1%); }
}
.hero__overlay--cinema {
    background:
        linear-gradient(180deg, rgba(10, 10, 12, 0.25) 0%, rgba(10, 10, 12, 0.35) 40%, rgba(10, 10, 12, 0.85) 100%),
        linear-gradient(90deg, rgba(10, 10, 12, 0.55) 0%, rgba(10, 10, 12, 0) 60%);
}
.hero__title--cinema {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 8vw + 0.5rem, 7.5rem);
    letter-spacing: 0.01em;
    line-height: 0.95;
    margin: 0 0 1.25rem;
    color: var(--color-white);
    overflow: hidden;
}
.hero__title--cinema .letter {
    display: inline-block;
    will-change: transform, opacity;
}
.hero__subtitle--cinema {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.35rem);
    max-width: 600px;
    margin: 0 0 2rem;
    color: rgba(240, 240, 242, 0.82);
}
.hero--cinema .hero__actions {
    justify-content: flex-start;
    margin-top: 0;
}

/* --- Discover sectie (scroll-reveal woorden) --- */
.discover-section {
    padding: 160px 0;
    background: var(--color-bg);
}
.discover-section__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.discover-section__headline {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw + 0.5rem, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
    color: var(--color-white);
    margin-bottom: 2rem;
    max-width: 1000px;
}
.discover-section__headline [data-word] {
    display: inline-block;
    margin-right: 0.25em;
    transition: opacity 0.3s ease;
}
.discover-section__body {
    font-size: clamp(1rem, 0.8vw + 0.75rem, 1.2rem);
    color: var(--color-text-muted);
    max-width: 720px;
    line-height: 1.7;
}

/* --- Pin-showcase (sticky cinema) --- */
.pin-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
.pin-showcase__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pin-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.05);
}
.pin-showcase__beats {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10vh;
}
.pin-showcase__beat {
    position: absolute;
    bottom: 10vh;
    left: 1.25rem;
    right: 1.25rem;
    max-width: 600px;
    opacity: 1;
}
.pin-showcase__beat:not(.is-active) {
    opacity: 0;
}
.pin-showcase__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}
.pin-showcase__title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw + 0.5rem, 4rem);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1rem;
}
.pin-showcase__text {
    font-size: 1.1rem;
    color: rgba(240, 240, 242, 0.85);
    max-width: 500px;
    line-height: 1.6;
}

/* --- Spec sectie (met counters) --- */
.spec-section {
    background: var(--color-bg-elevated);
    padding: 140px 0;
}
.spec-section__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: start;
}
.spec-section__intro { position: sticky; top: 120px; }
.spec-section__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.spec-section__title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
.spec-section__lead {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.spec-section__numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}
.spec-counter {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border-light);
}
.spec-counter__value {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 6vw + 0.5rem, 6.5rem);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-feature-settings: 'tnum' 1;
}
.spec-counter__label {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* --- Craftmanship split --- */
.craft-section { padding: 140px 0; background: var(--color-bg); }
.craft-section__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}
.craft-section__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4 / 5;
}
.craft-section__media img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}
.craft-section__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.craft-section__title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
.craft-section__text {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* --- Heritage section (Made in Holland / CFG → IVECO Schouten) --- */
.heritage-section {
    padding: 120px 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}
.heritage-section__grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
    align-items: center;
}
.heritage-section__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-iveco-blue);
    margin-bottom: 1rem;
}
.heritage-section__title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.heritage-section__lead {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.heritage-section__facts {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.heritage-section__facts div {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--color-iveco-blue);
    padding-left: 1rem;
}
.heritage-section__facts strong {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--color-white);
    line-height: 1;
}
.heritage-section__facts span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}
.heritage-section__quote {
    border-left: 3px solid var(--color-primary);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 0;
    font-family: var(--font-accent);
    font-size: clamp(1.35rem, 1.5vw + 0.5rem, 1.75rem);
    line-height: 1.3;
    color: var(--color-white);
}
.heritage-section__quote p { margin: 0 0 1rem; font-style: italic; font-weight: 300; }
.heritage-section__quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--color-text-muted);
}

/* --- Configurator placeholder --- */
.configurator-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}
.configurator-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.configurator-hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: grayscale(0.2);
}
.configurator-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,12,0.45) 0%, rgba(10,10,12,0.92) 100%);
    z-index: 0;
}
.configurator-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.configurator-hero__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-iveco-blue);
    margin-bottom: 1rem;
}
.configurator-hero__title {
    font-family: var(--font-accent);
    font-size: clamp(2.25rem, 5vw + 0.5rem, 4.5rem);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
.configurator-hero__lead {
    color: rgba(240,240,242,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.configurator-waitlist {
    background: rgba(34,36,40,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}
.configurator-waitlist__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.configurator-waitlist__row:last-of-type { margin-bottom: 0; }
.configurator-waitlist__input {
    width: 100%;
    background: rgba(10,10,12,0.6);
    border: 1px solid var(--color-border-light);
    color: var(--color-text);
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.configurator-waitlist__input:focus {
    outline: none;
    border-color: var(--color-iveco-blue);
}
.configurator-waitlist__row .btn { white-space: nowrap; }
.configurator-waitlist__legal {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 0.75rem;
}
.configurator-waitlist__legal a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }

/* Configurator teaser-grid */
.configurator-teasers { padding: 100px 0; background: var(--color-bg); }
.configurator-teasers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}
.configurator-teaser {
    padding: 2rem 1.75rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    transition: transform 300ms ease, border-color 300ms ease;
}
.configurator-teaser:hover { transform: translateY(-4px); border-color: var(--color-iveco-blue); }
.configurator-teaser__icon {
    font-size: 1.8rem;
    color: var(--color-iveco-blue);
    margin-bottom: 1rem;
}
.configurator-teaser h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.configurator-teaser p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .configurator-waitlist__row { grid-template-columns: 1fr; }
}

/* --- Owners (social proof kaarten) --- */
.owners-section { padding: 120px 0; background: var(--color-bg); }
.owners-section__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-iveco-blue);
    margin-bottom: 1rem;
    text-align: center;
}
.owners-section__title {
    font-family: var(--font-accent);
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
}
.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.owner-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    position: relative;
    transition: transform 300ms ease, border-color 300ms ease;
}
.owner-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-iveco-blue);
}
.owner-card__quote {
    color: var(--color-iveco-blue);
    font-size: 1.8rem;
    opacity: 0.35;
    margin-bottom: 0.75rem;
}
.owner-card__text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.owner-card__author {
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-transform: uppercase;
    border-top: 1px solid var(--color-border-light);
    padding-top: 1rem;
}

/* --- CTA uitbreidingen --- */
.cta-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-iveco-blue);
    margin-bottom: 0.75rem;
}
.cta-actions--stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
}
.cta-actions--stack .btn { width: 100%; justify-content: center; }
.cta-actions--stack .btn--ghost {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* --- Responsive cinema --- */
@media (max-width: 900px) {
    .pin-showcase { height: auto; min-height: 90vh; }
    .spec-section__grid,
    .craft-section__grid,
    .heritage-section__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .spec-section__intro { position: static; }
    .spec-section__numbers { grid-template-columns: 1fr 1fr; }
    .heritage-section__facts { gap: 1.5rem; }
    .hero--cinema .hero__actions { justify-content: center; }
    .hero--cinema .hero__content { text-align: center; }
    .hero__overlay--cinema {
        background: linear-gradient(180deg, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.9) 100%);
    }
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 1.25rem;
}
.bento-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-2px);
}
.bento-card--wide   { grid-column: span 8; }
.bento-card--narrow { grid-column: span 4; }
.bento-card--half   { grid-column: span 6; }
.bento-card--full   { grid-column: span 12; }
.bento-card__icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    display: block;
}
.bento-card h3 { color: var(--color-primary); }
.bento-card p { color: var(--color-text-muted); margin-bottom: 0; }

/* --- USPs (legacy grid) --- */
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.usp:hover { border-color: var(--color-border-light); }
.usp i { font-size: 2rem; color: var(--color-primary); margin-bottom: 1rem; display: block; }
.usp h3 { color: var(--color-primary); }
.usp p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* --- Spec Highlights (horizontal scroll) --- */
.specs-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
}
.specs-scroll::-webkit-scrollbar { display: none; }
.spec-card {
    flex-shrink: 0;
    min-width: 200px;
    text-align: center;
    scroll-snap-align: start;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}
.spec-card__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.1;
}
.spec-card__label {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* --- Split Layout --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-layout__media img {
    border-radius: var(--border-radius);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--color-border);
}

/* --- Content Blocks --- */
.content-block { margin-bottom: 3rem; }
.content-block--image-text { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.content-block--reverse { direction: rtl; }
.content-block--reverse > * { direction: ltr; }
.content-block__image img {
    border-radius: var(--border-radius);
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--color-border);
}
.content-block--text { max-width: 800px; }

/* --- Check List --- */
.check-list { padding-left: 0; }
.check-list li { padding: 0.5rem 0 0.5rem 2rem; position: relative; color: var(--color-text); }
.check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* --- Steps List --- */
.steps-list { counter-reset: step; padding-left: 0; }
.steps-list li {
    counter-increment: step;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-left: 2px solid var(--color-primary);
    margin-left: 1rem;
    color: var(--color-text);
}
.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: -16px;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* --- Categories Grid --- */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-text);
}
.category-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
}
.category-card__icon { font-size: 2.5rem; color: var(--color-primary); }
.category-card h3 { margin-bottom: 0; }

/* --- Brands Strip --- */
.brands-strip { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.brands-strip img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.5;
    transition: var(--transition);
}
.brands-strip img:hover { filter: none; opacity: 1; }

/* --- Comparison Table --- */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
    background: var(--color-surface);
    color: var(--color-primary);
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}
.comparison-table tr:hover td {
    background: rgba(var(--color-primary-rgb), 0.05);
}

/* --- Spec Tables --- */
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.spec-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: var(--color-surface);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--color-border);
}
.spec-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}
.spec-table tr:hover td {
    background: rgba(var(--color-primary-rgb), 0.03);
}

/* --- Testimonials --- */
.testimonials-slider { max-width: 900px; margin: 2.5rem auto 0; position: relative; }
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    padding: 3rem 3.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}
.testimonial-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 2;
}
.testimonial__icon { color: var(--color-primary); font-size: 2.5rem; margin-bottom: 1.5rem; opacity: 0.6; }
.testimonial__icon--end { margin-bottom: 0; margin-top: 1rem; }
.testimonial__text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.testimonial__author { font-weight: 600; color: var(--color-primary); font-size: 1.1rem; }
.testimonials-dots { display: flex; justify-content: center; gap: 12px; margin-top: 2rem; }
.testimonial-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    padding: 0;
    border-radius: 50%;
    background: var(--color-text-dim);
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.testimonial-dot.is-active { background: var(--color-primary); transform: scale(1.2); }

/* --- Contact --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info,
.contact-form-wrapper {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-border);
}
.contact-form-wrapper { max-width: none; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; }
.contact-detail i { font-size: 1.25rem; color: var(--color-primary); margin-top: 0.2rem; width: 24px; text-align: center; flex-shrink: 0; }
.contact-detail a { color: var(--color-primary); }
.contact-hours { width: 100%; border-collapse: collapse; }
.contact-hours td { padding: 0.3rem 0; white-space: nowrap; color: var(--color-text); }
.contact-hours td:first-child { padding-right: 1.5rem; }
.contact-map { margin-top: 2.5rem; }
.contact-map img { width: 100%; border-radius: var(--border-radius); border: 1px solid var(--color-border); }

/* --- Forms --- */
.form__group { margin-bottom: 1.25rem; }
.form__label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.95rem; color: var(--color-text); }
.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition-fast);
    background: var(--color-surface);
    color: var(--color-text);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--color-text-dim); }
.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
}
.form__textarea { resize: none; height: 150px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Alerts --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.alert--success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--color-success); }
.alert--error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--color-error); }
.alert i { margin-top: 0.15rem; }
.alert a { color: inherit; font-weight: 600; text-decoration: underline; }

/* --- Empty State --- */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 4rem; color: var(--color-text-dim); margin-bottom: 1.5rem; display: block; }
.empty-state h2 { color: var(--color-text); margin-bottom: 0.5rem; }
.empty-state p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* --- Gallery Grid --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.gallery-item {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid var(--color-border);
    position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* --- Footer --- */
.footer {
    background: var(--color-footer);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}
.footer__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}
.footer p { opacity: 0.75; margin-bottom: 0; }
.footer__list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer__list li i { width: 16px; flex-shrink: 0; opacity: 0.5; margin-top: 0.2rem; color: var(--color-primary); }
.footer__list { display: flex; flex-direction: column; }
.footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer a:hover { color: var(--color-primary); }
.footer__hours { border-collapse: collapse; }
.footer__hours td { padding: 0.35rem 0; opacity: 0.75; white-space: nowrap; }
.footer__hours td:first-child { padding-right: 1.5rem; }
.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}
.footer__social a { font-size: 1.2rem; margin-left: 0.75rem; color: var(--color-text-muted); }
.footer__social a:hover { color: var(--color-primary); }
.footer-credit--logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.35);
    transition: opacity var(--transition-fast);
}
.footer-credit--logo img { height: 16px; width: auto; border-radius: 0; opacity: 0.6; transition: opacity var(--transition-fast); }
.footer-credit--logo:hover,
.footer-credit--logo:hover img { opacity: 1; }
.footer__powered {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ============================================
   TEASER — EDITORIAL VARIANT (V1)
   Magazine-stijl, monochroom-warm, minimalistisch
   ============================================ */

.teaser--editorial {
    background: var(--color-bg-deep);
    color: var(--color-text-warm);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: var(--font-sans);
    overflow: hidden;
}

/* Subtle radial glow */
.teaser--editorial::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 240, 210, 0.04) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 0;
}

/* Top bar — small wordmark + lang switcher */
.teaser__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(20px, 2.5vh, 44px) clamp(24px, 4vw, 64px);
    position: relative;
    z-index: 4;
    font-size: clamp(10px, 0.65vw + 0.3rem, 13px);
    letter-spacing: 0.45em;
    font-weight: 500;
    color: rgba(232, 230, 225, 0.45);
    flex-shrink: 0;
}

/* ─── Editorial split — gedeeld door V1.1 (blauw) en V1.2 (goud) ─── */
.teaser--editorial-split { position: relative; }

/* ─── V1.1 — IVECO blauwe variant ─────────────────────────── */
.teaser--editorial-blue {
    --color-bg-deep:       #040505;
    --color-gold:          #1554FF;
    --color-gold-light:    #4D7DFF;
    --color-gold-dark:     #0030B3;
    --color-gold-soft:     rgba(21, 84, 255, 0.22);
    --color-border-gold:   rgba(77, 125, 255, 0.30);
    --gradient-gold:       linear-gradient(135deg, #0030B3 0%, #1554FF 35%, #4D7DFF 55%, #0B40CC 100%);
}
.teaser--editorial-blue .teaser__hero-image::before {
    background: linear-gradient(90deg,
        #040505 0%,
        rgba(4,5,5,0.85) 14%,
        rgba(4,5,5,0.35) 32%,
        rgba(4,5,5,0) 55%,
        rgba(4,5,5,0) 100%);
}
.teaser--editorial-split .teaser__hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.teaser--editorial-split .teaser__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.teaser--editorial-split .teaser__hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        #050505 0%,
        rgba(5,5,5,0.85) 14%,
        rgba(5,5,5,0.35) 32%,
        rgba(5,5,5,0) 55%,
        rgba(5,5,5,0) 100%);
    z-index: 1;
}
.teaser--editorial-split .teaser__stage {
    align-items: flex-start;
    text-align: left;
    width: 56%;
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(16px, 2vw, 32px);
    z-index: 2;
}
.teaser--editorial-split .teaser__logotype {
    justify-content: flex-start;
}
.teaser--editorial-split .teaser__logotype img {
    margin-left: 0;
}
.teaser--editorial-split .teaser__editorial-line,
.teaser--editorial-split .teaser__event-line,
.teaser--editorial-split .teaser__tagline {
    text-align: left;
}
.teaser--editorial-split .teaser__editorial-line {
    font-size: clamp(1.5rem, 2.9vw + 0.2rem, 4.2rem);
    white-space: nowrap;
    max-width: none;
}
.teaser--editorial-split .teaser__signup {
    margin-left: 0;
    margin-right: 0;
}
.teaser--editorial-split .teaser__signup-eyebrow {
    text-align: left;
}
@media (max-width: 900px) {
    /* Hero-foto vult de hele viewport als achtergrond met verticale dimmer.
       Content uit .teaser__stage komt erover heen (z-index: 2). */
    .teaser--editorial-split .teaser__hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    .teaser--editorial-split .teaser__hero-image::before,
    .teaser--editorial-blue .teaser__hero-image::before {
        background: linear-gradient(
            180deg,
            rgba(4, 5, 5, 0.55) 0%,
            rgba(4, 5, 5, 0.35) 32%,
            rgba(4, 5, 5, 0.6) 65%,
            rgba(4, 5, 5, 0.92) 100%
        );
    }

    /* Stage: volle breedte, links uitgelijnd, alles past in 100vh */
    .teaser--editorial-split .teaser__stage {
        width: 100%;
        padding: clamp(20px, 3vh, 36px) clamp(20px, 5vw, 32px) clamp(16px, 2.5vh, 28px);
        align-items: flex-start;
        text-align: left;
    }
    .teaser--editorial-split .teaser__logotype {
        justify-content: flex-start;
        margin: 0 0 clamp(14px, 2.5vh, 26px);
    }
    .teaser--editorial-split .teaser__logotype img {
        width: clamp(200px, 58vw, 320px) !important;
        margin-left: 0;
    }
    .teaser--editorial-split .teaser__editorial-line,
    .teaser--editorial-split .teaser__event-line,
    .teaser--editorial-split .teaser__tagline,
    .teaser--editorial-split .teaser__signup-eyebrow {
        text-align: left;
    }
    .teaser--editorial-split .teaser__editorial-line {
        white-space: normal;
        font-size: clamp(1.5rem, 7vw, 2.4rem);
        max-width: 100%;
        line-height: 1.12;
        margin: 0 0 clamp(14px, 2.2vh, 24px);
    }
    .teaser--editorial-split .teaser__event-line {
        margin: 0 0 clamp(20px, 3.2vh, 36px);
    }
    .teaser--editorial-split .teaser__countdown {
        max-width: 100%;
        margin: 0 0 clamp(20px, 3.2vh, 36px);
        padding: clamp(10px, 1.6vh, 18px) 0;
    }
    .teaser--editorial-split .teaser__signup {
        max-width: 100%;
    }
}
.teaser__topbar-brand {
    text-transform: uppercase;
}
.teaser__topbar-lang {
    display: flex;
    gap: 0.5rem;
    letter-spacing: 0.35em;
}
.teaser__topbar-lang a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}
.teaser__topbar-lang a:hover {
    color: var(--color-text-cream);
}
.teaser__topbar-lang a.is-active {
    color: var(--color-text-cream);
}
.teaser__topbar-lang span {
    color: rgba(232, 230, 225, 0.2);
}

/* Center stage */
.teaser__stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 2vh, 40px) clamp(20px, 4vw, 32px) clamp(20px, 2.5vh, 50px);
    text-align: center;
    position: relative;
    z-index: 2;
    min-height: 0;
    overflow: hidden;
}

.teaser__tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 0.7vw + 0.4rem, 0.95rem);
    letter-spacing: 0.18em;
    color: var(--color-gold-light);
    margin: 0 0 clamp(12px, 1.8vh, 24px);
    font-weight: 500;
    text-transform: uppercase;
}

.teaser__logotype {
    margin: 0 0 clamp(28px, 5vh, 90px);
    width: 100%;
    display: flex;
    justify-content: center;
}
.teaser__logotype img {
    width: clamp(280px, 38vw, 820px) !important;
    max-width: 100%;
    height: auto;
}

.teaser__editorial-line {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw + 0.5rem, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-text-primary);
    margin: 0 0 clamp(12px, 1.8vh, 28px);
    letter-spacing: -0.025em;
    max-width: 16em;
}

.teaser__event-line {
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 0.7vw + 0.4rem, 0.95rem);
    letter-spacing: 0.18em;
    color: var(--color-gold-light);
    margin: 0 0 clamp(28px, 4.5vh, 80px);
    text-transform: uppercase;
    font-weight: 500;
}

/* Countdown — thin horizontal strip */
.teaser__countdown {
    display: flex;
    gap: 0;
    margin: 0 0 clamp(28px, 4.5vh, 80px);
    border-top: 1px solid var(--color-border-gold);
    border-bottom: 1px solid var(--color-border-gold);
    padding: clamp(14px, 2.2vh, 32px) 0;
    width: 100%;
    max-width: clamp(420px, 38vw, 720px);
}
.teaser__countdown-cell {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--color-border-gold);
}
.teaser__countdown-cell:last-child {
    border-right: 0;
}
.teaser__countdown-num {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.6vw + 0.4rem, 4rem);
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.teaser__countdown-label {
    font-family: var(--font-sans);
    font-size: clamp(0.62rem, 0.5vw + 0.45rem, 0.85rem);
    letter-spacing: 0.18em;
    color: var(--color-text-muted-warm);
    margin-top: clamp(6px, 0.8vw, 14px);
    text-transform: uppercase;
    font-weight: 500;
}

/* Email capture — minimal underline */
.teaser__signup {
    width: 100%;
    max-width: clamp(380px, 32vw, 620px);
}
.teaser__signup-eyebrow {
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 0.7vw + 0.4rem, 0.95rem);
    letter-spacing: 0.18em;
    color: var(--color-gold-light);
    margin-bottom: clamp(12px, 1.4vh, 22px);
    text-transform: uppercase;
    text-align: left;
    font-weight: 500;
}
.teaser__signup-form {
    display: flex;
    border-bottom: 0.5px solid rgba(232, 230, 225, 0.35);
    padding-bottom: 12px;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 200ms ease;
}
.teaser__signup-form:focus-within {
    border-bottom-color: var(--color-text-cream);
}
.teaser__signup-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: 0;
    color: var(--color-text-cream);
    font-family: var(--font-sans);
    font-size: clamp(0.84rem, 0.6vw + 0.6rem, 1.05rem);
    padding: 6px 0;
    outline: none;
    min-width: 0;
}
.teaser__signup-form input[type="email"]::placeholder {
    color: rgba(232, 230, 225, 0.4);
}
.teaser__signup-form button {
    background: transparent;
    border: 0;
    color: var(--color-text-cream);
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 0.5vw + 0.5rem, 0.95rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 0;
    white-space: nowrap;
    transition: opacity 200ms ease;
    font-weight: 500;
}
.teaser__signup-form button:hover {
    opacity: 0.7;
}
.teaser__signup-form button:disabled {
    cursor: wait;
    opacity: 0.4;
}
.teaser__signup-status {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(232, 230, 225, 0.7);
    text-align: left;
    min-height: 1.2em;
}
.teaser__signup-status.is-success {
    color: var(--color-text-cream);
}
.teaser__signup-status.is-error {
    color: #d77a7a;
}

/* Bottom whisper */
.teaser__footer {
    padding: clamp(16px, 2vh, 32px) clamp(24px, 4vw, 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: clamp(9px, 0.55vw + 0.3rem, 12px);
    letter-spacing: 0.4em;
    color: rgba(232, 230, 225, 0.3);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Mobiel */
@media (max-width: 640px) {
    .teaser__topbar { padding: 20px 24px; }
    .teaser__stage { padding: 32px 24px 48px; }
    .teaser__tagline { margin-bottom: 56px; }
    .teaser__event-line { margin-bottom: 48px; }
    .teaser__countdown { margin-bottom: 48px; padding: 18px 0; }
    .teaser__countdown-num { font-size: 1.5rem; }
    .teaser__countdown-label { font-size: 8px; }
    .teaser__footer {
        flex-direction: column;
        gap: 8px;
        padding: 20px 24px;
        font-size: 8px;
        text-align: center;
    }
}

/* ============================================
   TEASER — CINEMATIC VARIANT (V2)
   Dark + gold, dramatic, story-driven
   ============================================ */

.cine {
    background: #0a0a0c;
    color: var(--color-text-warm);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* ─── Topbar ──────────────────────────────────────────────── */
.cine__topbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 24px clamp(24px, 4vw, 80px);
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.cine__brand img { display: block; }
.cine__nav {
    display: flex;
    gap: 2.5rem;
    margin-right: auto;
    margin-left: 3rem;
}
.cine__nav a {
    color: var(--color-text-warm);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: color 200ms ease;
}
.cine__nav a:hover { color: var(--color-gold); }

.cine__topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.cine__lang {
    display: flex;
    gap: 0.5rem;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(232,230,225,0.5);
}
.cine__lang a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}
.cine__lang a:hover,
.cine__lang a.is-active { color: var(--color-gold); }
.cine__lang span { color: rgba(255,255,255,0.2); }

.cine__cta-outline {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: all 200ms ease;
}
.cine__cta-outline:hover {
    background: var(--color-gold);
    color: #0a0a0c;
}

/* ─── Hero ────────────────────────────────────────────────── */
.cine__hero {
    position: relative;
    min-height: 86vh;
    padding: 2vh 48px 4vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cine__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.cine__hero-silhouette {
    position: absolute;
    right: -3%;
    top: 50%;
    transform: translateY(-50%);
    width: 82%;
    max-width: 1700px;
    height: auto;
    opacity: 1;
    pointer-events: none;
}
.cine__hero-vignette {
    position: absolute;
    inset: 0;
    background:
        /* Linker zijde donker zodat content leesbaar is; rechts laat silhouet doorkomen */
        linear-gradient(90deg,
            rgba(10,10,12,0.98) 0%,
            rgba(10,10,12,0.88) 28%,
            rgba(10,10,12,0.45) 48%,
            rgba(10,10,12,0.08) 68%,
            transparent 100%
        );
}

.cine__hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-left: clamp(0px, 4vw, 80px);
}
.cine__hero-content > * {
    max-width: 820px;
}

.cine__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.2vw + 0.4rem, 6.4rem);
    font-weight: 500;
    line-height: 1.02;
    color: var(--color-text-primary);
    margin: 0 0 clamp(20px, 2.5vh, 40px);
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.cine__hero-logotype {
    margin: 0 0 clamp(16px, 2vh, 28px);
}
.cine__hero-payoff {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.6rem);
    color: var(--color-gold-light);
    margin: 0 0 clamp(28px, 4vh, 56px);
    letter-spacing: 0.01em;
}

/* ─── Countdown ───────────────────────────────────────────── */
.cine__countdown {
    margin-bottom: 36px;
}
.cine__countdown-eyebrow {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 16px;
    font-weight: 500;
}
.cine__countdown-row {
    display: flex;
    gap: 36px;
}
.cine__countdown-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cine__countdown-num {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    line-height: 1;
    color: #f5f3ee;
    font-variant-numeric: tabular-nums;
}
.cine__countdown-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(232,230,225,0.5);
    margin-top: 6px;
    text-transform: uppercase;
}

/* ─── Hero CTA's ─────────────────────────────────────────── */
.cine__hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.cine__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 200ms ease;
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1;
}
.cine__btn--primary {
    background: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.cine__btn--primary:hover {
    background: var(--color-gold);
    color: #0a0a0c;
}
.cine__btn--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--color-gold);
    padding-left: 0;
}
.cine__btn--ghost:hover { color: #f0d290; }

/* ─── Story (3 icon cards) ────────────────────────────────── */
.cine__story {
    padding: 96px clamp(24px, 4vw, 80px) 64px;
    text-align: left;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.cine__story-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    color: #f5f3ee;
    margin: 0 0 16px;
    line-height: 1.15;
}
.cine__story-lead {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232,230,225,0.7);
    margin: 0 0 56px;
    max-width: 600px;
}
.cine__story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(202,162,96,0.18);
}
.cine__story-card {
    padding: 36px 32px 12px;
    border-right: 1px solid rgba(202,162,96,0.18);
}
.cine__story-card:last-child { border-right: 0; }
.cine__story-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}
.cine__story-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: #f5f3ee;
    margin: 0 0 12px;
    letter-spacing: 0.005em;
}
.cine__story-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(232,230,225,0.55);
    margin: 0;
}

/* ─── Thumbnails (4 dark cards) ──────────────────────────── */
.cine__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px clamp(24px, 4vw, 80px) 64px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.cine__thumb {
    display: flex;
    flex-direction: column;
    background: #0d0d0f;
    border: 1px solid rgba(202,162,96,0.12);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 250ms ease;
}
.cine__thumb:hover {
    border-color: rgba(202,162,96,0.4);
    transform: translateY(-2px);
}
.cine__thumb-img {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at center, #1a1a1d 0%, #0a0a0c 70%);
    position: relative;
    overflow: hidden;
}
.cine__thumb-img--name {
    padding: 0 20%;
}
.cine__thumb-img--silhouette::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 100% at 50% 60%, rgba(202,162,96,0.15) 0%, transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(202,162,96,0.08) 50%, transparent 60%);
}
.cine__thumb-img--silhouette::after {
    content: "";
    position: absolute;
    inset: 30% 25% 25% 25%;
    border-top: 1px solid rgba(202,162,96,0.4);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    clip-path: inset(0 0 50% 0);
}
.cine__thumb-img--sketch {
    background:
        repeating-linear-gradient(0deg, transparent 0 22px, rgba(202,162,96,0.03) 22px 23px),
        repeating-linear-gradient(90deg, transparent 0 22px, rgba(202,162,96,0.03) 22px 23px),
        radial-gradient(ellipse at center, #14110a 0%, #0a0a0c 80%);
}
.cine__thumb-img--sketch::before {
    content: "";
    position: absolute;
    inset: 35%;
    border: 1px dashed rgba(202,162,96,0.35);
    border-radius: 4px;
}
.cine__thumb-img--detail {
    background:
        linear-gradient(115deg, #0a0a0c 30%, rgba(202,162,96,0.18) 50%, #0a0a0c 70%);
}
.cine__thumb-label {
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(232,230,225,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cine__thumb:hover .cine__thumb-label { color: var(--color-gold); }

/* ─── Truckstar reveal ───────────────────────────────────── */
.cine__reveal {
    padding: 80px clamp(24px, 4vw, 80px);
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.cine__reveal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #0d0d0f;
    border: 1px solid rgba(202,162,96,0.18);
    border-radius: 8px;
    overflow: hidden;
}
.cine__reveal-text {
    padding: 56px 48px;
}
.cine__reveal-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    color: #f5f3ee;
    line-height: 1.2;
    margin: 0 0 32px;
}
.cine__reveal-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid rgba(202,162,96,0.15);
}
.cine__reveal-icon {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 4px;
}
.cine__reveal-row > div {
    display: flex;
    flex-direction: column;
}
.cine__reveal-row strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #f5f3ee;
    font-weight: 400;
    line-height: 1.2;
}
.cine__reveal-row span {
    font-size: 0.85rem;
    color: rgba(232,230,225,0.55);
    margin-top: 2px;
}

.cine__reveal-stage {
    position: relative;
    min-height: 320px;
    background:
        radial-gradient(ellipse at center top, rgba(202,162,96,0.18) 0%, transparent 60%),
        #050505;
    overflow: hidden;
}
.cine__reveal-spotlights {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(195deg, rgba(202,162,96,0.4) 0%, transparent 25%) -20% 0 / 60% 100% no-repeat,
        linear-gradient(165deg, rgba(202,162,96,0.4) 0%, transparent 25%) 80% 0 / 60% 100% no-repeat;
    opacity: 0.5;
    mix-blend-mode: screen;
}
.cine__reveal-silhouette {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: auto;
    opacity: 0.85;
    filter: brightness(0.7) contrast(1.1);
}
.cine__reveal-curtain {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, transparent 30%, rgba(10,10,12,0.4) 60%, #050505 100%);
    pointer-events: none;
}

/* ─── Signup card ────────────────────────────────────────── */
.cine__signup {
    padding: 0 clamp(24px, 4vw, 80px) 64px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.cine__signup-card {
    display: grid;
    grid-template-columns: 80px 1.2fr 1.4fr;
    gap: 40px;
    align-items: center;
    background: #0d0d0f;
    border: 1px solid rgba(202,162,96,0.4);
    border-radius: 8px;
    padding: 40px 48px;
}
.cine__signup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(202,162,96,0.18) 0%, transparent 70%),
        rgba(202,162,96,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
}
.cine__signup-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    color: #f5f3ee;
    line-height: 1.15;
    margin: 0 0 10px;
}
.cine__signup-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(232,230,225,0.55);
    margin: 0;
}
.cine__signup-form {
    display: grid;
    gap: 12px;
}
.cine__signup-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(202,162,96,0.2);
    color: #f5f3ee;
    padding: 14px 16px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 200ms ease;
}
.cine__signup-input:focus { border-color: var(--color-gold); }
.cine__signup-input::placeholder { color: rgba(232,230,225,0.4); }
.cine__signup-btn {
    background: var(--color-gold);
    color: #0a0a0c;
    border: 0;
    padding: 14px 22px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.cine__signup-btn:hover { background: #d8b675; }
.cine__signup-btn:disabled { opacity: 0.5; cursor: wait; }
.cine__signup-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: rgba(232,230,225,0.5);
    line-height: 1.5;
    cursor: pointer;
}
.cine__signup-consent input { margin-top: 3px; accent-color: var(--color-gold); }
.cine__signup-status {
    font-size: 12px;
    color: rgba(232,230,225,0.7);
    min-height: 1.2em;
}
.cine__signup-status.is-success { color: var(--color-gold); }
.cine__signup-status.is-error   { color: #d77a7a; }

/* ─── Footer ─────────────────────────────────────────────── */
.cine__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px clamp(24px, 4vw, 80px);
    border-top: 1px solid rgba(202,162,96,0.15);
    margin-top: auto;
    font-size: 11px;
    color: rgba(232,230,225,0.4);
    letter-spacing: 0.04em;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}
.cine__footer-brand img { display: block; }
.cine__footer-copy { margin: 0; }
.cine__footer-links { display: flex; gap: 28px; }
.cine__footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}
.cine__footer-links a:hover { color: var(--color-gold); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cine__topbar { padding: 20px 32px; flex-wrap: wrap; gap: 1rem; }
    .cine__nav { margin: 0; gap: 1.5rem; }
    .cine__hero { padding: 4vh 32px; min-height: 70vh; }
    .cine__hero-silhouette { width: 90%; right: -20%; opacity: 0.65; }
    .cine__story, .cine__thumbs, .cine__reveal, .cine__signup { padding-left: 32px; padding-right: 32px; }
    .cine__footer { padding: 24px 32px; }
}

@media (max-width: 768px) {
    .cine__topbar { padding: 16px 24px; }
    .cine__nav, .cine__cta-outline--header { display: none; }
    .cine__hero { min-height: auto; padding: 6vh 24px 8vh; }
    .cine__hero-silhouette { opacity: 0.35; right: -30%; width: 130%; top: 60%; }
    .cine__headline { white-space: normal; }
    .cine__countdown-row { gap: 24px; }
    .cine__countdown-num { font-size: 2.25rem; }

    .cine__story-grid { grid-template-columns: 1fr; }
    .cine__story-card { border-right: 0; border-bottom: 1px solid rgba(202,162,96,0.15); padding: 28px 0; }
    .cine__story-card:last-child { border-bottom: 0; }

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

    .cine__reveal-grid { grid-template-columns: 1fr; }
    .cine__reveal-text { padding: 36px 28px; }
    .cine__reveal-stage { min-height: 220px; }

    .cine__signup-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    .cine__signup-icon { margin: 0 auto; }
    .cine__signup-consent { text-align: left; }

    .cine__footer { flex-direction: column; text-align: center; gap: 14px; }
    .cine__footer-links { gap: 18px; }
}

/* --- Teaser modal --- */
.teaser-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}
.teaser-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.teaser-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.teaser-modal__card {
    position: relative;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 2.5rem;
    width: min(480px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(12px) scale(0.98);
    transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.teaser-modal.is-open .teaser-modal__card { transform: translateY(0) scale(1); }
.teaser-modal__card h2 {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 2vw + 0.75rem, 2rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.teaser-modal__card .signup-form__desc {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.teaser-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 150ms ease, color 150ms ease;
}
.teaser-modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}
/* --- Signup Form --- */
.signup-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}

/* --- Error Pages --- */
.error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg);
}
.error-page__code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-heading);
}
.error-page__title { font-size: 1.5rem; margin: 0.5rem 0 1rem; color: var(--color-text); }
.error-page__message { color: var(--color-text-muted); max-width: 500px; margin-bottom: 2rem; }
.error-page__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.error-page .btn--outline { color: var(--color-primary); border-color: var(--color-primary); }
.error-page .btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}
.schoutenai {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: 3rem;
    text-decoration: none;
}
.schoutenai__label { font-size: 0.75rem; color: var(--color-text-dim); }
.schoutenai img { height: 20px; opacity: 0.5; transition: var(--transition-fast); }
.schoutenai:hover img { opacity: 1; }

/* --- Reveal Animation --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@supports (animation-timeline: view()) {
    .reveal {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 25%;
        opacity: 1;
        transform: none;
    }
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; animation: none; transition: none; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Responsive: Tablet (900px) --- */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 999;
        padding: 2rem;
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: 0; }
    .nav__link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
    }

    .usps-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--wide,
    .bento-card--narrow { grid-column: span 6; }
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .content-block--image-text { grid-template-columns: 1fr; }
    .content-block--reverse { direction: ltr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* --- Responsive: Mobile (768px) --- */
@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }

    .hero { min-height: 100vh; }
    .hero--small { min-height: 50vh; }
    .page-hero { min-height: max(45vh, 300px); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }

    .usps-grid { grid-template-columns: 1fr; }
    .bento-card--wide,
    .bento-card--narrow,
    .bento-card--half { grid-column: span 12; }
    .categories-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .form__row { grid-template-columns: 1fr; }

    .testimonial-slide { padding: 2.5rem 1.5rem; }
    .testimonial__text { font-size: 0.95rem; }

    .countdown { gap: 0.75rem; }
    .countdown__separator { font-size: 2rem; }

    .scroll-indicator { display: none; }

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

/* ============================================
   TEASER — CHATGPT VARIANT (V3)
   Premium black-and-gold automotive teaser
   ============================================ */

.cgpt {
    background:
        radial-gradient(circle at 72% 28%, rgba(200, 148, 58, 0.12), transparent 28%),
        radial-gradient(circle at 45% 80%, rgba(200, 148, 58, 0.06), transparent 35%),
        var(--color-bg-deep);
    color: var(--color-text-primary);
    min-height: 100vh;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* ─── Header ────────────────────────────────── */
.cgpt__header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-line-subtle);
    height: 86px;
}
.cgpt__header-inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    padding: 0 clamp(20px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cgpt__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.cgpt__brand img { display: block; }
.cgpt__nav {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.6rem);
    flex: 1;
    justify-content: center;
}
.cgpt__nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 200ms ease;
}
.cgpt__nav a:hover { color: var(--color-gold-light); }
.cgpt__header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}
.cgpt__lang {
    display: flex;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted-warm);
}
.cgpt__lang a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}
.cgpt__lang a:hover,
.cgpt__lang a.is-active { color: var(--color-gold-light); }
.cgpt__lang span { color: rgba(255, 255, 255, 0.15); }

/* ─── Buttons ────────────────────────────────── */
.cgpt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 250ms ease;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.cgpt-btn--gold-outline {
    border-color: rgba(226, 183, 92, 0.65);
    color: var(--color-gold-light);
    background: rgba(3, 3, 3, 0.4);
}
.cgpt-btn--gold-outline:hover {
    background: rgba(200, 148, 58, 0.12);
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}
.cgpt-btn--gold-filled {
    background: var(--gradient-gold);
    color: #080604;
    border-color: rgba(226, 183, 92, 0.8);
    font-weight: 600;
}
.cgpt-btn--gold-filled:hover {
    filter: brightness(1.08);
}

/* ─── Hero ──────────────────────────────────── */
.cgpt__hero {
    position: relative;
    min-height: clamp(700px, 90vh, 880px);
    display: flex;
    align-items: center;
}
.cgpt__hero-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(56px, 8vh, 110px) clamp(20px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.cgpt__hero-left {
    position: relative;
    z-index: 2;
    max-width: 580px;
}
.cgpt__hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--color-text-primary);
    font-weight: 500;
    margin: 0 0 36px;
}
.cgpt__hero-wordmark {
    margin: 0 0 22px;
}
.cgpt__hero-wordmark img { display: block; }
.cgpt__hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    margin: 0 0 6px;
    font-weight: 500;
}
.cgpt__hero-subtagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-gold-light);
    margin: 0 0 40px;
}
.cgpt__countdown {
    margin: 0 0 40px;
}
.cgpt__countdown-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--color-text-muted-warm);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 14px;
}
.cgpt__countdown-grid {
    display: flex;
    gap: clamp(20px, 3vw, 44px);
}
.cgpt__countdown-cell {
    text-align: left;
    min-width: 70px;
}
.cgpt__countdown-num {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.cgpt__countdown-sub {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--color-text-muted-warm);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}
.cgpt__hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cgpt__hero-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: color 200ms ease;
}
.cgpt__hero-link:hover { color: var(--color-gold-light); }

/* Hero visual (silhouette with rim-light + smoke) */
.cgpt__hero-visual {
    position: relative;
    isolation: isolate;
    aspect-ratio: 4 / 3;
    width: 100%;
}
.cgpt__hero-visual::before {
    content: "";
    position: absolute;
    inset: 8% -10% 0 10%;
    background: radial-gradient(circle at 55% 42%, rgba(226, 183, 92, 0.16), rgba(226, 183, 92, 0.04) 28%, transparent 58%);
    filter: blur(24px);
    z-index: -1;
}
.cgpt__hero-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.72) 45%, transparent 100%);
    pointer-events: none;
}
.cgpt__hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.55) contrast(1.15);
    mix-blend-mode: screen;
}

/* ─── Statement band ───────────────────────── */
.cgpt__statement {
    border-top: 1px solid var(--color-line-subtle);
    border-bottom: 1px solid var(--color-line-subtle);
    padding: 56px clamp(20px, 4vw, 56px);
    text-align: center;
}
.cgpt__statement p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-style: italic;
    color: var(--color-text-secondary);
    margin: 0 auto;
    max-width: 760px;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

/* ─── Three teaser cards ───────────────────── */
.cgpt__cards {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}
.cgpt-card {
    background: linear-gradient(180deg, rgba(18, 18, 16, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid var(--color-line-subtle);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 250ms ease, transform 250ms ease;
}
.cgpt-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-2px);
}
.cgpt-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.cgpt-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 3, 3, 0) 40%, rgba(3, 3, 3, 0.75) 100%);
    pointer-events: none;
}
.cgpt-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.05);
}
.cgpt-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 20px;
}
.cgpt-card__caption {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--color-text-primary);
    text-transform: uppercase;
    font-weight: 500;
}
.cgpt-card__arrow {
    color: var(--color-gold-light);
    font-size: 1rem;
    line-height: 1;
    transition: transform 250ms ease;
}
.cgpt-card:hover .cgpt-card__arrow {
    transform: translateX(4px);
}

/* ─── Signup block ─────────────────────────── */
.cgpt__signup {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px) clamp(56px, 8vw, 110px);
}
.cgpt__signup-inner {
    display: grid;
    grid-template-columns: auto 1.4fr 1fr;
    gap: clamp(20px, 3vw, 48px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--color-border-gold);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(18, 18, 16, 0.9), rgba(5, 5, 5, 0.95));
}
.cgpt__signup-icon {
    color: var(--color-gold-light);
    flex-shrink: 0;
}
.cgpt__signup-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.15;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    letter-spacing: -0.015em;
    font-weight: 500;
}
.cgpt__signup-sub {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.55;
}
.cgpt__signup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.cgpt__signup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cgpt__signup-form input[type="text"],
.cgpt__signup-form input[type="email"] {
    background: rgba(3, 3, 3, 0.4);
    border: 1px solid var(--color-line-subtle);
    border-radius: 4px;
    padding: 11px 14px;
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 200ms ease, background 200ms ease;
}
.cgpt__signup-form input::placeholder {
    color: var(--color-text-muted-warm);
}
.cgpt__signup-form input:focus {
    border-color: var(--color-gold-light);
    background: rgba(3, 3, 3, 0.6);
}
.cgpt__signup-form button[type="submit"] {
    margin-top: 4px;
    width: 100%;
}
.cgpt__signup-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    color: var(--color-text-muted-warm);
    line-height: 1.4;
    cursor: pointer;
}
.cgpt__signup-privacy input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--color-gold);
}
.cgpt__signup-status {
    font-size: 0.84rem;
    color: var(--color-text-secondary);
    min-height: 1.2em;
}
.cgpt__signup-status.is-success { color: var(--color-gold-light); }
.cgpt__signup-status.is-error   { color: #d77a7a; }

/* ─── Footer ────────────────────────────────── */
.cgpt__footer {
    border-top: 1px solid var(--color-line-subtle);
    padding: 32px clamp(20px, 4vw, 56px);
}
.cgpt__footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cgpt__footer-brand img { display: block; opacity: 0.9; }
.cgpt__footer-copy {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--color-text-muted-warm);
    margin: 0;
}
.cgpt__footer-links {
    display: flex;
    gap: 1.5rem;
}
.cgpt__footer-links a {
    color: var(--color-text-muted-warm);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 200ms ease;
}
.cgpt__footer-links a:hover { color: var(--color-gold-light); }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 960px) {
    .cgpt__nav { display: none; }
    .cgpt__hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .cgpt__hero-visual {
        order: -1;
        aspect-ratio: 16 / 10;
        max-height: 320px;
    }
    .cgpt__cards { grid-template-columns: 1fr; }
    .cgpt__signup-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .cgpt__signup-icon { display: none; }
}
@media (max-width: 640px) {
    .cgpt__header { height: 72px; }
    .cgpt__header-right .cgpt-btn--gold-outline { display: none; }
    .cgpt__countdown-grid { gap: 18px; }
    .cgpt__signup-row { grid-template-columns: 1fr; }
    .cgpt__footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   TEASER — REVEAL (aftelscherm rond truck-onder-doek + logo)
   ============================================================ */
/* Teaserpagina: hele pagina dezelfde basiskleur (ook achter overscroll/bounce) */
html:has(.rvl),
body:has(.rvl) {
    background-color: #0e1117;
}

/* Vloeiend scrollen bij de anker-knoppen + wat ademruimte boven elke sectie */
html:has(.rvl) { scroll-behavior: smooth; }
.rvl-block,
.rvl-strip-section { scroll-margin-top: 1.5rem; }
@media (prefers-reduced-motion: reduce) {
    html:has(.rvl) { scroll-behavior: auto; }
}

/* Blauwe scrollbalk rechts op de teaserpagina, passend bij het thema */
html:has(.rvl) {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary, #1554FF) transparent;
}
html:has(.rvl)::-webkit-scrollbar {
    width: 12px;
    background: transparent;
}
html:has(.rvl)::-webkit-scrollbar-track {
    background: transparent;
}
html:has(.rvl)::-webkit-scrollbar-thumb {
    background: var(--color-primary, #1554FF);
    border-radius: 8px;
    border: 3px solid transparent;
    background-clip: padding-box;
}
html:has(.rvl)::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--color-primary, #1554FF) 82%, white);
}
html:has(.rvl)::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}
html:has(.rvl)::-webkit-scrollbar-button:single-button {
    display: none;
    width: 0;
    height: 0;
}

.rvl {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    background: #0e1117;
    padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.5rem, 4.5vw, 4.5rem);
    text-align: left;
    /* Horizontale inspring voor logo + infoblok: ~midden tussen linkerrand
       en de truck, net iets naar links. Footer blijft op de randen. */
    --rvl-indent: clamp(0.5rem, 2.5vw, 3rem);
}

/* Achtergrond: doek-foto full-bleed */
.rvl__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.rvl__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Extra inzoom zodat de truck groter in beeld komt; overflow van .rvl
       (hidden) snijdt de randen netjes weg. */
    transform: scale(1.2);
    transform-origin: center center;
}

/* Scrim voor leesbaarheid: verdonkert de linkerkant (waar de tekst staat)
   en laat de rechterkant met de truck + blauwe rim-lighting vrij. */
.rvl__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        /* Brede, zeer geleidelijke overloop onderrand -> sectiekleur (#0e1117).
           BOVENOP alle andere lagen, zodat de onderste strook over de VOLLE
           breedte exact de sectiekleur wordt -> ook de blauw/donker getinte
           linkerkant (leesbaarheidslaag) wordt hier weggemengd. Anders is de
           bodem links donkerder dan de sectie en ontstaat daar een naad.
           Lange aanloop (vanaf 36%) + kleine stappen = geen zichtbare band. */
        linear-gradient(to bottom,
            rgba(14, 17, 23, 0) 36%,
            rgba(14, 17, 23, 0.05) 50%,
            rgba(14, 17, 23, 0.13) 61%,
            rgba(14, 17, 23, 0.26) 70%,
            rgba(14, 17, 23, 0.44) 78%,
            rgba(14, 17, 23, 0.64) 85%,
            rgba(14, 17, 23, 0.82) 91%,
            rgba(14, 17, 23, 0.94) 96%,
            rgb(14, 17, 23) 99.5%),
        /* leesbaarheid links (tekstkolom) */
        linear-gradient(to right,
            rgba(7, 9, 14, 0.74) 0%,
            rgba(7, 9, 14, 0.45) 33%,
            rgba(7, 9, 14, 0.08) 62%,
            rgba(7, 9, 14, 0) 100%),
        /* subtiele verdonkering bovenrand (topbar) */
        linear-gradient(to bottom,
            rgba(7, 9, 14, 0.40) 0%,
            rgba(7, 9, 14, 0) 14%);
}

/* Topbar */
.rvl__top {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: var(--rvl-indent, 0);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.rvl__brand {
    display: inline-block;
    line-height: 0;
}
.rvl__top-brand {
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.rvl__lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.rvl__lang a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}
.rvl__lang a:hover { color: #fff; }
.rvl__lang a.is-active { color: var(--color-primary, #1554FF); }
.rvl__lang-sep { color: rgba(255, 255, 255, 0.25); }

/* Centrale stage */
.rvl__stage {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 1.75rem);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2rem 0 2rem var(--rvl-indent, 0);
}
/* Tekstkolom blijft links, onder ~55% breedte zodat de truck rechts vrij blijft */
.rvl__stage > * { max-width: min(560px, 92%); }

/* Logo linksboven, prominent (breed woordmerk, ~11:1) */
.rvl__logo {
    width: clamp(240px, 30vw, 440px);
    height: auto;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
    transition: opacity 0.2s ease;
}
.rvl__brand:hover .rvl__logo { opacity: 0.85; }

/* Tagline — elegant serif voor een luxere, automotive-premium toon.
   Alleen het woord 'meant' cursief als accent. */
.rvl__tagline {
    font-family: var(--font-accent, 'Bebas Neue'), sans-serif;
    font-weight: 400;
    font-style: normal;
    /* Liggend/desktop: payoff op één regel (white-space: nowrap). De staande
       pagina zet 'm bewust over twee regels (zie @media orientation: portrait). */
    font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3.7rem);
    white-space: nowrap;
    line-height: 1.02;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}
/* Geen cursief/serif accent meer: het accentwoord loopt strak mee met de rest
   van de payoff (brochure-stijl, uniforme blokletters, geen blauw). */
.rvl__tagline em {
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
}
.rvl__event {
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Countdown */
.rvl__countdown {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: clamp(0.5rem, 1vw, 0.9rem);
    margin-top: 0.25rem;
}
.rvl__cd-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: clamp(66px, 8vw, 104px);
    padding: 0.85rem 0.55rem 0.65rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
    border: 1px solid color-mix(in srgb, var(--color-primary, #1554FF) 45%, transparent);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 0 22px color-mix(in srgb, var(--color-primary, #1554FF) 16%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.rvl__cd-num {
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw + 0.4rem, 3.4rem);
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 18px color-mix(in srgb, var(--color-primary, #1554FF) 35%, transparent);
}
.rvl__cd-label {
    margin-top: 0.45rem;
    font-family: var(--font-body, 'Barlow'), sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.rvl__cd-divider {
    font-family: var(--font-accent, 'Bebas Neue'), sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.25);
    align-self: flex-start;
    transform: translateY(-2px);
}

/* Countdown + livestream als één kolom. Het live-vak stretcht naar exact
   de breedte van de klok: de groep krijgt fit-content (= klokbreedte) en het
   live-vak width:0 + min-width:100% zodat het de groepsbreedte volgt zonder
   die zelf op te rekken. */
.rvl__cd-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: fit-content;
    max-width: min(560px, 92%);
    margin-top: 0.25rem;
}
.rvl__cd-group .rvl__countdown { margin-top: 0; }

/* Livestream-aankondiging onder de countdown */
.rvl__live {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 0;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1.15rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
    border: 1px solid color-mix(in srgb, var(--color-primary, #1554FF) 45%, transparent);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 0 22px color-mix(in srgb, var(--color-primary, #1554FF) 14%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.rvl__live-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}
.rvl__live-dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5);
    animation: rvlLivePulse 1.9s ease-out infinite;
}
@keyframes rvlLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5); }
    70%  { box-shadow: 0 0 0 9px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}
.rvl__live-text {
    margin: 0;
    font-family: var(--font-body, 'Barlow'), sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.82);
}
.rvl__live-badge {
    display: inline;
    margin-right: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--color-primary, #1554FF) 35%, #ffffff);
}
.rvl__live-socials {
    display: flex;
    gap: 0.5rem;
}
.rvl__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid color-mix(in srgb, var(--color-primary, #1554FF) 35%, transparent);
    transition: var(--transition-fast, all 0.2s ease);
}
.rvl__social-ico {
    width: 16px;
    height: 16px;
    display: block;
}
.rvl__social:hover {
    color: #fff;
    background: var(--color-primary, #1554FF);
    border-color: var(--color-primary, #1554FF);
    transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
    .rvl__live-dot { animation: none; }
    .rvl__social:hover { transform: none; }
}

/* Anker-knoppen in de hero — springen naar de secties op de pagina */
.rvl__jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: min(560px, 92%);
    margin-top: 0.4rem;
}
.rvl__jump-link {
    font-family: var(--font-body, 'Barlow'), sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid color-mix(in srgb, var(--color-primary, #1554FF) 40%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--transition-fast, all 0.2s ease);
    white-space: nowrap;
}
.rvl__jump-link:hover {
    color: #fff;
    background: var(--color-primary, #1554FF);
    border-color: var(--color-primary, #1554FF);
    transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
    .rvl__jump-link:hover { transform: none; }
}

/* Signup */
.rvl__signup {
    width: 100%;
    max-width: 440px;
    margin-top: clamp(0.5rem, 1.5vw, 1rem);
}
/* Gecentreerd in het afsluitende CTA-blok */
.rvl__signup--center {
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}
.rvl__signup-eyebrow {
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}
.rvl__signup-form {
    display: flex;
    gap: 0.5rem;
}
.rvl__signup-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--border-radius, 12px);
    color: #fff;
    font-family: var(--font-body, 'Barlow'), sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.rvl__signup-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.4); }
.rvl__signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary, #1554FF);
    background: rgba(255, 255, 255, 0.1);
}
.rvl__signup-form button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--color-primary, #1554FF) 88%, #fff) 0%,
        var(--color-primary, #1554FF) 55%,
        color-mix(in srgb, var(--color-primary, #1554FF) 80%, #000) 100%);
    border: 1px solid color-mix(in srgb, var(--color-primary, #1554FF) 70%, #fff);
    border-radius: var(--border-radius, 12px);
    color: #fff;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 22px color-mix(in srgb, var(--color-primary, #1554FF) 35%, transparent);
    transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.rvl__signup-form button::after {
    content: "\2192"; /* → */
    font-size: 1.05em;
    line-height: 1;
}
.rvl__signup-form button:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--color-primary, #1554FF) 45%, transparent);
}
.rvl__signup-form button:active { transform: translateY(1px); }
.rvl__signup-form button:disabled { opacity: 0.6; cursor: default; }
.rvl__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rvl__signup-status {
    min-height: 1.2em;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}
.rvl__signup-status.is-success { color: #4ade80; }
.rvl__signup-status.is-error { color: #f87171; }

/* Footer whispers */
.rvl__foot {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobiel / portret: truck als gecentreerde backdrop, tekst links over een
   bottom-zware scrim zodat alles leesbaar blijft. */
@media (max-width: 760px) {
    .rvl__bg img { object-position: center; transform: scale(1.05); }
    .rvl__scrim {
        background: linear-gradient(to bottom,
            rgba(10, 12, 17, 0.55) 0%,
            rgba(10, 12, 17, 0.18) 28%,
            rgba(14, 17, 23, 0.20) 50%,
            rgba(14, 17, 23, 0.36) 64%,
            rgba(14, 17, 23, 0.56) 76%,
            rgba(14, 17, 23, 0.76) 85%,
            rgba(14, 17, 23, 0.92) 93%,
            rgb(14, 17, 23) 100%);
    }
    .rvl__stage > * { max-width: 100%; }
    .rvl__cd-divider { display: none; }
    .rvl__countdown { gap: 0.45rem; }
    .rvl__cd-cell { min-width: 0; flex: 1; padding: 0.6rem 0.25rem 0.5rem; border-radius: 11px; }
    .rvl__cd-label { font-size: 0.58rem; letter-spacing: 0.08em; }
    .rvl__logo { width: clamp(150px, 42vw, 200px); }
    .rvl__signup-form { flex-direction: column; }
    .rvl__signup-form button { width: 100%; }
    .rvl__foot { flex-direction: column; align-items: flex-start; gap: 0.35rem; font-size: 0.65rem; }
}

/* Portret (telefoon rechtop, smalle vensters) — staande pagina.
   Indeling: payoff bovenaan (boven de truck), de truck als blikvanger in het
   midden, en countdown + livestream + jumplinks onderin — nét boven de fade
   naar de sectiekleur. Alles horizontaal gecentreerd. */
@media (orientation: portrait) {
    /* De truck staat in een GECAPTE band bovenin (geen full-bleed). De payoff
       staat nu ONDER de truck, op één regel; countdown er nét onder. */
    /* Hero krimpt tot de inhoud: geen lege 100vh-rest meer ná de knoppen,
       zodat de tijdlijn er direct op volgt. */
    .rvl { --rvl-band: clamp(360px, 56vh, 720px); min-height: auto; }
    .rvl__bg {
        bottom: auto;
        height: var(--rvl-band);
    }
    .rvl__bg img {
        object-position: center;
        transform: none;
    }
    /* Boven: leesbaarheid payoff. Onder: zachte fade naar de sectiekleur zodat
       de truck loslaat van de countdown (niets raakt de truck). */
    .rvl__bg::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(to bottom,
            rgba(14, 17, 23, 0.55) 0%,
            rgba(14, 17, 23, 0) 18%,
            rgba(14, 17, 23, 0) 58%,
            rgba(14, 17, 23, 0.85) 90%,
            rgb(14, 17, 23) 100%);
    }
    .rvl__scrim { display: none; }

    .rvl__stage {
        flex: 1;
        align-items: center;
        text-align: center;
        justify-content: flex-start;
        /* Geen extra top-padding: de tagline-marge (zie hieronder) plaatst de
           hele kolom net onder de truck-band. */
        padding-top: 0;
        padding-bottom: 3rem;
    }
    .rvl__stage > * { max-width: 100%; }

    /* Payoff ONDER de truck-band, altijd op één regel. */
    .rvl__tagline {
        margin-top: calc(var(--rvl-band) - 2.5rem);
        white-space: nowrap;
        letter-spacing: 0.03em;
        font-size: clamp(1.2rem, 6.1vw, 3rem);
    }

    /* Countdown nét onder de truck-band, met een VASTE tussenruimte (geen
       afhankelijkheid van de volledige schermhoogte meer). */
    .rvl__cd-group {
        margin-top: clamp(1.25rem, 3.5vw, 2rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 360px;
        align-items: stretch;
    }
    .rvl__countdown { justify-content: center; }
    .rvl__jump { justify-content: center; }
}

/* Scroll-cue onderaan de hero */
/* Subtiel blauw pijltje (CSS-getekend, geen icon-font nodig) dat zacht
   op en neer beweegt om naar beneden te scrollen. */
.rvl__scrollcue {
    /* Bewegend scroll-pijltje verwijderd op verzoek. */
    display: none;
    position: absolute;
    bottom: clamp(3.5rem, 9vh, 6rem);
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translateX(-50%);
    z-index: 3;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.25s ease;
    animation: rvlScrollBounce 2s ease-in-out infinite;
}
.rvl__scrollcue::after {
    content: '';
    position: absolute;
    top: 32%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid color-mix(in srgb, var(--color-primary, #1554FF) 72%, white);
    border-bottom: 2px solid color-mix(in srgb, var(--color-primary, #1554FF) 72%, white);
    transform: translate(-50%, -50%) rotate(45deg);
}
.rvl__scrollcue:hover { opacity: 0.85; }
@keyframes rvlScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TEASER REVEAL — SCROLLBAAR GEDEELTE (indeling)
   ============================================================ */
.rvl-block {
    position: relative;
    background: #0e1117;
    color: var(--color-text, #f0f0f2);
    padding: clamp(4rem, 10vh, 9rem) clamp(1.5rem, 4.5vw, 4.5rem);
}
/* Eerste blok ná de hero (de tijdlijn) sluit strakker aan: minder top-padding. */
#tijdlijn { padding-top: clamp(2rem, 5vh, 4rem); }
.rvl-wrap {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
}
.rvl-wrap--center { text-align: center; }
.rvl-wrap--center .rvl-block__lead { margin-left: auto; margin-right: auto; }
.rvl-wrap--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.rvl-wrap--triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.rvl-eyebrow {
    display: inline-block;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}
/* Brochure-signatuur: een ingetogen guillemet vóór elke sectielabel. */
.rvl-eyebrow::before {
    content: "\00BB";
    margin-right: 0.6em;
    opacity: 0.5;
    letter-spacing: 0;
}
.rvl-block__title {
    font-family: var(--font-accent, 'Bebas Neue'), sans-serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 3.6vw + 0.9rem, 4rem);
    line-height: 1.04;
    letter-spacing: 0.015em;
    color: #fff;
    margin: 0 0 1.75rem;
}
.rvl-block__lead {
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 46rem;
    margin: 0;
}
.rvl-block__text {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    max-width: 46rem;
    margin: 0;
}
.rvl-block__lead + .rvl-block__text { margin-top: 1.5rem; }

/* Geschiedenis-blok — verhaallijn + grid met afgeleverde Stratoren */
.rvl-block--history {
    background: #0e1117;
}
.rvl-history__subtitle {
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 1rem;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
/* Oorsprong-blok — PowerStar als bron van de torpedo. Tekst + één beeldslot. */
.rvl-origin__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 820px) {
    .rvl-origin__layout { grid-template-columns: 1fr; }
}
.rvl-origin__figure { margin: 0; }
/* Beeld-placeholder: rendert netjes tot de echte foto er is. */
.rvl-figph {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.rvl-figph img { width: 100%; height: 100%; object-fit: cover; }
.rvl-figph__label {
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    padding: 1rem;
}
.rvl-origin__caption {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Tijdlijn: één doorlopend verhaal (PowerStar → STRATOR 2.0) ─── */
.rvl-tl {
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.rvl-tl::before {
    content: '';
    position: absolute;
    top: 0.6em;
    bottom: 0.6em;
    left: 199px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18) 6%, rgba(255,255,255,0.18) 94%, transparent);
}
.rvl-tl__item {
    position: relative;
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 3rem);
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
}
.rvl-tl__item:last-child { padding-bottom: 0; }
.rvl-tl__item::before {
    content: '';
    position: absolute;
    top: 0.45em;
    left: 194px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-primary, #1554FF);
    box-shadow: 0 0 0 4px rgba(21, 84, 255, 0.16), 0 0 16px rgba(21, 84, 255, 0.5);
    z-index: 1;
}
.rvl-tl__marker {
    text-align: right;
    padding-right: 1.6rem;
}
.rvl-tl__year {
    font-family: var(--font-accent, 'Bebas Neue'), sans-serif;
    font-size: clamp(1.6rem, 1.2vw + 1.1rem, 2.4rem);
    line-height: 1;
    letter-spacing: 0.03em;
    color: #fff;
    white-space: nowrap;
}
.rvl-tl__item--stat .rvl-tl__year {
    font-size: clamp(3rem, 3vw + 1.6rem, 4.6rem);
    color: var(--color-primary, #1554FF);
}
.rvl-tl__content { max-width: 46rem; }
.rvl-tl__kicker {
    display: block;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.55rem;
}
.rvl-tl__title {
    font-family: var(--font-accent, 'Bebas Neue'), sans-serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.7rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: #fff;
    margin: 0 0 0.9rem;
}
.rvl-tl__text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0;
}
.rvl-tl__figure {
    margin: 1.5rem 0 0;
    max-width: 620px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0e1117;
}
.rvl-tl__figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2, .6, .2, 1);
}
.rvl-tl__figure:hover img { transform: scale(1.03); }

@media (max-width: 720px) {
    .rvl-tl::before { left: 6px; }
    .rvl-tl__item {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding-left: 30px;
        padding-bottom: clamp(2.25rem, 9vw, 3.25rem);
    }
    .rvl-tl__item::before { left: 1px; top: 0.3em; }
    .rvl-tl__marker { text-align: left; padding-right: 0; margin-bottom: 0.5rem; }
    .rvl-tl__item--stat .rvl-tl__year { font-size: clamp(2.6rem, 13vw, 3.4rem); }
}
@media (prefers-reduced-motion: reduce) {
    .rvl-tl__figure:hover img { transform: none; }
}

.rvl-history__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.rvl-history__item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-surface, #14181f);
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.07));
}
.rvl-history__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.4s ease, transform 0.5s ease;
}
.rvl-history__item:hover img {
    filter: grayscale(0);
    transform: scale(1.04);
}
.rvl-history__caption {
    margin: 1rem 0 0;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted, #7A7C82);
}
@media (max-width: 1100px) {
    .rvl-history__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .rvl-history__grid { grid-template-columns: 1fr; }
    .rvl-history__item:hover img { transform: none; }
}

/* Afsluitende CTA-blok — subtiel blauwe gloed bovenrand */
.rvl-block--cta {
    background: #0e1117;
}

/* Horizontale foto-strip */
.rvl-strip-section {
    position: relative;
    background: #0e1117;
    padding: clamp(4rem, 10vh, 9rem) 0;
}
.rvl-strip-section .rvl-wrap {
    padding: 0 clamp(1.5rem, 4.5vw, 4.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.rvl-strip {
    display: flex;
    gap: clamp(1rem, 2vw, 1.75rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 clamp(1.5rem, 4.5vw, 4.5rem) 0.5rem;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    /* Native scrollbalk overal verbergen — Safari/Mac toont 'm anders dan
       Windows. Voor identiek gedrag gebruiken we de eigen .rvl-strip-bar. */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.rvl-strip::-webkit-scrollbar { display: none; }
.rvl-strip.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.rvl-strip__item {
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 320px);
    margin: 0;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-surface, #14181f);
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.07));
}
.rvl-strip__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 1536;
    object-fit: cover;
    display: block;
    /* zodat sleep-scrollen werkt en de browser de afbeelding niet 'oppakt' */
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

/* Footerbalk onderaan de scrollpagina */
.rvl-foot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem clamp(1.5rem, 4.5vw, 4.5rem);
    background: #0e1117;
    font-family: var(--font-heading, 'Barlow Condensed'), sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 980px) {
    .rvl-wrap--triple { grid-template-columns: 1fr; gap: clamp(2.5rem, 7vw, 3.5rem); }
}
@media (max-width: 760px) {
    .rvl-wrap--split { grid-template-columns: 1fr; }
    .rvl-strip__item { width: 70vw; }
    .rvl-foot-bar { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}
