/* ================================================
   Site-footer — quote, 4 kolommen, onderbalk
   ================================================ */
#footer.site-footer {
    background: var(--color-primary, #00532D);
    margin-top: 0;
    border-top: none;
    padding-top: 72px;
}

.footer-quote {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 38px;
    line-height: 1.25;
    color: #fff;
    max-width: 720px;
    margin: 0 0 40px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0 48px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 64px;
}

.footer-col-title {
    font-size: 11px !important;
    font-family: var(--font-sans);
    font-weight: 700 !important;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgb(255, 255, 255) !important;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li,
.footer-links a {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68) !important;
    margin-bottom: 12px;
    text-decoration: none;
}
.footer-links li {
    display: block;
}
.footer-links li:last-child {
    margin-bottom: 0;
}
.footer-links a:hover {
    color: #fff;
}

.footer-logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 24px;
}
.footer-brand-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.footer-brand-name {
    font-family: 'Avenir', sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}
.footer-brand-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
    background: var(--color-cta, #C9A96E);
    border-color: var(--color-cta, #C9A96E);
}

.footer-bottom {
    background: var(--color-primary, #003d21);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.footer-copyright {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    margin-top: 0 !important;
    border-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: none !important;
    margin-right: auto;
}
.footer-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none !important;
}
.footer-legal a:hover {
    color: #fff;
}
.footer-ai-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 991px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .footer-quote {
        font-size: 28px;
    }
    .footer-bottom-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .footer-quote {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col-projecten,
    .footer-col-groupln {
        display: none;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .footer-logo-brand {
        flex-direction: column;
    }
    .footer-social {
        justify-content: center;
    }
}
