/* ============================================================================
   MODULE FOOTER [ft-footer] - CSS PURE ET SCOPÉ
   ============================================================================ */

#ft-footer {
    padding: 2.5rem 4rem;
    background: #0f0f0e; /* Var: ink */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Sans', system-ui, sans-serif;
}

#ft-footer .footer-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #f7f4ef; /* Var: cream */
    font-size: 1.4rem;
}

#ft-footer .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#ft-footer .footer-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    font-weight: 500;
}

#ft-footer .footer-links a:hover { 
    color: #c49a3c; /* Var: gold */
}

#ft-footer .footer-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    #ft-footer { 
        padding: 4rem 1.5rem; 
        flex-direction: column; 
        gap: 1.5rem; 
        text-align: center; 
    }
    
    #ft-footer .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
}