.site-footer {
    background: var(--color-dark-950);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr) 1.2fr;
    gap: 32px;
    padding-bottom: 56px;
}

/* ===== Бренд-колонка ===== */

.site-footer__logo {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.04em;
}
.site-footer__logo-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-gold-500);
    margin: 14px 0 20px;
}
.site-footer__description {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    margin: 0 0 28px;
}

.site-footer__stats {
    display: flex;
    gap: 24px;
}
.site-footer__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.site-footer__stat-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold-500);
}
.site-footer__stat-icon svg { width: 100%; height: 100%; }
.site-footer__stat-value {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}
.site-footer__stat-label {
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

/* ===== Колонки меню ===== */

.site-footer__col-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-sans);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer__link:hover {
    color: #fff;
}
.site-footer__link--accent {
    color: var(--color-gold-500);
    font-weight: 500;
}
.site-footer__link--accent svg {
    width: 13px;
    height: 13px;
}

/* ===== Контакты ===== */

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.site-footer__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.site-footer__contact svg {
    width: 17px;
    height: 17px;
    color: var(--color-gold-500);
    flex-shrink: 0;
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border: 1px solid var(--color-gold-500);
    border-radius: 12px;
    color: var(--color-gold-500);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.site-footer__cta svg { width: 15px; height: 15px; }
.site-footer__cta:hover {
    background: var(--color-gold-500);
    color: var(--color-dark-950);
}

/* ===== Нижняя строка ===== */

.site-footer__bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.site-footer__copyright {
    white-space: nowrap;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}
.site-footer__legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer__legal a:hover {
    color: #fff;
}
.site-footer__legal-dot {
    color: rgba(255,255,255,0.2);
}

.site-footer__privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.site-footer__privacy svg {
    width: 14px;
    height: 14px;
}

/* ===== Адаптив ===== */

@media (max-width: 1199px) {
    .site-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer__top {
        grid-template-columns: 1fr;
    }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}