.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 34px 28px;
}

.site-footer__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.6fr 1.35fr;
    align-items: stretch;
}

.site-footer__brand,
.site-footer__col {
    padding: 8px 26px;
}

.site-footer__brand,
.site-footer__col:not(:last-child) {
    border-right: 3px solid var(--footer-separator);
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer__brand img {
    width: 110px;
    height: auto;
}

.site-footer__brand-text {
    line-height: 1.05;
}

.site-footer__brand-text strong {
    display: block;
    font-size: clamp(34px, 2vw, 44px);
    letter-spacing: 0.03em;
}

.site-footer__brand-text span {
    display: block;
    font-size: clamp(28px, 1.45vw, 36px);
}

.site-footer h3 {
    margin: 0 0 14px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 1.35vw, 30px);
    line-height: 1;
}

.site-footer p {
    margin: 0 0 9px;
    font-size: clamp(13px, 0.82vw, 17px);
    line-height: 1.25;
    opacity: 0.7;
}

.site-footer__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    vertical-align: -2px;
}

.site-footer__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--footer-text);
}

.site-footer__social {
    text-align: center;
}

.site-footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.site-footer__social-links a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: transparent;
    border: 2px solid var(--color-white);
    border-radius: 999px;
    opacity: 0.7;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.site-footer__nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 26px;
}

.site-footer__nav a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: clamp(13px, 0.82vw, 17px);
    line-height: 1.1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.site-footer__nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer__social-links a:hover,
.site-footer__info a:hover {
    opacity: 1;
}

.site-footer__social-links a:hover {
    background: var(--color-white);
    color: var(--brand-color);
}

.site-footer__info a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 980px) {
    .site-footer {
        padding: 24px 16px 0 16px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer__brand,
    .site-footer__col {
        border-right: 0;
        border-bottom: 2px solid var(--footer-separator-mobile);
        padding: 18px 4px;
        text-align: center;
    }

    .site-footer__info,
    .site-footer__social {
        border-right: 0 !important;
    }

    .site-footer__brand {
        justify-content: center;
    }

    .site-footer__col:last-child {
        border-bottom: 0;
    }

    .site-footer__brand img {
        width: 90px;
    }

    .site-footer__social-links {
        flex-direction: row;
        justify-content: center;
    }

    .site-footer__info p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .site-footer__info .site-footer__icon {
        margin-right: 0;
        flex: 0 0 auto;
        width: 18px;
        height: 18px;
    }

    .site-footer__info a {
        display: inline-block;
    }

    .site-footer__nav-links {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }
}

.site-subfooter {
    background: var(--subfooter-bg);
    color: var(--subfooter-text);
    padding: 8px 14px;
}

.site-subfooter__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-subfooter__inner img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.site-subfooter p {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
}

.site-subfooter a {
    color: var(--subfooter-link);
    text-decoration: underline;
}

.site-subfooter a:hover {
    text-decoration: underline;
}
