/* --- LUXE EN WARME DESIGN VARIABELEN --- */
:root {
    --text-dark: #2d3835;     /* Diep, zacht boswachtersgroen/antraciet */
    --text-light: #5a6662;    /* Comfortabel grijsgroen voor leestekst */
    --bg-color: #fcfbfa;      /* Ultra-zachte linnen/ivoor achtergrond */
    --card-bg: #ffffff;
    
    --primary: #758e83;       /* Kalmerend saliegroen */
    --primary-dark: #4d5f57;  
    --accent: #d99675;        /* Warme, troostende terracotta toon */
    --accent-light: #f5ede8;  /* Heel zachte blustoon */
    --hero-bg: #f4f0ea;       /* Subtiele, warme zandkleur exclusief voor de Hero-omgeving */
    --footer-bg: #e0d8cd;     /* Warme zand-linnen tint voor de footer */
    
    --font-heading: 'Playfair Display', serif; /* Hoogwaardig, redactioneel lettertype */
    --font-body: 'Plus Jakarta Sans', sans-serif; 
}

/* --- BASIS RESET & ALGEMENE STIJL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.8;
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased; /* Voorkomt dat de website naar rechts kan wiebelen op mobiel */
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 500;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.logo-dot {
    color: var(--accent);
}

/* --- SITE HEADER & NAVIGATIE --- */
.site-header {
    background-color: rgba(252, 251, 250, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(117, 142, 131, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 2vw, 35px);
    width: auto;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    /* Fluid font-sizing voor desktop/tablet header */
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    display: inline-block;
}

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

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

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

/* Hamburger menu (standaard verborgen) */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--text-dark);
    transition: all 0.4s ease;
}

/* --- HERO SECTIE --- */
.hero-section {
    background-color: var(--hero-bg);
    padding: 80px 0 100px 0;
    border-radius: 0 0 40px 40px; 
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px; 
    height: 300px;
    background: var(--accent-light);
    filter: blur(120px);
    border-radius: 50%;
    top: -50px; 
    left: -50px;
    opacity: 0.6;
}

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

.hero-badge-wrapper {
    margin-bottom: 20px;
}

.hero-mini-badge {
    background-color: white;
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(117, 142, 131, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #000000; /* Of gebruik: black */
    margin-bottom: 20px;
}

.hero-title-italic {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.hero-decorator-line {
    height: 3px;
    width: 65px;
    background: linear-gradient(to right, var(--accent), transparent);
    margin-bottom: 25px;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-action-zone {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-premium-primary {
    font-family: var(--font-body);
    text-decoration: none;
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 0.95rem;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(217, 150, 117, 0.25);
    transition: all 0.3s ease;
}

.btn-premium-primary:hover {
    background-color: #c97d5f;
    box-shadow: 0 8px 25px rgba(217, 150, 117, 0.35);
}

.btn-premium-link {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 0;
}

.btn-arrow {
    display: inline-block;
    color: var(--accent);
    transition: transform 0.3s;
}

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

.btn-premium-link:hover .btn-arrow {
    transform: translateX(6px);
}

.hero-graphic-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.artwork-frame {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 20px;
    border-radius: 200px 200px 30px 30px; 
    box-shadow: 0 20px 50px rgba(45, 56, 53, 0.06);
    border: 1px solid rgba(255,255,255,0.8);
}

.custom-abstract-art {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 180px 180px 20px 20px;
}

/* --- EDITORIAL PAGINA LAYOUT & CONTENT --- */
.main-container {
    padding-top: 160px !important;
    margin-top: 0 !important;
}

.editorial-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 60px auto;
    padding: 0;
}

.section-subheading {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 400;
    margin-top: 15px;
}

.decorator-line {
    height: 1px;
    width: 80px;
    background: #e9e0d2;
    margin: 30px auto 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.editorial-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    display: block;
}

.editorial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    font-family: var(--font-body);
}

.editorial-text p {
    margin-bottom: 25px;
}

.editorial-text p:first-child {
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    line-height: 1.6;
    margin-top: 0;
}

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

.editorial-text em {
    font-style: italic;
    color: var(--accent);
}

/* --- OVER MIJ SECTIE (KLASSIEK) --- */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.center-badge {
    display: block;
    text-align: center;
}

.divider {
    height: 3px;
    width: 50px;
    background-color: var(--accent);
    margin: 15px 0 25px 0;
}

.center-divider {
    margin: 15px auto 35px auto;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.4rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 20px;
}

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

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

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

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-light);
    border-radius: 20px;
    top: 20px;
    left: -20px;
    z-index: 1;
}

