:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #4ade80;
    --accent-light: #4ade80;
    --accent-glow: rgba(0, 153, 99, 0.4);
    --gold: #fbbf24;
    --white: #ffffff;
    --grey-100: #f3f4f6;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--primary);
    color: var(--white);
    overflow-x: hidden;
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content link - visible on focus for keyboard navigation */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* iOS safe-area top cover — paints behind the translucent status bar /
   Dynamic Island so page content (hero) never peeks through. Sits above the
   nav (z=1000) and alert (z=1100) but below the noise overlay. */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background: var(--primary);
    pointer-events: none;
    z-index: 1200;
}

body.has-site-alert::after {
    background: #ea580c;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: env(safe-area-inset-top, 0px) max(5%, calc((100% - 1400px) / 2)) 0;
    height: calc(80px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.nav.scrolled {
    height: calc(65px + env(safe-area-inset-top, 0px));
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo-img {
    transform: scale(1.02);
}

.nav.scrolled .nav-logo-img {
    height: 42px;
}

.footer-text a {
    color: var(--grey-400);
}

.nav-cta {
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    color: var(--primary);
    padding: 12px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.is-active {
    color: var(--accent);
}

.nav-link.is-active::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--accent);
    margin-top: 4px;
}

/* Logo + event-date row */
.nav-brand-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    line-height: 1;
}

.nav-event-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--primary);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.nav-event-date::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.nav-event-date-short {
    display: none;
}

.nav.scrolled .nav-event-date,
.nav-scrolled-always .nav-event-date {
    font-size: 0.76rem;
    padding: 3px 9px;
}

/* Dropdown wrapper and toggle */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
    color: var(--accent);
}

.nav-caret {
    transition: transform 0.2s ease;
    color: currentColor;
}

.nav-item-dropdown:hover .nav-caret,
.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
    transform: rotate(180deg);
}

.nav-item-dropdown.is-active>.nav-dropdown-toggle {
    color: var(--accent);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    z-index: 1002;
}

.nav-item-dropdown:hover>.nav-dropdown,
.nav-item-dropdown:focus-within>.nav-dropdown,
.nav-dropdown-toggle[aria-expanded="true"]+.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--primary);
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
    background: var(--grey-100);
    color: var(--accent);
    outline: none;
}

.nav-dropdown-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-dropdown-meta {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    color: var(--grey-500);
    white-space: nowrap;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/naarden.webp') center/cover;
    filter: saturate(1.1) brightness(0.85);
}

.hero-bg-overlay {
    z-index: 1;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--primary) 0%, rgba(10, 14, 23, 0.75) 35%, rgba(10, 14, 23, 0.2) 70%, rgba(10, 14, 23, 0.1) 100%),
        linear-gradient(180deg, var(--primary) 0%, transparent 25%, transparent 100%);
    z-index: 1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease-out 1.2s both;
    cursor: pointer;
    text-decoration: none;
}

.scroll-indicator-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator-arrow svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}

/* Floating accent orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    bottom: 10%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(0, -50px) scale(1);
    }

    75% {
        transform: translate(-30px, -20px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 5% 120px;
}

.hero-left {
    max-width: 600px;
}

/* Announcement badge */
.announcement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.announcement-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.announcement-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

/* Hero headline */
.hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-headline .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subline {
    font-size: 1.25rem;
    color: var(--grey-400);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Event stats */
.event-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* CTA group */
.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 18px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* ==================== SOCIAL PROOF BAR ==================== */
.social-proof-bar {
    background: var(--secondary);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.social-proof-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.social-proof-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 40px;
    position: relative;
    transition: background 0.3s ease;
}

.proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.proof-item:hover {
    background: rgba(16, 185, 129, 0.03);
}

.proof-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.proof-item:hover .proof-icon {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow);
    border-color: var(--accent);
}

.proof-icon svg {
    width: 26px;
    height: 26px;
}

.proof-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.proof-text span {
    font-size: 0.85rem;
    color: var(--grey-400);
    letter-spacing: 0.5px;
}

/* ==================== ROUTE SECTION ==================== */
.route-section {
    padding: 140px 5%;
    background: var(--primary);
    position: relative;
    z-index: 20;
}

.route-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.section-tag::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
}

.route-section .section-title {
    color: var(--white);
}

.route-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-400);
    line-height: 1.7;
}

/* Route grid */
.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.route-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

.route-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.route-card:hover .route-card-bg {
    transform: scale(1.08);
    filter: saturate(1.2);
}

.route-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(10, 14, 23, 0.95) 100%);
    transition: all 0.5s ease;
}

.route-card:hover .route-card-overlay {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 30%, rgba(10, 14, 23, 0.98) 100%);
}

.route-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.route-card:hover .route-card-content {
    transform: translateY(0);
}

.route-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.route-card:hover .route-tag {
    opacity: 1;
}

.route-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.route-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover .route-name::after {
    width: 100%;
}

/* Route story */
.route-story {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
    position: relative;
}

.route-story::before {
    content: '"';
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.route-story p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--grey-400);
    font-style: italic;
}

.route-story strong {
    color: var(--white);
    font-weight: 600;
    font-style: normal;
}


/* ==================== DISTANCES SECTION ==================== */
.distances-section {
    padding: 0;
    background: var(--secondary);
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.distances-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.distances-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.distances-image {
    position: relative;
    overflow: hidden;
}

.distances-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--secondary));
    pointer-events: none;
}

.distances-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.1);
}

.distances-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    position: relative;
}

.distances-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.distances-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.distances-tag span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
}

.distances-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}

.distances-title .accent {
    color: var(--accent);
}

.distances-subtitle {
    font-size: 1rem;
    color: var(--grey-400);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 400px;
}

.distances-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.distance-card {
    flex: 1 1 calc(25% - 12px);
    min-width: 140px;
    position: relative;
    padding: 30px 20px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.distance-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.4s;
}

.distance-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.distance-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 40px -10px var(--accent-glow);
}

.distance-card:hover::after {
    transform: scaleX(1);
}

a.distance-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.distance-card-link:hover {
    text-decoration: none;
}

.distance-fraction {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.distance-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.85;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.distance-number.distance-icon {
    font-size: 3.5rem;
    -webkit-text-fill-color: initial;
    background: none;
}

.distance-card:hover .distance-number {
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.distance-card:hover .distance-number.distance-icon {
    background: none;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.distance-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.distance-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--white);
}

.distance-km {
    font-size: 0.85rem;
    color: var(--grey-400);
    font-weight: 500;
}

.distance-km strong {
    color: var(--accent);
    font-weight: 600;
}

.cta-section {
    padding: 140px 5%;
    background: var(--primary);
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.25;
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.25;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.35;
    }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 10px 20px;
    margin-bottom: 30px;
    animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.cta-badge svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.cta-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--grey-400);
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Signup form */
.signup-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    position: relative;
}

.signup-form::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.2), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input,
.form-select {
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-color: rgba(0, 0, 0, 0.4);
}

.form-select option {
    background: var(--primary);
    color: var(--white);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: var(--grey-400);
}

.form-submit {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: none;
    border-radius: var(--radius);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow), 0 0 60px -10px var(--accent-glow);
}

.form-submit:hover::before {
    left: 100%;
}

.form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.form-note {
    font-size: 0.85rem;
    color: var(--grey-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-note::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Form messages */
.form-message {
    padding: 18px 24px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.form-message.success::before {
    content: '✓';
    font-weight: 700;
    font-size: 1.2rem;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.form-message.error::before {
    content: '✕';
    font-weight: 700;
    font-size: 1.2rem;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overscroll-behavior: contain;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    display: flex;
}

.modal-image {
    flex: 0 0 45%;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.modal-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.1) 100%);
}

.modal-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--grey-500);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: var(--grey-100);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: left;
    margin-bottom: 24px;
}

.modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--primary);
}

.modal-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
}

/* Success state styling */
.modal-success {
    text-align: center;
    padding: 20px 0;
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-success-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-success-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-calendar-section {
    background: var(--grey-100);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 8px;
}

.modal-calendar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-calendar-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-calendar-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.modal-calendar-btn svg {
    width: 18px;
    height: 18px;
}

/* Modal form styles */
.modal form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal .form-input,
.modal .form-select {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-radius: var(--radius);
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
    color: var(--primary);
}

.modal .form-input::placeholder {
    color: var(--grey-400);
}

.modal .form-input:focus,
.modal .form-select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.modal .form-select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: var(--grey-100);
}

.modal .form-select option {
    background: var(--white);
    color: var(--primary);
}

.modal .form-submit {
    margin-top: 8px;
    padding: 18px;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal .form-submit svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.modal .form-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--grey-300);
}

.modal .form-note {
    font-size: 0.8rem;
    justify-content: center;
    color: var(--grey-500);
}

/* Distance field conditional display */
.form-group-distance {
    display: none;
    overflow: hidden;
}

.form-group-distance.visible {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.form-group-distance .form-select {
    margin-bottom: 0;
}

/* Extra fields for sponsor/meedenken */
.form-group-extra {
    margin-bottom: 12px;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 300px;
        transform: translateY(0);
    }
}

