.site-footer {
    padding: 4rem 0 2rem;
    background: #111;
    color: #fff;
}

.site-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-title);
    font-size: 1.4rem;
}

.site-footer__text,
.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__menu,
.site-footer__nav .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__bottom {
    padding-top: 1.2rem;
}

@media (max-width: 860px) {
    .site-footer {
        padding: 3rem 0 1.8rem;
    }

    .site-footer__inner {
        flex-direction: column;
        padding-bottom: 1.5rem;
    }

    .site-footer__menu,
    .site-footer__nav .menu {
        justify-content: flex-start;
    }
}