/* ===== FOOTER ===== */
.site-footer {
    background: #1f1f1f; /* grigio antracite */
    color: var(--color-light);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.08);
}

/* CONTENITORE INTERNO */
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

/* COLONNE */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-light);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* LINK */
.site-footer a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #6fa89a; /* verde soft coerente col brand */
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== RESPONSIVE 1023px ===== */
@media (max-width: 1023px) {

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
}

/* ===== RESPONSIVE 767px ===== */
@media (max-width: 767px) {

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.75rem;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }

    .footer-col p {
        font-size: 0.85rem;
    }
}
