/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .reveal-text {
        font-size: 14vw;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .brand-col {
        text-align: center;
    }
    .seo-tags {
        flex-direction: column;
        gap: 0;
    }
}