.form-extra-intro {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(74, 222, 128, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.form-group-extra .form-input {
    margin-bottom: 12px;
}

.form-group-extra .form-input:last-child {
    margin-bottom: 0;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.5;
}

/* Form message in modal */
.modal .form-message {
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    border-radius: var(--radius);
}

.modal .form-message.success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid var(--accent);
    color: #059669;
}

.modal .form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* ==================== MANIFEST ==================== */
.manifest-section {
    padding: 120px 5% 150px;
    background: var(--primary);
    position: relative;
    z-index: 10;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.manifest-bg {
    display: none;
    /* Using hero background instead */
}

/* Gradient overlay at bottom of manifest to transition to next section */
.manifest-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, var(--secondary) 100%);
    pointer-events: none;
    z-index: -1;
}

.manifest-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: #fffef8;
    padding: 55px 60px 50px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    /* Initial state for scroll reveal */
    opacity: 0;
    transform: translateY(60px) rotate(-1.5deg) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifest-container.reveal.visible {
    opacity: 1;
    transform: translateY(0) rotate(-1.5deg) scale(1);
}

/* Paper texture overlay */
.manifest-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
}

/* Subtle fold line */
.manifest-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(0, 0, 0, 0.03) 20%, rgba(0, 0, 0, 0.03) 80%, transparent 95%);
    pointer-events: none;
}

.manifest-container.reveal.visible:hover {
    transform: translateY(-5px) rotate(-0.5deg) scale(1);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 35px 100px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}

.manifest-date {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-bottom: 30px;
}

.manifest-greeting {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.manifest-text {
    text-align: left;
}

.manifest-text p {
    font-size: 1.05rem;
    color: var(--grey-800);
    line-height: 1.9;
    margin-bottom: 20px;
}

.manifest-text p:last-child {
    margin-bottom: 0;
}

.manifest-text .highlight-text {
    color: var(--primary);
    font-weight: 600;
}

.manifest-text .manifest-invitation {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: var(--grey-500);
    font-size: 0.95rem;
}

.manifest-text .manifest-invitation strong {
    font-style: normal;
    color: var(--primary);
}

.manifest-closing {
    margin-top: 35px;
    font-size: 1.05rem;
    color: var(--grey-800);
    line-height: 1.9;
}

.manifest-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.manifest-photo {
    flex-shrink: 0;
}

.manifest-photo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.signature-handwritten {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
    display: block;
}

.signature-name {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.signature-orgs {
    font-size: 0.85rem;
    color: var(--grey-500);
}

/* ==================== COMMUNITY/MEEHELPEN ==================== */
.community-section {
    padding: 100px 5%;
    background: var(--grey-100);
    position: relative;
    z-index: 20;
}

.community-section .section-title,
.community-section .section-tag {
    color: var(--primary);
}

.community-section .section-subtitle {
    color: var(--grey-500);
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.community-block {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.community-block:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.community-block.highlight {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.community-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--primary);
}

.community-text {
    font-size: 1rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-community {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
}

.btn-community-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-community-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-community-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-community-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: 80px 5%;
    background: var(--grey-100);
    position: relative;
    z-index: 20;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    background: var(--grey-50);
}

.faq-answer {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--grey-600);
    line-height: 1.7;
    font-size: 0.95rem;
    display: block;
}

/* ==================== PARTNERS ==================== */
.partners-section {
    padding: 80px 5%;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
    position: relative;
    z-index: 20;
}

.partners-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partners-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey-400);
    margin-bottom: 30px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner:hover {
    opacity: 1;
}

.partner img {
    height: 40px;
    width: auto;
}

.partner-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== SUBPAGES ==================== */
.subpage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--primary);
    padding: 15px 5%;
}

.subpage-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.subpage-header .header-logo {
    display: flex;
    align-items: center;
}

.subpage-header .header-logo-img {
    height: 36px;
    width: auto;
}

.subpage-header .btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.subpage-header .btn-header:hover {
    background: var(--white);
}

.subpage-main {
    padding-top: calc(70px + env(safe-area-inset-top, 0px));
    background: var(--white);
    min-height: 100vh;
}

.subpage-article {
    max-width: 100%;
}

.subpage-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
}

.subpage-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.subpage-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 5% 80px;
}

.subpage-breadcrumb {
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-bottom: 20px;
}

.subpage-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.subpage-breadcrumb a:hover {
    text-decoration: underline;
}

.subpage-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.subpage-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--grey-700);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-200);
}

.subpage-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.subpage-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-700);
    margin-bottom: 16px;
}

.subpage-content ul {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.subpage-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--grey-700);
}

.subpage-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.subpage-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.subpage-content a:hover {
    text-decoration: underline;
}

.subpage-extras-price {
    color: var(--primary);
    font-weight: 700;
    margin-left: 6px;
    white-space: nowrap;
}

/* Subpage extras grid (kaartjes met foto + link naar event-info zoom) */
.subpage-extras-intro {
    color: var(--grey-700);
    margin: 8px 0 18px !important;
}

.subpage-extras-intro a {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.subpage-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0 0 36px;
}

@media (min-width: 900px) {
    .subpage-extras-grid {
        gap: 32px;
        margin: 8px 0 48px;
    }

    .subpage-extra-photo {
        border-radius: 18px;
    }

    .subpage-extra-title {
        font-size: 1.4rem !important;
        margin-top: 18px !important;
    }

    .subpage-extra-meta {
        font-size: 0.92rem !important;
        margin-top: 6px !important;
    }

    .subpage-extra-price {
        font-size: 1.55rem !important;
        margin-top: 8px !important;
    }

    .subpage-extra-zoom-icon {
        width: 40px;
        height: 40px;
        bottom: 14px;
        right: 14px;
    }

    .subpage-extra-zoom-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Inline photo-break between text blocks (subpage-content) */
.subpage-photo {
    margin: 36px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px -16px rgba(15, 23, 42, 0.22), 0 1px 3px -1px rgba(15, 23, 42, 0.06);
}

.subpage-photo img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 900px) {
    .subpage-photo {
        margin: 48px 0;
    }
}

/* Hint-link onder lijsten naar event-info */
.subpage-list-link {
    margin: -12px 0 28px !important;
    font-size: 0.95rem;
}

.subpage-list-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.subpage-list-link a:hover {
    color: var(--accent);
}

/* Shirt-CTA onderaan afstandspagina's — photo-led, no card chrome */
.subpage-shirt-cta {
    display: grid;
    grid-template-columns: minmax(280px, 46%) 1fr;
    gap: 56px;
    align-items: center;
    margin: 64px 0 40px;
    padding: 0;
    background: transparent;
    border: 0;
}

.subpage-shirt-cta-photo {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: var(--grey-100);
    box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.28), 0 2px 6px -2px rgba(15, 23, 42, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    text-decoration: none !important;
}

.subpage-shirt-cta-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px -20px rgba(15, 23, 42, 0.36), 0 4px 10px -2px rgba(15, 23, 42, 0.08);
}

.subpage-shirt-cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.subpage-shirt-cta-photo:hover img {
    transform: scale(1.04);
}

.subpage-shirt-cta-body {
    max-width: 460px;
}

.subpage-shirt-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
}

.subpage-shirt-cta-tag::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.subpage-shirt-cta h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.05;
}

.subpage-shirt-cta p {
    color: var(--grey-700);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 18px;
    max-width: none;
}

.subpage-shirt-cta-meta {
    font-size: 0.95rem !important;
    color: var(--grey-600);
    margin: 0 0 24px !important;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.subpage-shirt-cta-meta strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.subpage-shirt-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #fff;
    background: var(--primary);
    text-decoration: none !important;
    padding: 13px 24px;
    border-radius: 999px;
    transition: background-color 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}

.subpage-shirt-cta-link:hover {
    background: var(--accent);
    color: var(--primary);
    gap: 14px;
    transform: translateY(-1px);
}

.subpage-shirt-cta-link::after {
    content: "→";
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 900px) {
    .subpage-shirt-cta {
        gap: 36px;
        margin: 48px 0 32px;
    }

    .subpage-shirt-cta h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 720px) {
    .subpage-shirt-cta {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .subpage-shirt-cta-photo {
        aspect-ratio: 4 / 3;
    }
}

@media (prefers-reduced-motion: reduce) {

    .subpage-shirt-cta-photo,
    .subpage-shirt-cta-photo img,
    .subpage-shirt-cta-link {
        transition: none !important;
    }

    .subpage-shirt-cta-photo:hover,
    .subpage-shirt-cta-photo:hover img,
    .subpage-shirt-cta-link:hover {
        transform: none;
    }
}

.subpage-extra-card {
    display: flex;
    flex-direction: column;
}

.subpage-extra-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--grey-100);
    border-radius: 14px;
    box-shadow: 0 8px 22px -12px rgba(15, 23, 42, 0.2), 0 1px 3px -1px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.subpage-extra-card:hover .subpage-extra-photo {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -14px rgba(15, 23, 42, 0.28), 0 2px 6px -1px rgba(15, 23, 42, 0.08);
}

.subpage-extra-zoom {
    position: absolute;
    inset: 0;
    display: block;
    cursor: zoom-in;
    border-radius: inherit;
    overflow: hidden;
    text-decoration: none !important;
}

.subpage-extra-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.subpage-extra-card:hover .subpage-extra-zoom img {
    transform: scale(1.05);
}

.subpage-extra-img--medaille {
    object-position: center 55%;
}

