/* ── Footer — mobile first ───────────────────────────────────────────── */
footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 44px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-brand:hover, .footer-brand:focus-visible { color: var(--accent-mauve); }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
}
.footer-links a {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover, .footer-links a:focus-visible { color: var(--accent-mauve); }

.footer-copy { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; }

/* ── Desktop ─────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
    footer { padding: 52px 72px; }
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 0;
    }
    .footer-links { gap: 34px; }
}