.about-image {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* --- JOURNEY SECTIE & QUOTES --- */
.journey-section {
    background-color: #fcfaf7;
    padding: 100px 0;
    border-top: 1px solid #f0e9df;
    border-bottom: 1px solid #f0e9df;
}

.quote-grid {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    align-items: start;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    line-height: 0.8;
    user-select: none;
}

.quote-grid h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.quote-section {
    background-color: var(--accent-light);
    padding: 80px 0;
    text-align: center;
    margin: 60px 0;
}

.quote-container {
    max-width: 800px;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quote-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
}

/* --- ANCHORS & LANDMARKS GRID --- */
.anchors-title-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.anchors-title-section h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--text-dark);
    font-weight: 400;
}

.anchors-title-section p {
    color: var(--text-light);
    line-height: 1.6;
    font-family: var(--font-body);
}

.anchors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: stretch;
    margin-top: 60px;
}

.card-item {
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid #f0e9df;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-body);
}

.card-item-icon {
    background: #f7f4ee;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.card-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 90px;
    background: #fdfbf7;
    border: 1px solid #e9e0d2;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.01);
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-section p {
    color: #666;
    font-family: var(--font-body);
    margin-bottom: 35px;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- BLOG SECTIE --- */
.blog-section {
    padding: 40px 0 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3.4rem;
}

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

.blog-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 56, 53, 0.03);
    border: 1px solid rgba(117, 142, 131, 0.06);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 56, 53, 0.06);
}

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

.blog-tag {
    position: absolute;
    top: 15px; 
    left: 15px;
    background-color: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.blog-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more .arrow {
    display: inline-block;
    color: var(--accent);
    transition: transform 0.3s;
}

.read-more:hover {
    color: var(--accent);
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* --- SITE FOOTER --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-dark);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(45, 56, 53, 0.05);
    font-family: var(--font-body);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 700px;
    margin: 0 auto;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 auto;
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark) !important; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Desktop & tablet standaard weergave van de footer links */
.footer-links ul {
    list-style: none;
    display: flex !important;
    flex-direction: row !important;        
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px 30px;                  
    padding: 0;
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
}

.footer-links li {
    margin-bottom: 0; 
    display: inline-block !important;
}

.footer-links li,
.footer-links span,
.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px; 
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap !important;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 30px 24px 0 24px;
    border-top: 1px solid rgba(45, 56, 53, 0.08);
    color: var(--text-light);
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}


/* ==========================================================================
   🎨 STRIKTE & EXACTE RESPONSIVE DESIGN BREAKPOINTS (MOBIEL, TABLET, PC)
   ========================================================================== */

/* --- 💻 DESKTOP & LARGE LAPTOPS (Schermen vanaf 1025px tot 1440px+) --- */
@media (min-width: 1025px) {
    /* Gebruikt de optimale, standaard gedefinieerde luxe waardes hierboven */
}

/* --- 📐 TABLETS LANDSCHAP & LAPTOPS (Schermen van 769px tot 1024px - bijv. iPad Pro/Air) --- */
@media (max-width: 1024px) {
    .main-container {
        padding-top: 140px !important;
    }

    .editorial-title {
        font-size: 2.8rem;
    }

    .editorial-grid {
        gap: 40px;
    }

    .journey-section {
        padding: 80px 0 !important;
    }
    
    .footer-links ul {
        gap: 15px 24px !important;
    }
}

