.footer {
    background: var(--black);
    color: var(--cream);
    margin-top: 8rem;
}

.footer__inner {
    padding: 5rem 0 2rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.footer__brand .navbar__logo {
    color: var(--cream);
}

.footer__tagline {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--gray);
    margin-top: 1rem;
    font-style: italic;
}

.footer__links .label {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links ul li,
.footer__links ul li a {
    font-size: 14px;
    color: rgba(245, 243, 238, 0.5);
    transition: color 0.2s ease;
}

.footer__links ul li a:hover {
    color: var(--cream);
}

.footer__contact .label {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.footer__contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact ul li,
.footer__contact ul li a {
    font-size: 14px;
    color: rgba(245, 243, 238, 0.5);
    transition: color 0.2s ease;
}

.footer__contact ul li a:hover {
    color: var(--cream);
}

.footer__socials {
    display: flex;
    gap: 16px;
    margin-top: 1.5rem;
}

.footer__social-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 243, 238, 0.4);
    border-bottom: 0.5px solid rgba(245, 243, 238, 0.2);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.footer__social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 12px;
    color: rgba(245, 243, 238, 0.3);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer__top {
        grid-template-columns: 1fr;
    }
}