/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */

.footer {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--color-border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.footer__links {
    display: flex;
    gap: var(--space-6);
}

.footer__links a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer__links a:hover {
    color: var(--color-accent-light);
}

.footer__copy {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