.subpage-extra-zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.62);
    color: #fff;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.subpage-extra-zoom-icon svg {
    width: 16px;
    height: 16px;
}

.subpage-extra-zoom:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.subpage-extra-zoom:focus-visible .subpage-extra-zoom-icon,
.subpage-extra-card:hover .subpage-extra-zoom-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.06);
}

.subpage-extra-title {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--primary);
    margin-top: 14px;
    line-height: 1.2;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

a.subpage-extra-title:hover {
    color: var(--accent);
}

.subpage-extra-meta {
    display: block;
    font-size: 0.82rem;
    color: var(--grey-600);
    margin-top: 4px;
}

.subpage-extra-price {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 6px;
}

@media (max-width: 720px) {
    .subpage-extras-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .subpage-extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    .subpage-extra-photo,
    .subpage-extra-zoom img,
    .subpage-extra-zoom-icon {
        transition: none !important;
    }

    .subpage-extra-card:hover .subpage-extra-photo,
    .subpage-extra-card:hover .subpage-extra-zoom img,
    .subpage-extra-card:hover .subpage-extra-zoom-icon {
        transform: none;
    }
}

.subpage-factoid {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100vw - 40px));
    margin: 40px 0 48px;
    background: var(--grey-100);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

.subpage-factoid.has-image {
    grid-template-columns: 45% 1fr;
    align-items: stretch;
}

.subpage-factoid-body {
    padding: 32px 40px;
}

@media (max-width: 700px) {
    .subpage-factoid {
        left: auto;
        transform: none;
        width: auto;
    }

    .subpage-factoid.has-image {
        grid-template-columns: 1fr;
    }

    .subpage-factoid-body {
        padding: 24px 24px;
    }
}

.subpage-factoid-figure {
    margin: 0;
    line-height: 0;
    background: var(--grey-200);
}

.subpage-factoid-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.subpage-factoid-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0px;
}

.subpage-factoid h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.15;
}

.subpage-factoid p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--grey-700);
    margin: 0 0 10px;
}

.subpage-factoid p:last-child {
    margin-bottom: 0;
}

.subpage-factoid a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.subpage-factoid a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .subpage-factoid-figure img {
        aspect-ratio: 16 / 10;
        min-height: 0;
        height: auto;
    }
}

.subpage-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--grey-100);
    border-radius: var(--radius);
    text-align: center;
}

.subpage-cta-price {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.subpage-cta-price small {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-top: 6px;
}

.subpage-cta h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.subpage-cta p {
    color: var(--grey-600);
    margin-bottom: 24px;
}

.subpage-cta .btn-primary,
.subpage-content .btn-primary {
    display: inline-flex;
    color: var(--primary);
    font-weight: 800;
}

.subpage-cta .btn-primary:hover,
.subpage-content .btn-primary:hover {
    background: var(--secondary);
}

.subpage-photo {
    margin: 40px 0;
}

.subpage-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* ==================== PERS / PRESS ==================== */
.press-page {
    background: var(--white);
}

/* Hero */
.press-hero {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 160px max(5%, calc((100% - 1200px) / 2)) 80px;
    overflow: hidden;
}

.press-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(74, 222, 128, 0.18), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(74, 222, 128, 0.10), transparent 50%);
    pointer-events: none;
}

.press-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.press-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 14px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.press-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.press-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 7rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.9;
    margin: 0 0 24px;
    color: var(--white);
}

.press-hero-title .accent {
    color: var(--accent);
    display: block;
}

.press-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin: 0 0 32px;
}

.press-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Direct contact bar (between hero and stats) */
.press-bar {
    background: var(--accent);
    color: var(--primary);
    padding: 20px max(5%, calc((100% - 1200px) / 2));
}

.press-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.press-bar-person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.press-bar-avatar {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.press-bar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% 30%;
    display: block;
}

.press-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.15;
}

.press-bar-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(15, 23, 42, 0.65);
}

.press-bar-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.press-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.press-bar-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.press-bar-cta svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .press-bar-inner {
        justify-content: center;
        text-align: center;
    }
    .press-bar-person {
        flex-direction: column;
        gap: 10px;
    }
    .press-bar-text {
        align-items: center;
    }
}

.press-hero-poster {
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    border-radius: 6px;
    overflow: hidden;
    max-width: 360px;
    justify-self: end;
}

.press-hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

.press-hero-poster img {
    display: block;
    width: 100%;
    height: auto;
}

.press-hero-poster-tag {
    position: absolute;
    top: 14px;
    left: -18px;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    transform: rotate(-6deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
    .press-hero {
        padding: 120px 5% 60px;
    }
    .press-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .press-hero-poster {
        justify-self: center;
        max-width: 280px;
    }
}

/* Split section: text + fact list */
.press-section-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.press-section-split .press-section-split-text > p:last-child {
    margin-bottom: 0;
}

.press-fact-list {
    position: sticky;
    top: 100px;
    padding: 28px 32px;
    background: var(--grey-100);
    border-radius: var(--radius);
    border-top: 4px solid var(--accent);
}

.press-fact-list-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey-500);
    margin: 0 0 16px;
}

.press-fact-list dl {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.press-fact-list dl > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.press-fact-list dl > div:last-child {
    border-bottom: none;
}

.press-fact-list dt {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-500);
    flex-shrink: 0;
}

.press-fact-list dd {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    text-align: right;
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .press-section-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .press-fact-list {
        position: static;
    }
}

/* Sections */
.press-section {
    padding: 80px max(5%, calc((100% - 1100px) / 2));
}

.press-section-alt {
    background: var(--grey-100);
}

.press-section-dark {
    background: var(--primary);
    color: var(--white);
}

.press-eyebrow {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 14px;
}

.press-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0 0 28px;
    color: var(--primary);
}

.press-section-dark .press-h2 {
    color: var(--white);
}

.press-section p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--grey-700, #374151);
    max-width: 760px;
    margin: 0 0 18px;
}

.press-section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

/* Featured poster section */
.press-poster-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.press-poster-feature-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.press-poster-feature-img img {
    display: block;
    width: 100%;
    height: auto;
}

.press-poster-feature-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 16px;
    color: var(--primary);
}

.press-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.press-download-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.press-download-btn-ghost {
    background: transparent;
    color: var(--primary);
}

.press-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .press-poster-feature {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px;
    }
}

/* Asset gallery */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin: 28px 0 0;
}

.press-grid-logos {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.press-asset {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.press-asset:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.press-asset-img {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--grey-100);
    position: relative;
}

.press-asset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.press-asset:hover .press-asset-img img {
    transform: scale(1.06);
}

.press-asset-img.is-logo {
    background: var(--white);
}

.press-asset-img.is-logo img {
    width: auto;
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
}

.press-asset-img.is-dark {
    background: var(--primary);
}

.press-asset-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    pointer-events: none;
}

.press-asset:hover .press-asset-overlay {
    opacity: 1;
}

.press-asset-overlay-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-left: auto;
}

.press-asset-overlay-icon svg {
    width: 18px;
    height: 18px;
}

.press-asset-body {
    padding: 14px 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.press-asset-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.press-asset-meta {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

.press-asset-group {
    margin-top: 48px;
}

.press-asset-group:first-of-type {
    margin-top: 0;
}

.press-asset-group-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.press-asset-group-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin: 0;
}

.press-asset-group-note {
    font-size: 0.85rem;
    color: var(--grey-500);
}

/* Pull quote */
.press-quote-large {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.press-quote-large::before {
    content: "\201C";
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 8rem;
    line-height: 0.7;
    color: var(--accent);
    margin-bottom: 12px;
}

.press-quote-large p {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.3;
    color: var(--white);
    max-width: none;
    margin: 0 auto 24px;
}

.press-quote-large cite {
    display: inline-block;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

/* Boilerplate */
.press-boilerplate {
    position: relative;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.92);
    padding: 28px 32px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
}

.press-boilerplate::before {
    content: "BOILERPLATE";
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 4px;
}

.press-boilerplate p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: none;
}

.press-boilerplate a {
    color: var(--accent);
    text-decoration: underline;
}

/* Contact CTA */
.press-contact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: var(--accent);
    color: var(--primary);
    padding: 48px;
    border-radius: var(--radius);
}

.press-contact h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 8px;
    color: var(--primary);
}

.press-contact p {
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
}

.press-contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin: 6px 0 8px !important;
    font-size: 0.95rem;
    font-weight: 600;
}

.press-contact-channels a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid rgba(15, 23, 42, 0.25);
    transition: border-color 0.2s ease;
}

.press-contact-channels a:hover {
    border-color: var(--primary);
}

.press-contact-channels span {
    color: rgba(15, 23, 42, 0.4);
}

.press-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.press-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.press-contact-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.press-contact-btn-ghost {
    background: transparent;
    color: var(--primary);
}

.press-contact-btn-ghost:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 700px) {
    .press-contact {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }
    .press-contact-buttons {
        justify-content: center;
    }
}

.subpage-photo figcaption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--grey-500);
    font-style: italic;
}

.subpage-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 56px 0;
    width: min(calc(100vw - 40px), 1140px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.subpage-photo-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.subpage-photo-grid>* {
    margin: 0;
}

.subpage-photo-grid img,
.subpage-photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.subpage-photo-placeholder {
    background: var(--grey-100);
    border: 2px dashed var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-500);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
}

