:root {
    --gold: #c5a059;
    --dark-gold: #8f6b1e;
    --deep-black: #0a0a0a;
}

.site-footer {
    background: linear-gradient(to bottom, #0f0f0f, #050505);
    margin-top: 6rem;
    position: relative;
    color: var(--gold);
}

/* Bordure supérieure "Ligne d'Or" */
.footer-ornament-top {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dark-gold), transparent);
    width: 80%;
    margin: 0 auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* --- Marque du Footer --- */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .site-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.footer-brand .brand-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--dark-gold);
    letter-spacing: 2px;
}

/* --- Séparateur Central --- */
.footer-center-divider {
    color: var(--dark-gold);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* --- Navigation & Liens --- */
.footer-sections {
    display: flex;
    gap: 3rem;
}

.footer-links a,
.footer-legal a {
    display: block; /* Empilés comme une liste ancienne */
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--dark-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--gold);
    padding-left: 5px; /* Petit décalage élégant */
}

/* --- Copyright --- */
.footer-bottom {
    background: #000;
    padding: 1.5rem;
    border-top: 1px solid rgba(143, 107, 30, 0.1);
}

.footer-copy {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: rgba(143, 107, 30, 0.6);
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-sections {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-center-divider {
        display: none;
    }
}