/* --- 📱 SMARTPHONES & TABLETS PORTRET (Schermen tot 768px - bijv. iPad mini & grote telefoons) --- */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 0 !important;
    }

    .nav-wrapper {
        gap: 8px !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    .logo {
        font-size: 1.5rem !important;
        flex-shrink: 0;
    }

    /* ⭐ MOBIEL MENU EDITS - OVERALL FULLSCREEN WHITE OVERLAY ⭐
       Zorgt ervoor dat het menu op ELK device perfect in het midden van het scherm staat.
    */
    .nav-links {
        display: none; /* Wordt getoond via JS class '.active' */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #ffffff !important; 
        z-index: 999 !important;
        
        /* Flexbox instellingen voor perfecte verticale en horizontale centrering */
        flex-direction: column !important;
        justify-content: center !important; 
        align-items: center !important;
        
        /* Spatiëring - Padding gereset naar 0 zodat Flexbox het perfect berekent */
        padding: 0 !important; 
        gap: 35px !important; 
        margin: 0 !important;
    }

    /* Zodra het menu opengeklapt is (.active klasse toegevoegd via JS) */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0;
        text-align: center !important;
    }

    .nav-links a {
        color: #5a6662 !important; /* Comfortabele, zachte luxe kleur */
        font-family: var(--font-body) !important;
        font-size: 1.15rem !important; /* Prachtige rustige grootte conform afbeelding 2 */
        font-weight: 500 !important;
        padding: 0 0 6px 0 !important;
        line-height: 1.4 !important;
        letter-spacing: 0.2px !important;
        text-transform: none !important;
        white-space: nowrap !important;
    }

    /* Actieve/Hover goud/oranje lijn onder het geselecteerde item */
    .nav-links a.active {
        color: var(--accent) !important;
    }

    .nav-links a::after {
        height: 2px !important;
        background-color: var(--accent) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .nav-links a.active::after {
        width: 40px !important; /* Compacte, gecentreerde lijn onder de actieve link */
    }

    /* Hamburger icoon moet boven de witte overlay blijven staan */
    .hamburger {
        display: block !important;
        z-index: 1001 !important;
    }

    .main-container {
        padding-top: 0px !important;
        margin-bottom: 60px !important;
    }

    .editorial-title {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .editorial-text {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
    }

    .hero-section {
        padding: 40px 0 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-decorator-line {
        margin: 0 auto 25px auto;
    }

    .hero-action-zone {
        flex-direction: column;
        gap: 15px;
    }
    
    .artwork-frame {
        max-width: 300px;
    }

    .about-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image-decor {
        display: none;
    }

    .quote-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        text-align: center;
    }

    .quote-mark {
        font-size: 4rem !important;
        margin-bottom: -10px;
    }

    .anchors-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .site-footer {
        padding: 50px 0 30px 0 !important;
        margin-top: 60px;
    }
}

/* --- 🛠️ EXTREEM KLEINE SMARTPHONES FIX (Schermen tot 430px tot de absolute mini 320px - iPhone SE, SE-2, mini) --- */
@media (max-width: 430px) {
    /* ⭐⭐⭐ ULTIEME FOOTER FIX: ALLES 100% NAAST ELKAAR ZONDER VERSPRINGING ⭐⭐⭐ */
    .footer-links ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;       /* Dit sloopt de regelafbreking eruit, dwingt 1 lijn */
        justify-content: center !important;
        align-items: center !important;
        /* Vloeibare gap: krimpt automatisch tot minimaal 6px op een iPhone SE */
        gap: clamp(6px, 1.8vw, 14px) !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .footer-links li {
        display: inline-block !important;
        margin: 0 !important;
        flex-shrink: 0 !important;         /* Zorgt dat de list items niet mogen inzakken */
    }

    .footer-links li a,
    .footer-links span,
    .footer-links a {
        /* Vloeibare lettergrootte: op 320px breedte is dit exact ~11px. Past perfect naast elkaar! */
        font-size: clamp(11px, 3.1vw, 14px) !important; 
        white-space: nowrap !important;
        /* Absoluut verbod op afbreken van woorden */
        letter-spacing: -0.2px !important;
        /* Subtiele extra ademruimte voor kleine schermen */
        padding-bottom: 2px !important;
    }
}