/* ===== MEEHELPEN PAGE CUSTOM DESIGN ===== */

/* Hero with overlay content */
.meehelpen-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
}

.meehelpen-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meehelpen-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.9) 100%);
}

.meehelpen-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 80px;
    max-width: 900px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.meehelpen-hero-eyebrow {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    margin-bottom: 20px;
    align-self: flex-start;
    border-radius: var(--radius);
}

.meehelpen-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    max-width: 800px;
}

.meehelpen-hero-title .accent {
    color: var(--accent);
}

.meehelpen-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 560px;
}

/* Impact stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e5e7eb;
    margin: 60px 0;
    border: 1px solid #e5e7eb;
}

.impact-stat {
    background: var(--white);
    padding: 32px 20px;
    text-align: center;
}

.impact-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-stat-num .plus {
    color: var(--accent);
}

.impact-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-500);
    font-weight: 600;
}

/* Role cards */
.role-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.role-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 28px 24px;
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.role-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.role-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.role-card-icon svg {
    width: 22px;
    height: 22px;
}

.role-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 8px;
}

.role-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-600);
    margin: 0;
}

/* Dark "rewards" section that breaks the white flow */
.rewards-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 5%;
    margin: 80px calc(-50vw + 50%) 80px;
    position: relative;
    overflow: hidden;
}

.rewards-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15), transparent 70%);
    z-index: 1;
}

.rewards-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.rewards-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1;
}

.rewards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
    list-style: none;
    padding: 0;
}

.rewards-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.5;
}

.rewards-list li::before {
    display: none;
}

.rewards-list svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-top: 2px;
}

/* Pull quote */
.pull-quote {
    margin: 60px 0;
    padding: 40px 32px;
    border-left: 4px solid var(--accent);
    background: var(--grey-100);
}

.pull-quote blockquote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    color: var(--primary);
    line-height: 1.3;
    margin: 0 0 16px;
}

.pull-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Facts box next to photo */
.facts-with-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 60px 0;
    align-items: stretch;
}

.facts-box {
    background: var(--grey-100);
    padding: 32px;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
}

.facts-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin: 0 0 16px;
}

.facts-box dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.facts-box dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 2px;
}

.facts-box dd {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.4;
}

.facts-with-photo-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

/* Signup steps */
.signup-steps {
    display: grid;
    gap: 16px;
    margin: 32px 0;
    counter-reset: step;
}

.signup-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    align-items: flex-start;
}

.signup-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.signup-step-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin: 0 0 6px;
}

.signup-step-content p {
    margin: 0;
    color: var(--grey-600);
    line-height: 1.5;
}

/* Organizer note */
.organizer-note {
    margin: 60px 0;
    padding: 40px 32px;
    background: var(--grey-100);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}

.organizer-note p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.4;
    margin: 0 0 16px;
}

.organizer-note .signature-handwritten {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .facts-with-photo {
        grid-template-columns: 1fr;
    }

    .facts-with-photo-img {
        min-height: 240px;
        max-height: 320px;
    }

    .signup-step {
        padding: 20px;
    }
}

/* Quote + photo side-by-side */
.quote-with-photo {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin: 60px 0;
    align-items: stretch;
}

.quote-with-photo .pull-quote {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-with-photo-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

@media (max-width: 768px) {
    .quote-with-photo {
        grid-template-columns: 1fr;
    }

    .quote-with-photo-img {
        min-height: 260px;
        max-height: 320px;
    }
}

/* Wide photo strip */
.photo-strip {
    margin: 0 calc(-50vw + 50%);
    height: 50vh;
    min-height: 320px;
    max-height: 500px;
    position: relative;
    overflow: hidden;
}

.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Partner cards */
.partner-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 32px 0;
}

.partner-tier {
    padding: 20px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.partner-tier.gold {
    border-left-color: var(--gold);
}

.partner-tier h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 6px;
}

.partner-tier p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--grey-600);
    margin: 0;
}

/* Big CTA */
.meehelpen-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--accent) 0%, #34c76e 100%);
    border-radius: var(--radius);
    text-align: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.meehelpen-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.meehelpen-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.meehelpen-cta>* {
    position: relative;
    z-index: 2;
}

.meehelpen-cta h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
}

.meehelpen-cta p {
    color: var(--primary);
    opacity: 0.85;
    margin-bottom: 28px;
    font-size: 1rem;
}

.meehelpen-cta .btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meehelpen-cta .btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
}

.meehelpen-cta .btn-primary svg {
    width: 18px;
    height: 18px;
}

/* Section eyebrow */
.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    margin-top: 40px;
}

.section-eyebrow+h2 {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .role-cards,
    .partner-tiers {
        grid-template-columns: 1fr;
    }

    .rewards-list {
        grid-template-columns: 1fr;
    }

    .rewards-section {
        padding: 56px 5%;
        margin: 56px calc(-50vw + 50%) 56px;
    }

    .rewards-section h2 {
        font-size: 2rem;
    }

    .meehelpen-hero {
        height: 60vh;
        min-height: 420px;
    }

    .meehelpen-hero-content {
        padding: 0 5% 48px;
    }

    .meehelpen-cta {
        padding: 48px 24px;
    }

    .meehelpen-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .subpage-photo-grid {
        grid-template-columns: 1fr;
    }

    .impact-stat-num {
        font-size: 2.2rem;
    }

    .pull-quote {
        padding: 28px 20px;
    }

    .pull-quote blockquote {
        font-size: 1.3rem;
    }
}

/* ==================== FOOTER ==================== */
footer {
    padding: 50px 5% 40px;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    z-index: 20;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--grey-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    font-size: 0.85rem;
    color: var(--grey-400);
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--grey-400);
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--grey-500);
    margin-top: 10px;
}

.footer-legal a {
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--grey-300);
}

/* ==================== LEGAL PAGES ==================== */
.nav-scrolled-always {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.nav-scrolled-always .nav-logo-img {
    height: 42px;
}

.legal-page {
    padding: 140px 20px 80px;
    background: var(--white);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    color: var(--grey-800);
}

.legal-container h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey-100);
}

.legal-container section {
    margin-bottom: 40px;
}

.legal-container h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--grey-800);
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--grey-800);
}

.legal-container a {
    color: var(--accent);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container strong {
    font-weight: 600;
    color: var(--primary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--grey-100);
}

.cookie-table th {
    background: var(--grey-100);
    font-weight: 600;
    color: var(--primary);
}

.cookie-table td {
    color: var(--grey-800);
}

.cookie-table code {
    background: var(--grey-100);
    padding: 2px 6px;
    border-radius: var(--radius);
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary);
}

