/* ========== FOOTER ========== */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 3rem;
    margin-top: 5rem;
    background: #030406;
    position: relative;
    z-index: 10;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: color 0.25s, transform 0.25s;
}

.footer-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Reduced motion support */
