/* Gedeelde footer op basis van de goedgekeurde homepage-footer. */
footer {
    padding: 0;
    background: #0f0f0f;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

footer * {
    box-sizing: border-box;
}

.footer-top {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4vw 4rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) max-content minmax(0, 2fr);
    gap: 4rem;
    align-items: start;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
}

.footer-logo-text {
    display: block;
    color: var(--white, #ffffff);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.footer-logo-text .logo-gold {
    color: var(--accent, #b3944d);
}

.footer-brand p {
    max-width: 300px;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.footer-nav h5 {
    margin: 0 0 1.5rem;
    color: var(--accent, #b3944d);
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    list-style: none;
}

.footer-nav li {
    margin: 0;
    padding: 0;
}

.footer-nav a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white, #ffffff);
    transform: translateX(4px);
}

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8125rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 4rem;
    }

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

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }
}
