.footer {
    background: var(--white);
    padding: clamp(3rem, 6vw, 4.5rem) 2rem 2rem;
}

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

.footer__top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;
}

.footer__logo {
    width: clamp(100px, 18vw, 140px);
}

.footer__nav {
    display: flex;
    gap: 1.5rem;
}

.footer__link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 0.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    text-align: center;
    border: 1px solid var(--beige);
    padding: 5px 5px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--beige);
    transition: .3s ease;
}


.footer__social-link:hover {
    color: var(--white);
    background: var(--beige);
}

.footer__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 2rem 0 1.5rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text);
}

.footer__dev a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
}

.footer__dev a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__nav,
    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
