:root {
    --zwart: #0A0A0A;
    --geel: #F5C518;
    --staal: #3D3D3D;
    --wit: #F8F8F8;
    --rood: #D32F2F;
}

/* SPOED BANNER */
.spoed {
    background: var(--rood);
    color: var(--wit);
    text-align: center;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.95rem;
}
.spoed a { color: var(--wit); text-decoration: underline; }
.spoed .phone-inline {
    background: transparent;
    border: none;
    color: var(--wit);
    text-decoration: underline;
    font: inherit;
    padding: 0;
    cursor: pointer;
}
.spoed .phone-inline:hover { color: var(--geel); }

/* TYPOGRAPHY */
body h1, body h2, body h3 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.05;
}
body h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
body h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1.5rem; }
body h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
body h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* NAV */
body > nav {
    position: sticky;
    top: 0;
    background: var(--zwart);
    color: var(--wit);
    z-index: 100;
    border-bottom: 3px solid var(--geel);
    padding: 0;
}
nav .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    max-width: 1400px;
    margin: 0 auto;
}
nav .brand {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.8rem;
    color: var(--geel);
    letter-spacing: 0.05em;
    text-decoration: none;
}
nav .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.95rem;
}
nav .nav-links a {
    color: var(--wit);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0;
    border: 0;
}
nav .nav-links a:hover { color: var(--geel); background: transparent; }
nav .nav-actions { display: flex; align-items: center; gap: 10px; }
nav .nav-spoed {
    background: transparent;
    color: var(--rood);
    border: 2px solid var(--wit);
    /* match .nav-cta height: .nav-cta has 10px vertical padding and no border,
       so 8px padding + 2px border here produces the same outer height */
    padding: 8px 14px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
}
nav .nav-spoed:hover,
nav .nav-spoed[aria-expanded="true"] {
    background: var(--wit);
    color: var(--rood);
}
nav .nav-spoed-mobile { display: none; }
nav .nav-cta {
    background: var(--geel) !important;
    color: var(--zwart) !important;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
}
nav .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
    margin-left: 4px;
}
nav .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wit);
    margin: 5px 0;
    transition: transform .2s, opacity .2s;
}
nav .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav .nav-toggle.open span:nth-child(2) { opacity: 0; }
nav .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    nav .nav-toggle { display: block; }
    nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--zwart);
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 16px;
        border-top: 1px solid rgba(255,255,255,.08);
        border-bottom: 3px solid var(--geel);
    }
    nav .nav-links.open { display: flex; }
    nav .nav-links a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 15px;
    }
    nav .nav-links a:last-child { border-bottom: 0; }
    nav .nav-cta-extra { display: none; }
    nav .nav-spoed-desktop { display: none; }
    nav .nav-spoed-mobile {
        display: block;
        width: 100%;
        margin-top: 12px;
        text-align: center;
        border: 0;
    }
}

/* BRANCHES GRID */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 2rem;
}
.branch-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 6px;
    padding: 24px;
    transition: border-color .15s, transform .15s;
    text-decoration: none;
    color: var(--zwart);
}
.branch-card:hover { border-color: var(--geel); transform: translateY(-2px); }
.branch-card .eyebrow {
    display: inline-block;
    background: var(--geel);
    color: var(--zwart);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.branch-card h3 {
    font-size: 1.5rem;
    margin: 0 0 .5rem;
    font-family: 'Bebas Neue', Impact, sans-serif;
}
.branch-card p { font-size: 14px; color: #555; margin: 0 0 14px; line-height: 1.55; }
.branch-card .arrow { margin-top: auto; font-weight: 700; color: var(--zwart); font-size: 14px; }

/* FOOTER */
footer {
    background: #050505;
    color: #888;
    padding: 48px 24px 24px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0;
}
footer .brand {
    display: block;
    margin-bottom: 12px;
    color: var(--geel);
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.4rem;
    letter-spacing: .05em;
    text-decoration: none;
}
footer .meta {
    color: #666;
    margin-top: 16px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.8rem;
}
footer .badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
    flex-wrap: wrap;
    color: var(--geel);
    font-weight: 700;
    font-size: 0.85rem;
}
footer .footer-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 18px 0 4px;
}
footer .footer-links a {
    color: #BBB;
    font-size: 0.85rem;
    text-decoration: none;
}
footer .footer-links a:hover { color: var(--geel); background: transparent; }
.hidden { display: none !important; }
a[href^="/blog/"]:not([href="/blog/"]):not([href="/blog"]) {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--geel);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
a[href^="/blog/"]:not([href="/blog/"]):not([href="/blog"]):hover {
    color: var(--geel);
}
