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

        :root {
            --primary: #c8102e;
            --primary-dark: #a50d24;
            --secondary: #1a1a2e;
            --text: #333;
            --text-light: #666;
            --bg: #ffffff;
            --bg-alt: #f8f9fa;
            --border: #e9ecef;

            /* Shared tokens used by secondary pages */
            --color-primary: #c8102e;
            --color-primary-dark: #a50d24;
            --color-white: #ffffff;
            --color-black: #1a1a1a;
            --color-gray-50: #fafafa;
            --color-gray-100: #f7f7f7;
            --color-gray-200: #e5e5e5;
            --color-gray-400: #a3a3a3;
            --color-gray-500: #737373;
            --color-gray-800: #262626;
            --color-gray-900: #171717;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            --spacing-2xl: 3rem;
            --spacing-3xl: 4rem;
            --spacing-4xl: 6rem;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-accent {
            color: var(--primary);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(200,16,46,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--secondary);
        }

        .btn-full {
            width: 100%;
        }

        /* Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-p {
            height: 45px;
            width: auto;
        }

        .logo-full {
            height: 35px;
            width: auto;
            max-width: 180px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-drankenhandel {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .logo-poorters {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-link {
            color: var(--secondary);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--secondary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #a50d24 0%, #1a1a2e 100%);
            display: flex;
            align-items: center;
            position: relative;
            color: white;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), transparent 55%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            animation: fadeInUp 1s ease;
            text-align: center;
        }

        .hero-logo {
            max-width: 100%;
            width: auto;
            height: auto;
            max-height: 200px;
            margin-bottom: 25px;
            filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
            animation: logoReveal 1.2s ease-out forwards, float 6s ease-in-out infinite;
            animation-delay: 0s, 1.2s;
            opacity: 0;
            position: relative;
            border-radius: 0;
        }

        .hero-logo-wrapper {
            display: inline-block;
            position: relative;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes logoReveal {
            0% {
                opacity: 0;
                transform: scale(0.8) translateY(20px);
                filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)) blur(5px);
            }
            50% {
                opacity: 1;
                filter: drop-shadow(0 8px 40px rgba(200,16,46,0.4)) blur(0);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
                filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)) blur(0);
            }
        }

        .hero-logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 8px 40px rgba(200,16,46,0.5));
            transition: all 0.3s ease;
            animation-play-state: paused;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0;
            margin-bottom: 15px;
            font-weight: 500;
            animation: fadeInUp 1s ease 0.4s forwards;
        }

        .hero-text {
            font-size: 1.1rem;
            opacity: 0;
            margin-bottom: 30px;
            line-height: 1.7;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

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

        /* Section Styles */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: rgba(200,16,46,0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--bg-alt);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .about-lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-features {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(200,16,46,0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .feature h3 {
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 3px;
        }

        .feature p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-logo {
            max-width: 100%;
            border-radius: 0;
            box-shadow: none;
        }

        /* Products Section */
        .products {
            background: white;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            border-color: var(--primary);
        }

        .product-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 20px;
        }

        .product-title {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .product-text {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .product-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .product-list li {
            background: var(--bg-alt);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            color: var(--text);
        }

        .delivery-area {
            max-width: 760px;
            margin: 42px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .delivery-area h3 {
            margin-bottom: 8px;
            color: var(--secondary);
            font-size: 1.05rem;
        }

        .delivery-area p {
            margin: 0;
            color: var(--text-light);
            line-height: 1.7;
        }

        .delivery-area strong {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Services Section */
        .services {
            background: var(--bg-alt);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary);
            transition: height 0.3s ease;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.1);
        }

        .service-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(200,16,46,0.1);
            font-family: 'Montserrat', sans-serif;
            line-height: 1;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .service-text {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(200,16,46,0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .contact-item h3 {
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .contact-item p {
            color: var(--text-light);
            margin: 0;
        }

        .contact-item a {
            color: var(--text-light);
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .contact-map {
            margin-top: 42px;
        }

        .contact-map .map-container {
            margin-top: 0;
        }

        /* Privacyvriendelijke locatiekaart */
        .map-container {
            position: relative;
            margin-top: 30px;
            min-height: 250px;
            border-radius: 15px;
            overflow: hidden;
            background: #eef1ec;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            position: relative;
            min-height: 250px;
            display: grid;
            isolation: isolate;
        }

        .map-preview {
            width: 100%;
            height: 250px;
            display: block;
            object-fit: cover;
        }

        .map-consent {
            position: absolute;
            inset: 0;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
            padding: 22px;
            text-align: center;
            background: linear-gradient(to bottom, transparent 22%, rgba(255,255,255,0.94) 64%);
        }

        .map-consent p {
            margin: 0;
            color: var(--secondary);
        }

        .map-privacy-note {
            max-width: 520px;
            font-size: 0.88rem;
        }

        .map-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .map-actions .btn {
            min-height: 44px;
            padding: 11px 18px;
            font-size: 0.9rem;
        }

        .map-route-link {
            color: var(--secondary);
            border-color: var(--secondary);
            background: rgba(255,255,255,0.88);
        }

        .map-load-button:disabled {
            cursor: wait;
            opacity: 0.75;
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            display: block;
            border: 0;
        }

        .map-container.is-loaded {
            min-height: 300px;
        }

        .map-status {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .map-placeholder[hidden],
        .map-load-button[hidden] {
            display: none !important;
        }

        .map-frame-loading {
            position: absolute;
            inset: 0;
            visibility: hidden;
            pointer-events: none;
        }

        @media (max-width: 600px) {
            .map-placeholder {
                min-height: 0;
            }

            .map-preview {
                height: 220px;
            }

            .map-consent {
                position: static;
                padding: 18px;
                background: #ffffff;
            }

            .map-actions {
                width: 100%;
                flex-direction: column;
            }

            .map-actions .btn {
                width: 100%;
            }
        }

        .map-noscript {
            margin: 0;
            padding: 18px;
            text-align: center;
        }

        /* Contact Form */
        .contact-form {
            background: var(--bg-alt);
            padding: 40px;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.9rem;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-honeypot {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        .cf-turnstile {
            min-height: 0;
            margin-bottom: 14px;
        }

        .form-status {
            min-height: 1.5em;
            margin: 0 0 14px;
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .form-status.is-success {
            color: #276738;
        }

        .form-status.is-error {
            color: #a10d27;
        }

        .contact-form [data-form-submit]:disabled {
            cursor: not-allowed;
            opacity: 0.68;
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 0.8fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-description {
            color: rgba(255,255,255,0.7);
            margin-top: 15px;
            line-height: 1.7;
        }

        .footer-links h2,
        .footer-contact h2,
        .footer-brand h2 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a,
        .footer-contact p {
            color: rgba(255,255,255,0.7);
            transition: color 0.3s ease;
        }

        .footer-links a:hover,
        .footer-contact a:hover {
            color: var(--primary);
        }

        .footer-contact p {
            margin-bottom: 10px;
        }

        .footer-contact a {
            color: rgba(255,255,255,0.7);
        }

        .footer-hours {
            margin-top: 15px;
            font-size: 0.9rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        .footer-meta {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        .footer-legal a:hover {
            color: white;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-logo .logo-p {
            height: 40px;
        }

        .footer-logo .logo-full {
            height: 30px;
            max-width: 160px;
        }

        /* Go to Top */
        .go-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            border: none;
            font-size: 1.5rem;
        }

        .go-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .go-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

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

            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-toggle {
                display: flex;
            }

            .logo-p {
                height: 40px;
            }

            .logo-full {
                height: 30px;
                max-width: 150px;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .logo-p {
                height: 35px;
            }

            .logo-full {
                height: 25px;
                max-width: 120px;
            }
        }

        @media (max-width: 600px) {
            section {
                padding: 60px 0;
            }

            .hero-logo {
                max-height: 140px;
                animation: logoReveal 1.2s ease-out forwards;
            }

            .hero-logo-wrapper::after {
                animation: none;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                text-align: center;
            }

            .products-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 25px;
            }

            .logo-p {
                height: 30px;
            }

            .logo-full {
                height: 22px;
                max-width: 100px;
            }
        }

/* ========================================
   Accessibility & resilient interactions
   ======================================== */
.skip-link {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10000;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background: #1a1a2e;
    border: 3px solid #ffffff;
    transform: translate(-50%, -150%);
}

.skip-link:focus-visible {
    transform: translate(-50%, 0.5rem);
}

.hero-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.form-explanation {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.925rem;
}

.form-explanation a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid #0b57d0;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .product-card,
    .service-card,
    .about-content,
    .about-image,
    .contact-info,
    .contact-form-wrapper {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* Kop van het contactformulier zonder inline opmaak (CSP-veilig) */
.contact-form-title {
    margin-bottom: 12px;
    color: var(--secondary);
}
