@media screen and (max-width: 480px) {
    .footer {
        padding: 1.5rem 0.25rem 0.5rem;
    }
    .footer__brand {
        font-size: 1rem;
    }
    .footer__text {
        font-size: 0.8rem;
    }
    .footer__copyright {
        font-size: 0.7rem;
    }
}
/*=============== FOOTER ===============*/
.footer {
    background: #1a1a1a;
    color: #f1f1f1;
    padding: 3rem 1.5rem 1.5rem;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer__brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: "Didot", "Bodoni MT", Georgia, serif;
}

.footer__text {
    font-size: 0.95rem;
    color: #d1d1d1;
    margin-bottom: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    font-size: 0.85rem;
    color: #999;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer__brand {
        font-size: 1.25rem;
    }
    
    .footer__text {
        font-size: 0.9rem;
    }
}