.site-footer {
    background: #111;
    color: #888;
}

.site-footer__shell {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 64px 24px 32px;
}

/* ── Grid ──────────────────────────────────────────────────── */
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

/* ── Brand column ──────────────────────────────────────────── */
.site-footer__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #D4A843;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.site-footer__tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 22px;
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    color: #888;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-btn:hover {
    border-color: #D4A843;
    color: #D4A843;
}

.site-footer__social-btn svg {
    width: 18px;
    height: 18px;
}

/* ── Shared column styles ──────────────────────────────────── */
.site-footer__col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 18px;
}

/* ── Nav column ────────────────────────────────────────────── */
.site-footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.site-footer__nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover {
    color: #fff;
}

/* ── Contact column ────────────────────────────────────────── */
.site-footer__contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.site-footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.4;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    color: #D4A843;
    display: inline-flex;
}

/* ── Divider ───────────────────────────────────────────────── */
.site-footer__divider {
    margin: 48px 0 24px;
    border: none;
    border-top: 1px solid #222;
}

/* ── Bottom bar ────────────────────────────────────────────── */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer__disclaimer {
    font-size: 0.78rem;
    line-height: 1.65;
    max-width: 640px;
}

.site-footer__badge {
    font-size: 0.8rem;
    color: #D4A843;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__shell {
        padding: 48px 18px 28px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