.cookie-note {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-top: 15px;
    font-style: italic;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    /* ===== NAVIGATION ===== */
    .nav {
        height: calc(65px + env(safe-area-inset-top, 0px));
        padding: env(safe-area-inset-top, 0px) 20px 0;
        gap: 12px;
    }

    .nav-brand-wrap {
        gap: 10px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .nav-logo-img {
        height: 38px;
        flex: 0 0 auto;
    }

    .nav.scrolled .nav-logo-img {
        height: 34px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-buttons {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: calc(80px + env(safe-area-inset-top, 0px)) 30px calc(30px + env(safe-area-inset-bottom, 0px));
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
        transition: right 0.3s ease;
    }

    .nav-buttons.active {
        right: 0;
    }

    .nav-buttons .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-buttons .nav-cta {
        margin-top: 20px;
        text-align: center;
    }

    /* Event date in mobile nav: compact form */
    .nav-event-date {
        font-size: 0.7rem;
        letter-spacing: 1px;
        padding: 3px 8px;
    }

    .nav-event-date::before {
        width: 5px;
        height: 5px;
    }

    .nav-event-date-full {
        display: none;
    }

    .nav-event-date-short {
        display: inline;
    }

    /* Dropdown becomes inline accordion inside mobile drawer */
    .nav-item-dropdown {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-dropdown-toggle {
        padding: 16px 0;
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
        padding: 6px;
        margin-bottom: 12px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-item-dropdown:hover>.nav-dropdown,
    .nav-item-dropdown:focus-within>.nav-dropdown {
        display: none;
    }

    .nav-dropdown-toggle[aria-expanded="true"]+.nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-link {
        padding: 12px 14px;
        color: var(--white);
    }

    .nav-dropdown-link:hover,
    .nav-dropdown-link:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        color: var(--accent);
    }

    .nav-dropdown-meta {
        color: var(--grey-400);
    }

    /* ===== HERO ===== */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    /* On mobile, use absolute positioning instead of fixed for better iOS compatibility */
    .hero-bg {
        position: absolute;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-bg-overlay {
        background:
            linear-gradient(180deg, var(--primary) 0%, rgba(10, 14, 23, 0.65) 50%, rgba(10, 14, 23, 0.75) 100%);
    }

    .hero-bg-image {
        animation: none;
        transform: none;
    }

    .hero-orb {
        display: none;
    }

    .announcement {
        margin-bottom: 16px;
        padding: 6px 12px;
    }

    .announcement-dot {
        width: 6px;
        height: 6px;
    }

    .announcement-text {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .hero-headline {
        font-size: 2.1rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-subline {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
        color: var(--grey-300);
    }

    .event-stats {
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        margin-top: 4px;
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    /* ===== SOCIAL PROOF BAR ===== */
    .social-proof-bar {
        padding: 0;
    }

    .social-proof-content {
        grid-template-columns: 1fr;
    }

    .proof-item {
        padding: 20px;
        gap: 16px;
    }

    .proof-item:not(:last-child)::after {
        display: none;
    }

    .proof-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .proof-icon {
        width: 44px;
        height: 44px;
    }

    .proof-icon svg {
        width: 20px;
        height: 20px;
    }

    .proof-text strong {
        font-size: 1.2rem;
    }

    .proof-text span {
        font-size: 0.8rem;
    }

    /* ===== ROUTE SECTION ===== */
    .route-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .section-tag::before,
    .section-tag::after {
        width: 20px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .route-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .route-card {
        aspect-ratio: 1;
    }

    .route-card-content {
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .route-tag {
        font-size: 0.5rem;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .route-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .route-story {
        margin-top: 32px;
    }

    .route-story::before {
        font-size: 4rem;
        top: -30px;
    }

    .route-story p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* ===== DISTANCES SECTION ===== */
    .distances-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .distances-image {
        height: 280px;
    }

    .distances-image::after {
        display: none;
    }

    .distances-info {
        padding: 40px 20px;
    }

    .distances-tag span {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .distances-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .distances-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .distances-cards {
        flex-direction: row;
        gap: 12px;
    }

    .distance-card {
        padding: 24px 16px 20px;
    }

    .distance-number {
        font-size: 3rem;
    }

    .distance-unit {
        font-size: 1rem;
        margin-top: 4px;
    }

    .distance-name {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .distance-km {
        font-size: 0.75rem;
    }

    /* ===== MANIFEST ===== */
    .manifest-section {
        padding: 60px 20px 80px;
        min-height: auto;
        padding-top: 60px;
        background: var(--primary);
    }

    .manifest-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(180deg, transparent 0%, var(--primary) 100%);
        pointer-events: none;
    }

    .manifest-section::after {
        display: none;
    }

    .manifest-container {
        padding: 40px 30px;
        transform: translateY(40px) rotate(0deg) scale(0.98);
    }

    .manifest-container.reveal.visible {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    .manifest-container.reveal.visible:hover {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    .manifest-date {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .manifest-greeting {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .manifest-text p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .manifest-closing {
        margin-top: 28px;
        font-size: 0.95rem;
    }

    .manifest-signature {
        margin-top: 32px;
        gap: 16px;
    }

    .manifest-photo img {
        width: 60px;
        height: 60px;
    }

    .signature-handwritten {
        font-size: 1.8rem;
    }

    .signature-name {
        font-size: 0.9rem;
    }

    .signature-orgs {
        font-size: 0.8rem;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-badge {
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .cta-badge svg {
        width: 16px;
        height: 16px;
    }

    .cta-badge span {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .signup-form {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-input,
    .form-select {
        padding: 16px;
        font-size: 0.95rem;
    }

    .form-select {
        margin-bottom: 12px !important;
    }

    .form-submit {
        padding: 18px;
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .form-footer {
        margin-top: 20px;
        padding-top: 20px;
    }

    .form-note {
        font-size: 0.75rem;
    }

    /* ===== COMMUNITY/MEEHELPEN ===== */
    .community-section {
        padding: 60px 20px;
    }

    .community-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .community-block {
        padding: 32px 24px;
    }

    .community-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .community-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .community-text {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .btn-community {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* ===== PARTNERS ===== */
    .partners-section {
        padding: 40px 20px;
    }

    .partners-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .partners-grid {
        gap: 24px;
    }

    .partner img {
        height: 32px;
    }

    .partner-name {
        font-size: 0.9rem;
    }

    /* ===== FOOTER ===== */
    footer {
        padding: 32px 20px;
    }

    .footer-contact {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    /* ===== MODAL ===== */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal {
        max-width: 100%;
        max-height: 90vh;
        max-height: 90dvh;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        transform: translateY(100%);
        flex-direction: column;
    }

    .modal-image {
        flex: 0 0 140px;
        min-height: 140px;
    }

    .modal-content {
        padding: 24px 24px 32px;
        max-height: calc(90vh - 140px);
        max-height: calc(90dvh - 140px);
    }

    .modal-overlay.active .modal {
        transform: translateY(0);
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .modal-header {
        margin-bottom: 20px;
        text-align: center;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .modal .form-input,
    .modal .form-select {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents iOS zoom */
        margin-bottom: 10px;
        background: var(--grey-100);
        border: 1px solid var(--grey-300);
        color: var(--primary);
    }

    .modal .form-submit {
        padding: 16px;
        font-size: 0.9rem;
        margin-top: 6px;
    }

    .modal .form-footer {
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid var(--grey-300);
    }

    .modal .form-note {
        font-size: 0.75rem;
        color: var(--grey-500);
    }

    /* Success state mobile */
    .modal-success-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .modal-success-icon svg {
        width: 32px;
        height: 32px;
    }

    .modal-success-title {
        font-size: 1.5rem;
    }

    .modal-success-text {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .modal-calendar-section {
        padding: 16px;
    }

    .modal-calendar-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .modal-calendar-btn {
        justify-content: center;
        width: 100%;
        padding: 10px 8px;
        font-size: 0.75rem;
    }
}

/* ==================== FASE 2 — HOMEPAGE REFRESH ==================== */

/* Announcement as anchor */
a.announcement {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.announcement:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.55);
    transform: translateY(-1px);
}

/* Subtle countdown in hero */
.hero-countdown {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--accent);
    margin: 10px 0 20px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    opacity: 0.92;
}

.hero-countdown-days {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    padding: 0 2px;
}

/* Manifest "Lees het hele verhaal" link */
.manifest-more {
    margin-top: 28px;
    text-align: center;
}

.manifest-more-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.manifest-more-link:hover {
    border-bottom-color: var(--accent);
}

/* Meehelpen "Meer manieren" link */
.community-more {
    margin: 40px 0 0;
    text-align: center;
}

.community-more-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.community-more-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Route card placeholder (no image yet) */
.route-card-bg-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 25%, rgba(74, 222, 128, 0.12), transparent 55%),
        linear-gradient(160deg, #1f2a3e 0%, #0f1524 100%);
}

.route-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0;
}

/* News section */
.news-section {
    padding: 90px 5% 90px;
    background: var(--grey-100);
}

.news-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.35);
}

.news-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 10px;
}

.news-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1.15;
    color: var(--primary);
    margin: 0 0 12px;
}

.news-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--grey-500);
    margin: 0 0 16px;
    flex-grow: 1;
}

.news-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    text-decoration: none;
    align-self: flex-start;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.news-link:hover,
.news-card-link:hover .news-link {
    border-bottom-color: var(--accent);
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .hero-countdown {
        font-size: 1.15rem;
    }

    .hero-countdown-days {
        font-size: 1.3rem;
    }
}

/* ==================== EVENT INFO PAGE ==================== */

.event-subnav {
    position: sticky;
    top: 80px;
    z-index: 50;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
    margin: 32px -5% 48px;
    padding: 12px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-subnav a {
    color: var(--primary);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.event-subnav a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.event-section {
    padding: 24px 0 40px;
    border-top: 1px solid var(--grey-100);
    scroll-margin-top: 140px;
}

.event-section:first-of-type {
    border-top: none;
}

.event-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    margin: 8px 0 16px;
}

.event-section h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    margin: 24px 0 10px;
}

/* Timeline */
.event-timeline {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 10px;
}

.event-timeline li {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: baseline;
    gap: 20px;
    padding: 12px 16px;
    background: var(--grey-100);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.subpage-content .event-timeline li {
    padding-left: 16px;
}

.subpage-content .event-timeline li::before {
    display: none;
}

.event-time {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.event-activity {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem;
    color: var(--grey-800);
}

/* FAQ */
.event-faq {
    border-bottom: 1px solid var(--grey-100);
    padding: 16px 0;
}

.event-faq summary {
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    list-style: none;
    position: relative;
    padding-right: 28px;
    transition: color 0.2s ease;
}

.event-faq summary::-webkit-details-marker {
    display: none;
}

.event-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.event-faq[open] summary::after {
    content: '–';
}

.event-faq summary:hover {
    color: var(--accent);
}

.event-faq p {
    margin: 12px 0 4px;
    color: var(--grey-800);
    line-height: 1.55;
}

.event-todo {
    background: var(--grey-100);
    border-left: 3px solid var(--grey-300);
    padding: 14px 18px;
    color: var(--grey-500);
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .event-subnav {
        top: 65px;
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .event-timeline li {
        grid-template-columns: 64px 1fr;
        gap: 12px;
    }
}

/* ==================== EVENT INFO: extended components ==================== */

/* Sticky submenu — in-page section navigation */
.event-submenu {
    position: sticky;
    top: 65px;
    z-index: 50;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.event-submenu-list {
    list-style: none;
    margin: 0;
    padding: 0 max(5%, calc((100% - 1040px) / 2));
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.event-submenu-list::-webkit-scrollbar {
    display: none;
}

.event-submenu-list li {
    flex-shrink: 0;
}

.event-submenu-list li::before {
    content: none;
}

.event-submenu-list a {
    display: inline-block;
    padding: 16px 14px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-600);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.event-submenu-list a:hover {
    color: var(--primary);
}

.event-submenu-list a.is-active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.event-info-page .event-section {
    scroll-margin-top: 125px;
}

@media (max-width: 720px) {
    .event-submenu {
        top: 65px;
    }

    .event-submenu-list {
        padding: 0 5%;
    }

    .event-submenu-list a {
        padding: 14px 12px 12px;
        font-size: 0.88rem;
    }
}

.event-info-page .subpage-content {
    max-width: 1040px;
}

.event-info-page .subpage-intro,
.event-info-page .event-section>p,
.event-info-page .event-section>h3,
.event-info-page .event-section>h3+p,
.event-info-page .event-section>ul {
    max-width: 760px;
}

/* Key-facts strip */
.event-keyfacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 8px 0 48px;
    padding: 28px 20px;
    background: linear-gradient(145deg, var(--grey-100) 0%, #fafbfc 100%);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.event-keyfacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #10b981);
}

.event-keyfact {
    text-align: center;
    padding: 8px 16px;
    border-right: 1px solid #e5e7eb;
}

.event-keyfact:last-child {
    border-right: 0;
}

.event-keyfact-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
}

.event-keyfact-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    stroke-width: 2;
}

.event-keyfact-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.event-keyfact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--grey-500);
}

@media (max-width: 768px) {
    .event-keyfacts {
        grid-template-columns: repeat(2, 1fr);
        padding: 22px 10px;
    }

    .event-keyfact {
        padding: 14px 10px;
        border-right: 0;
    }

    .event-keyfact:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }

    .event-keyfact:nth-child(1),
    .event-keyfact:nth-child(2) {
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Afstanden-grid met link naar afstandpagina */
.event-distance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0 8px;
    max-width: 100%;
}

.event-distance-card {
    display: block;
    padding: 24px 22px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.event-distance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.event-distance-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    text-decoration: none;
}

.event-distance-card:hover::before {
    transform: scaleX(1);
}

.event-distance-time {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    color: #047857;
    background: rgba(74, 222, 128, 0.15);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.event-distance-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 4px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.event-distance-card p {
    color: var(--grey-600);
    margin: 0 0 18px;
    font-size: 0.98rem;
    line-height: 1.4;
}

.event-distance-card p::before {
    display: none;
}

.event-distance-price {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.event-distance-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
}

@media (max-width: 900px) {
    .event-distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .event-distance-grid {
        grid-template-columns: 1fr;
    }
}

/* Info-blokken (Vóór / Tijdens / Na) */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 8px;
    max-width: 100%;
}

.event-info-block {
    padding: 26px 24px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.event-info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.event-info-icon {
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    stroke-width: 2;
}

.event-info-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin: 0 0 8px;
}

.event-info-block p {
    font-size: 0.92rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0;
}

.event-info-block p::before {
    display: none;
}

/* Extras tile */
.event-finisher-pack {
    display: grid;
    grid-template-columns: minmax(280px, 44%) 1fr;
    gap: 48px;
    align-items: center;
    margin: 0;
    background: transparent;
}

.event-finisher-pack-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--grey-100);
    border-radius: 20px;
    box-shadow: 0 12px 32px -14px rgba(15, 23, 42, 0.22), 0 2px 6px -2px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.event-finisher-pack:hover .event-finisher-pack-photo {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -16px rgba(15, 23, 42, 0.32), 0 4px 10px -2px rgba(15, 23, 42, 0.1);
}

.event-finisher-pack-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-finisher-pack:hover .event-finisher-pack-photo img {
    transform: scale(1.05);
}

.event-finisher-pack-num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 999px;
    text-transform: uppercase;
    line-height: 1;
}

.event-finisher-pack-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: radial-gradient(circle at 50% 45%, rgba(74, 222, 128, 0.28) 0%, rgba(74, 222, 128, 0.08) 55%, rgba(74, 222, 128, 0.02) 100%);
}

.event-finisher-pack-photo--placeholder svg {
    width: 44%;
    max-width: 170px;
    height: auto;
    opacity: 0.68;
    filter: drop-shadow(0 6px 12px rgba(74, 222, 128, 0.25));
}

.event-finisher-pack-content {
    padding: 4px 0;
}

.event-finisher-pack-content>h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 14px 0 18px;
}

.event-finisher-pack-meta {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-600);
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 4px;
}

@media (max-width: 720px) {
    .event-finisher-pack {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-finisher-pack-photo {
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .event-finisher-pack-photo,
    .event-finisher-pack-photo img,
    .event-finisher-pack-zoom-icon,
    .event-zoom-lightbox,
    .event-zoom-frame {
        transition: none !important;
    }

    .event-finisher-pack:hover .event-finisher-pack-photo,
    .event-finisher-pack:hover .event-finisher-pack-photo img {
        transform: none;
    }
}

/* Zoom-trigger op de foto */
.event-finisher-pack-zoom {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
    cursor: zoom-in;
    border-radius: inherit;
    overflow: hidden;
}

.event-finisher-pack-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-finisher-pack-img--medaille {
    object-position: center 55%;
}

.event-finisher-pack:hover .event-finisher-pack-zoom img {
    transform: scale(1.05);
}

.event-finisher-pack-zoom-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.62);
    color: #fff;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.event-finisher-pack-zoom-icon svg {
    width: 18px;
    height: 18px;
}

.event-finisher-pack:hover .event-finisher-pack-zoom-icon,
.event-finisher-pack-zoom:focus-visible .event-finisher-pack-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.event-finisher-pack-zoom:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

@media (hover: none) {
    .event-finisher-pack-zoom-icon {
        opacity: 1;
        transform: none;
    }
}

/* Lightbox via :target */
.event-zoom-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    background: rgba(8, 14, 24, 0.88);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.event-zoom-lightbox:target {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.event-zoom-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    cursor: zoom-out;
}

.event-zoom-frame {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 100%);
    max-height: 90vh;
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-zoom-lightbox:target .event-zoom-frame {
    transform: scale(1);
}

.event-zoom-frame img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.event-zoom-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    border-radius: 999px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.event-zoom-close:hover,
.event-zoom-close:focus-visible {
    transform: scale(1.05);
    background: var(--accent);
    color: #fff;
    outline: none;
}

.event-zoom-close svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 720px) {
    .event-zoom-lightbox {
        padding: 6vh 16px;
    }

    .event-zoom-close {
        top: -14px;
        right: -8px;
    }
}

.event-finisher-pack-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #047857;
    background: rgba(74, 222, 128, 0.2);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.event-finisher-pack h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin: 0 0 12px;
    line-height: 1.1;
}

.event-finisher-pack p {
    color: var(--grey-700);
    line-height: 1.7;
    margin: 0 0 10px;
    max-width: none;
}

.event-finisher-pack-note {
    font-size: 0.9rem;
    color: var(--grey-600);
    font-style: italic;
    margin-top: 6px !important;
}

.event-finisher-pack-price {
    font-size: 1rem;
    color: var(--grey-800);
    margin: 12px 0 4px !important;
}

.event-finisher-pack-price strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Extras stacked grid (full-width rows) */
.event-finisher-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    margin: 28px 0 40px;
}

.event-finisher-grid .event-finisher-pack {
    margin: 0;
}

@media (max-width: 720px) {
    .event-finisher-grid {
        gap: 40px;
    }
}

/* Location card (start/finish + map placeholder) */
.event-location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin: 16px 0 32px;
    padding: 30px 32px;
    background: linear-gradient(145deg, var(--grey-100) 0%, #fafbfc 100%);
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
}

.event-location-card-content {
    display: flex;
    flex-direction: column;
}

.event-location-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #047857;
    background: rgba(74, 222, 128, 0.2);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.event-location-card-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    line-height: 1.15;
}

.event-location-address {
    font-size: 1.05rem !important;
    color: var(--primary) !important;
    font-weight: 500;
    margin-bottom: 12px !important;
}

.event-location-card-content p {
    color: var(--grey-700);
    line-height: 1.65;
    margin: 0 0 14px;
    max-width: none;
}

.event-location-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-top: auto;
    padding: 11px 22px;
    background: var(--accent);
    color: var(--primary) !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.event-location-maps-link:hover {
    background: var(--primary);
    color: var(--accent) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.event-map-placeholder {
    background: var(--white);
    border: 2px dashed #d1d5db;
    border-radius: var(--radius);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.event-map-embed {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    min-height: 280px;
    background: var(--grey-100);
}

.event-map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.event-map-placeholder-inner {
    color: var(--grey-500);
}

.event-map-placeholder-icon {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.event-map-placeholder p {
    margin: 0 !important;
    font-size: 0.92rem;
    color: var(--grey-500);
    font-style: italic;
    max-width: none;
}

@media (max-width: 720px) {
    .event-location-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .event-map-placeholder {
        min-height: 160px;
    }

    .event-map-embed {
        min-height: 220px;
    }
}

/* Parking cards */
.event-parking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 14px 0 20px;
}

.event-parking-card {
    position: relative;
    padding: 22px 20px 20px 68px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.event-parking-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.event-parking-label {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    letter-spacing: 0;
}

.event-parking-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.event-parking-card p {
    font-size: 0.9rem;
    color: var(--grey-600);
    margin: 0 0 10px;
    line-height: 1.45;
    max-width: none;
}

.event-parking-card a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

@media (max-width: 720px) {
    .event-parking-grid {
        grid-template-columns: 1fr;
    }
}

/* Travel time cards */
.event-travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 14px 0 28px;
}

.event-travel-card {
    padding: 18px 20px 16px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.event-travel-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.event-travel-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.event-travel-modes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-travel-modes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--grey-700);
    line-height: 1.3;
}

.event-travel-modes svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
    color: var(--accent);
}

@media (max-width: 900px) {
    .event-travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .event-travel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .event-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== BIG DATE BANNER ==================== */

.date-banner {
    position: relative;
    padding: 56px 5%;
    background: linear-gradient(115deg, var(--primary) 0%, #1a2540 55%, #10b981 160%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.date-banner::before,
.date-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
}

.date-banner::before {
    background:
        radial-gradient(ellipse at 15% 30%, rgba(74, 222, 128, 0.22), transparent 55%),
        radial-gradient(ellipse at 85% 70%, rgba(16, 185, 129, 0.18), transparent 60%);
}

.date-banner::after {
    background-image:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 160px);
    opacity: 0.6;
}

.date-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.date-banner-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 22px 14px;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    line-height: 1;
    background: rgba(16, 185, 129, 0.08);
    text-align: center;
}

.date-banner-day {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.date-banner-month {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 6px;
}

.date-banner-copy {
    font-family: 'Barlow Condensed', sans-serif;
}

.date-banner-eyebrow {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 6px;
}

.date-banner-headline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.08;
    margin: 0;
    color: var(--white);
}

.date-banner-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 8px 0 0;
}

.date-banner-cta {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.date-banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(74, 222, 128, 0.35);
}

/* ==================== STATS COUNTER ==================== */

.stats-counter-section {
    padding: 70px 5%;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}

.stats-counter-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-counter {
    text-align: center;
    padding: 20px 12px;
    position: relative;
}

.stat-counter+.stat-counter::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--grey-100);
}

.stat-counter-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stat-counter-number .stat-counter-unit {
    font-size: 1.6rem;
    color: var(--accent);
    margin-left: 4px;
    vertical-align: super;
}

.stat-counter-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey-500);
}

/* ==================== ENHANCED ROUTE CARDS ==================== */

.route-card-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(10, 14, 23, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== ENHANCED DISTANCE CARDS ==================== */

.distance-card {
    position: relative;
    overflow: hidden;
}

/* Removed "MEEST GELOPEN" ribbon on primary card (visual noise). */

.distance-card-svg-icon {
    width: 40px;
    height: 40px;
    color: currentColor;
    stroke: currentColor;
    margin: 0 auto;
}

/* ==================== GALLERY / IMPRESSIE PLACEHOLDER ==================== */

.impressie-section {
    padding: 80px 5%;
    background: var(--grey-100);
}

.impressie-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.impressie-tile {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--grey-300);
}

.impressie-tile:nth-child(1) {
    grid-row: 1 / 3;
}

.impressie-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.impressie-tile:hover img {
    transform: scale(1.05);
}

.impressie-tile-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10, 14, 23, 0.85));
    color: var(--white);
}

