.site-footer {
    background: var(--color-active);
    padding: clamp(40px, 6vw, 100px) 0;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== Верхняя строка ===== */

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-footer__brand-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer__brand-title {
    font-family: var(--font-numeric);
    font-size: 22px;
    line-height: 0.9;
    color: var(--color-peach);
}

.site-footer__brand-subtitle {
    font-family: var(--font-numeric);
    font-size: 12px;
    line-height: 0.9;
    color: var(--color-peach);
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 33px;
    flex-wrap: wrap;
}

.site-footer__nav-link {
    color: #f7f3ec;
    font-family: var(--font-sans);
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}
.site-footer__nav-link:hover {
    opacity: 0.75;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.site-footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}
.site-footer__social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Копирайт + юридический блок ===== */

.site-footer__copyright {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #f7f3ec;
}

.site-footer__legal {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__legal-text {
    margin: 0;
    max-width: 1046px;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.4;
    color: #cfa9ac;
}

.site-footer__legal-link {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #cfa9ac;
    text-decoration: underline;
    white-space: nowrap;
}
.site-footer__legal-link:hover {
    color: #f7f3ec;
}

@media (max-width: 767px) {
    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }
}
