/* ── Site Footer ───────────────────────────────────────── */
.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-info p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* ── Footer Nav ───────────────────────────────────────── */
.footer-nav-list {
    list-style: none;
    display: flex;
    gap: 24px;
}

.footer-nav-list a {
    color: var(--color-text-muted);
    font-size: 14px;
    transition: color .2s;
}
.footer-nav-list a:hover {
    color: var(--color-white);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