.impressie-tile-caption {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--accent);
}

/* ==================== EXPANDED PARTNERS STRIP ==================== */

.partners-section .partners-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-500);
    text-align: center;
    margin-bottom: 24px;
}

.partners-more {
    text-align: center;
    margin: 32px 0 0;
}

.partners-more-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.partners-more-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ==================== MANIFEST AT BOTTOM CONTEXT ==================== */

.manifest-section.manifest-closing {
    border-top: 1px solid var(--grey-100);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 900px) {
    .date-banner-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        justify-items: center;
    }

    .date-banner-big {
        padding: 14px 28px;
    }

    .date-banner-day {
        font-size: 3rem;
    }

    .date-banner-headline {
        font-size: 1.5rem;
    }

    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-counter+.stat-counter::before {
        display: none;
    }

    .stat-counter-number {
        font-size: 2.6rem;
    }

    .impressie-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .impressie-tile:nth-child(1) {
        grid-row: auto;
    }
}

/* ==================== FOOTER (REBUILT) ==================== */

.footer-newsletter {
    background: linear-gradient(120deg, #10b981 0%, #4ade80 100%);
    color: var(--primary);
    padding: 48px 5%;
    border-top: none;
    text-align: left;
}

.footer-newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
}

.footer-newsletter-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(10, 14, 23, 0.6);
    margin: 0 0 6px;
}

