/* ================================================================
   FOOTER — Mobile Responsive CSS
   ================================================================ */

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 0 24px;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 16px;
        text-align: center;
    }

    .ft-socials { justify-content: center; }

    .ft-nl-row {
        flex-direction: column;
        gap: 10px;
    }
    .ft-nl-input {
        border-radius: 9px;
        text-align: center;
    }
    .ft-nl-btn {
        border-radius: 9px;
        width: 100%;
        padding: 11px;
    }

    .ft-contact-row { justify-content: center; }

    .footer-bottom { padding: 18px 16px; }
    .footer-bottom-in {
        justify-content: center;
        text-align: center;
    }

    /* Add padding at bottom for mobile nav */
    .site-footer { margin-bottom: 0; padding-bottom: 60px; }
}
