.site-footer {
    padding: 70px 0 28px;
    background: #06140c !important;
    color: var(--white) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
}

.footer-logo {
    color: var(--white) !important;
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.64) !important;
    line-height: 1.72;
}

.footer-col h4 {
    margin: 0 0 16px;
    color: var(--gold) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-col a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.64) !important;
    font-weight: 700;
    text-decoration: none !important;
}

.footer-col a:hover {
    color: var(--white) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.56) !important;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56) !important;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.56) !important;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    color: var(--white) !important;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* ===== Мобильная адаптация подвала ===== */

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 28px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px;
    }
}