.footer-newsletter-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--primary);
    margin: 0 0 8px;
    line-height: 1.05;
}

.footer-newsletter-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(10, 14, 23, 0.78);
    margin: 0;
    max-width: 560px;
}

.footer-newsletter-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.footer-newsletter-btn svg {
    width: 18px;
    height: 18px;
}

.footer-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 14, 23, 0.25);
}

/* Override the generic <footer> base style because we use footer.footer-main now */
footer.footer-main {
    padding: 64px 5% 24px;
    background: var(--primary);
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-col-brand {
    padding-right: 8px;
}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand-logo {
    height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 4px;
}

.footer-brand-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin: 4px 0 18px;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-list a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col-list a:hover {
    color: var(--accent);
}

.footer-col-cta {
    color: var(--accent) !important;
    font-weight: 700 !important;
}

.footer-contact-line {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 14px;
    line-height: 1.55;
}

.footer-contact-line a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-line a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.footer-bottom-tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--accent) !important;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 32px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-newsletter-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-newsletter-title {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ==================== HOMEPAGE HERO V2 ==================== */

.home-hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    background: var(--primary);
    isolation: isolate;
}

.home-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.05) contrast(1.02);
    animation: heroKenBurns 24s ease-out forwards;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.35) 45%, rgba(15, 23, 42, 0.88) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0) 50%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px max(5%, calc((100% - 1200px) / 2)) 80px;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 14px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.home-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.home-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
    margin: 0 0 20px;
    color: var(--white);
    max-width: 1100px;
}

.home-hero-title .accent {
    color: var(--accent);
    display: block;
}

.home-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 0 32px;
}

.home-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.home-hero-btn svg {
    width: 18px;
    height: 18px;
}

.home-hero-btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.home-hero-btn-primary:hover {
    transform: translateY(-2px);
    background: #5eeb91;
    border-color: #5eeb91;
}

.home-hero-btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.home-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}

.home-hero-countdown {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--accent);
    margin: 4px 0 0;
    opacity: 0.92;
}

.home-hero-countdown span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .home-hero-content {
        padding: 110px 5% 60px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .home-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-btn {
        justify-content: center;
    }
}

/* ==================== HOMEPAGE INTRO + IMPACT STATS ==================== */

.home-intro {
    padding: 90px 5% 40px;
    background: var(--white);
}

.home-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-intro-copy .section-eyebrow {
    margin-top: 0;
}

.home-intro-copy h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.05;
    color: var(--primary);
    margin: 6px 0 16px;
    text-transform: uppercase;
}

.home-intro-copy p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--grey-500);
    margin: 0;
    max-width: 520px;
}

.home-intro-stats {
    margin: 0;
}

@media (max-width: 900px) {
    .home-intro-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ==================== HOMEPAGE MEEHELPEN TEASER ==================== */

.home-meehelpen-teaser {
    padding: 0;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.home-meehelpen-teaser-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.home-meehelpen-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.home-meehelpen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-meehelpen-body {
    padding: 80px 7% 80px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-meehelpen-body .section-eyebrow {
    margin-top: 0;
    color: var(--accent);
}

.home-meehelpen-body h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.05;
    color: var(--white);
    margin: 6px 0 18px;
    text-transform: uppercase;
}

.home-meehelpen-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
    max-width: 480px;
}

.home-meehelpen-body .home-hero-btn {
    align-self: flex-start;
}

@media (max-width: 900px) {
    .home-meehelpen-teaser-inner {
        grid-template-columns: 1fr;
    }

    .home-meehelpen-image {
        min-height: 260px;
    }

    .home-meehelpen-body {
        padding: 60px 8% 72px 8%;
    }
}

/* ==================== FIXES V2 ==================== */

/* Home intro without stats: center the copy */
.home-intro-inner-centered {
    display: block;
    max-width: 780px;
    text-align: center;
}

.home-intro-inner-centered .home-intro-copy {
    text-align: center;
}

.home-intro-inner-centered .home-intro-copy p {
    margin-left: auto;
    margin-right: auto;
}

/* Volunteer photo: center subject higher to keep the face in frame */
.home-meehelpen-image img {
    object-position: center 30%;
}

/* Partners label on white bg (override the older dark-nav rule) */
.partners-section .partners-label {
    color: var(--grey-500);
}

/* Manifest: remove legacy grey divider since section now has its own bg */
.manifest-section.manifest-closing {
    border-top: none;
}

/* Home intro with distance tiles below the centered copy */
.home-intro-inner-centered .home-distance-grid {
    margin-top: 48px;
    text-align: left;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Homepage distance tiles: media at top (photos) */
.home-distance-grid .event-distance-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-distance-grid .event-distance-card::before {
    /* Hide the accent top-line because the image now covers that area */
    display: none;
}

.home-distance-grid .event-distance-card>h3,
.home-distance-grid .event-distance-card>p,
.home-distance-grid .event-distance-card>.event-distance-link {
    padding-left: 22px;
    padding-right: 22px;
}

.home-distance-grid .event-distance-card>h3 {
    padding-top: 18px;
    margin-top: 0;
}

.home-distance-grid .event-distance-card>.event-distance-link {
    padding-bottom: 20px;
    margin-top: auto;
}

.event-distance-card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--grey-100);
}

