/* ============================================================
   FOOTER — EcoSuivi
   ============================================================ */

.footer {
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    margin-top: 0;
    padding: 2.5rem 1.5rem 1.25rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.4rem 0;
}

.footer-brand .footer-baseline {
    color: var(--sidebar-text);
    margin: 0 0 0.85rem 0;
    line-height: 1.5;
}

.footer-brand .footer-legal-mention {
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(200, 230, 201, 0.7);
    margin: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-col__title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 0.4rem 0;
}

.footer-col a {
    color: var(--sidebar-text);
    text-decoration: none;
    transition: color 0.15s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    margin: 1.25rem 0 0 0;
    font-size: 0.8rem;
    color: rgba(200, 230, 201, 0.6);
}

@media (max-width: 760px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}
