/* ── FOOTER (white chrome) ── */
footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 36px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--bg); }
.footer-copy { font-size: 0.78rem; color: #64748b; }

/* ── RESPONSIVE ── */
@media (max-width: 580px) {
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
