: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;
}

* {
    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;
}

/* 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: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.nav.scrolled {
    height: 65px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.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;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.nav-partner-logo {
    display: flex;
    align-items: center;
    padding-left: 30px;
    border-left: 1px solid var(--grey-200);
}

.nav-partner-img {
    height: 36px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-partner-img {
    height: 30px;
}

.nav-cta {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    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(--primary);
}

.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(--primary);
    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(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

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

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('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;
    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);
    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;
}

.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);
    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;
    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: 2px;
    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: 2px;
    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: 2px;
    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: 2px;
    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: 2px;
    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: 2px;
}

.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: 2px;
}

.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;
    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(--primary);
    position: relative;
    z-index: 20;
}

.community-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);
}

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

.community-block {
    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 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-block:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.community-block.highlight {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 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(--white);
}

.community-text {
    font-size: 1rem;
    color: var(--grey-400);
    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;
}

.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: 2px;
}

.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: 60px 5%;
    background: var(--secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    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: 2px;
    transition: all 0.2s ease;
}

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

.subpage-main {
    padding-top: 70px;
    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.8;
    color: var(--grey-700);
    margin-bottom: 40px;
    padding-bottom: 40px;
    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-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--grey-100);
    border-radius: 2px;
    text-align: center;
}

.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 {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
}

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

/* ==================== 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(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.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: 4px;
    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: 65px;
        padding: 0 20px;
    }

    .nav-logo-img {
        height: 40px;
    }

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

    .nav-partner-logo {
        padding-left: 20px;
    }

    .nav-partner-img {
        height: 36px;
    }

    .nav.scrolled .nav-partner-img {
        height: 30px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-buttons {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

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

    .nav-buttons .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--grey-100);
    }

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

    /* ===== 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;
    }
}