.event-distance-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-distance-grid .event-distance-card:hover .event-distance-card-media img {
    transform: scale(1.05);
}

/* Distance tiles break out of the 780px centered copy and get bigger photos */
.home-distance-grid .event-distance-card-media {
    aspect-ratio: 4 / 5;
}

.home-distance-grid .event-distance-card>h3 {
    font-size: 1.5rem;
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.home-distance-grid .event-distance-card>p {
    font-size: 1.05rem;
    color: var(--grey-500);
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 18px;
}

.home-distance-grid .event-distance-card>.event-distance-link {
    font-size: 0.9rem;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
}

@media (min-width: 1400px) {
    .home-intro-inner-centered .home-distance-grid {
        max-width: 1600px;
    }
}

@media (max-width: 900px) {
    .home-intro-inner-centered .home-distance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-distance-grid .event-distance-card-media {
        aspect-ratio: 4 / 3;
    }

    .home-distance-grid .event-distance-card>h3 {
        font-size: 1.25rem;
        padding-top: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-distance-grid .event-distance-card>p {
        font-size: 0.95rem;
        padding-left: 18px;
        padding-right: 18px;
        margin-bottom: 14px;
    }

    .home-distance-grid .event-distance-card>.event-distance-link {
        padding-left: 18px;
        padding-right: 18px;
        padding-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .home-intro-inner-centered .home-distance-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-distance-grid .event-distance-card {
        display: grid;
        grid-template-columns: 110px 1fr;
        grid-template-areas:
            "media h3"
            "media p"
            "media link";
        align-items: center;
    }

    .home-distance-grid .event-distance-card-media {
        grid-area: media;
        aspect-ratio: 1 / 1;
        height: 100%;
    }

    .home-distance-grid .event-distance-card>h3 {
        grid-area: h3;
        font-size: 1.15rem;
        padding: 14px 14px 2px;
        align-self: end;
    }

    .home-distance-grid .event-distance-card>p {
        grid-area: p;
        font-size: 0.9rem;
        padding: 0 14px;
        margin: 0;
    }

    .home-distance-grid .event-distance-card>.event-distance-link {
        grid-area: link;
        padding: 2px 14px 14px;
        align-self: start;
        margin-top: 0;
    }
}

/* News cards: photo on top, body below */
.news-card {
    padding: 0;
    overflow: hidden;
}

.news-card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--grey-100);
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-media img {
    transform: scale(1.04);
}

.news-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-body .news-link {
    margin-top: auto;
    padding-top: 8px;
}

/* ==================== HOMEPAGE PARTNERS STRIP ==================== */

.home-partners {
    padding: 80px 5%;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
}

.home-partners-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.home-partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.home-partners-header .section-eyebrow {
    margin-top: 0;
}

.home-partners-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary);
    text-transform: uppercase;
    margin: 6px 0 10px;
}

.home-partners-header p {
    color: var(--grey-500);
    font-size: 1rem;
    margin: 0;
}

.home-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.home-partner-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-partner-tile:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-partner-tile img {
    max-width: 100%;
    max-height: 70%;
    object-fit: contain;
}

.home-partner-placeholder {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-400);
    background: repeating-linear-gradient(45deg,
            var(--grey-100) 0 8px,
            #f8f9fb 8px 16px);
    border-style: dashed;
    cursor: default;
}

.home-partner-cta {
    background: var(--primary);
    border-color: var(--primary);
}

.home-partner-cta-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
}

.home-partner-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.home-partner-cta:hover .home-partner-cta-label {
    color: var(--primary);
}

@media (max-width: 900px) {
    .home-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .home-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== NEWS (listing + single) ==================== */

.news-listing-intro {
    background: var(--grey-100, #f8fafc);
    padding: 40px 0 30px;
    border-bottom: 1px solid var(--grey-200, #e5e7eb);
}

.news-listing-intro .subpage-content {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 900px;
}

.news-listing-intro .subpage-title {
    margin-bottom: 12px;
}

.news-listing {
    padding: 40px 0 80px;
}

.news-listing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
    margin-top: 8px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--grey-200, #e5e7eb);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.news-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.news-card-image {
    aspect-ratio: 16/9;
    background: var(--grey-100, #f1f5f9);
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.news-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-card-date {
    font-size: 0.78rem;
    color: var(--grey-500, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.news-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-excerpt {
    font-size: 0.95rem;
    color: var(--grey-700, #374151);
    line-height: 1.55;
    margin: 0;
}

.news-empty {
    text-align: center;
    color: var(--grey-500, #6b7280);
    margin: 60px 0;
    font-size: 1.1rem;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 50px 0 0;
}

.news-page-link {
    color: var(--primary, #0f172a);
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid var(--grey-300, #d1d5db);
    border-radius: 6px;
    font-weight: 500;
    background: #fff;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.news-page-link:hover {
    background: var(--grey-100, #f3f4f6);
    border-color: var(--accent, #059669);
}

.news-page-info {
    color: var(--grey-500, #6b7280);
    font-size: 0.92rem;
}

/* --- Single post --- */
.news-article .news-article-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--grey-500, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin: 0 0 8px;
}

.news-article .news-article-title {
    margin-bottom: 28px;
}

.news-article-hero {
    margin: 0 0 36px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 480px;
    background: var(--grey-100, #f1f5f9);
}

.news-article-hero img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.news-article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--grey-800, #1f2937);
}

.news-article-body p {
    margin: 0 0 1.3em;
}

.news-article-body h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin: 2em 0 0.6em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-article-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin: 1.5em 0 0.5em;
}

.news-article-body a {
    color: var(--accent, #059669);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.news-article-body a:hover {
    filter: brightness(0.9);
}

.news-article-body ul,
.news-article-body ol {
    margin: 0 0 1.3em;
    padding-left: 1.4em;
}

.news-article-body li {
    margin-bottom: 0.4em;
}

.news-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}

.news-article-body blockquote {
    border-left: 3px solid var(--accent, #059669);
    padding: 0.4em 0 0.4em 1em;
    margin: 1.5em 0;
    color: var(--grey-600, #4b5563);
    font-style: italic;
}

.news-article-footer {
    margin-top: 3em;
    padding-top: 20px;
    border-top: 1px solid var(--grey-200, #e5e7eb);
}

.news-article-back {
    color: var(--accent, #059669);
    text-decoration: none;
    font-weight: 600;
}

.news-article-back:hover {
    text-decoration: underline;
}

/* --- Homepage news section --- */
.home-news {
    background: var(--grey-100, #f8fafc);
    padding: 80px 5%;
    border-top: 1px solid var(--grey-200, #e5e7eb);
}

.home-news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-news-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
}

.home-news-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent, #059669);
    text-transform: uppercase;
    margin: 0 0 8px;
}

.home-news-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary, #0f172a);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.05;
}

.home-news-all {
    color: var(--accent, #059669);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.home-news-all:hover {
    text-decoration: underline;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }
}

.home-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--grey-200, #e5e7eb);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.home-news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-news-card-image {
    aspect-ratio: 16/9;
    background: var(--grey-100, #f1f5f9);
    overflow: hidden;
}

.home-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-news-card-date {
    font-size: 0.75rem;
    color: var(--grey-500, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.home-news-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-news-card-excerpt {
    font-size: 0.92rem;
    color: var(--grey-700, #374151);
    line-height: 1.5;
    margin: 0;
}

/* --- Alert banner --- */
:root { --site-alert-h: 0px; }
body.has-site-alert { --site-alert-h: 44px; }

.site-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ea580c;
    color: #fff;
    z-index: 1100; /* above .nav (1000) */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* iOS safe-area: extend banner under the status bar / notch so the hero
       doesn't peek through the translucent status bar on mobile Safari. */
    padding-top: env(safe-area-inset-top, 0px);
    /* Note: NO min-height here. The alert's natural content-height drives
       --site-alert-h via JS. Adding min-height creates a feedback loop where
       border + min-height keep nudging the measured height upward. */
}

body.has-site-alert .nav { top: var(--site-alert-h); }
body.has-site-alert .subpage-main { padding-top: calc(70px + var(--site-alert-h)); }
body.has-site-alert .home-hero { padding-top: var(--site-alert-h); }

.site-alert-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 14% 10px 5%; /* extra right-room so text doesn't run under × */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    line-height: 1.35;
}

@media (min-width: 720px) {
    .site-alert-inner { padding: 10px 60px; }
}

.site-alert-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ea580c;
    background: #fff;
    padding: 3px 9px;
    border-radius: 99px;
}

.site-alert-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-alert-link:hover { color: #fff; text-decoration: underline; }
.site-alert-link:hover .site-alert-arrow { transform: translateX(3px); }

.site-alert-arrow {
    display: inline-block;
    transition: transform 0.18s ease;
    font-weight: 700;
}

.site-alert-link:hover {
    text-decoration: underline;
}

.site-alert-close {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.site-alert-close:hover {
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
}