/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #070b14;
    color: rgba(255, 255, 255, 0.78);
    padding: 78px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
}

.site-footer a:not(.footer-news-btn):hover,
.site-footer a:not(.footer-news-btn):focus-visible {
    color: var(--color-gold);
}

.footer-cols {
    display: grid;
    grid-template-columns: minmax(240px, 1.18fr) repeat(5, minmax(130px, 0.92fr));
    gap: clamp(28px, 2.4vw, 42px);
    align-items: start;
}

.footer-col h4 {
    margin: 0 0 22px;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-col-brand {
    max-width: 340px;
}

.footer-brand-tagline {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.footer-news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-news-btn:hover,
.footer-news-btn:focus-visible {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #fff;
    transform: translateY(-1px);
}

.footer-social-block {
    margin-top: 34px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.55;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.footer-note {
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.85;
}

.bottom-info {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .footer-cols {
        grid-template-columns: minmax(280px, 1.1fr) repeat(2, minmax(0, 1fr));
        gap: 38px;
    }

    .footer-brand-tagline {
        font-size: 20px;
    }
}

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

    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-col-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .footer-brand-tagline {
        max-width: 24ch;
        font-size: 19px;
        line-height: 1.5;
    }

    .bottom-info {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 54px 0 22px;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand-tagline {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 1.55;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-note,
    .bottom-info p {
        font-size: 14px;
    }
}
