/* === FOOTER STYLISÉ === */
.site-footer {
    position: relative;
    padding: 80px 5% 40px;
    background: linear-gradient(175deg, #2a2a28 0%, #1F1F1E 100%);
    color: var(--bitter);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    border-top: 1px solid rgba(203, 194, 80, 0.1);
}

/* Texture géométrique */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, 
            rgba(203, 194, 80, 0.03) 0%, 
            transparent 25%),
        repeating-linear-gradient(
            45deg,
            var(--tuatara),
            var(--tuatara) 1px,
            transparent 1px,
            transparent 40px
        );
    z-index: 0;
}

/* Élément décoratif doré */
.site-footer::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--turmeric);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(0.8);
    transition: filter var(--transition-speed) ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--turmeric);
    transition: width var(--transition-speed) ease;
}

.footer-title:hover::after {
    width: 80px;
}

.footer-nav, 
.footer-contact, 
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--bitter);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: white;
    padding-left: 10px;
}

.footer-link:hover::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--turmeric);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--suvaGray);
    margin-top: auto;
}

.social-icon {
    display: inline-block;
    color: var(--bitter);
    transition: all var(--transition-speed) ease;
    padding: 5px 0;
}

.social-icon:hover {
    color: var(--turmeric);
    transform: translateX(5px);
}

.footer-separator {
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(203, 194, 80, 0.4), 
        transparent);
    margin: 60px 0 30px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal .footer-link {
    font-size: 0.8rem;
    color: var(--suvaGray);
}

/* Version mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 5% 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        align-items: center;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-title:hover::after {
        width: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link:hover {
        padding-left: 0;
    }
    
    .footer-link:hover::before {
        display: none;
    }
    
    .footer-copyright {
        margin-top: 20px;
    }
    
    .footer-legal {
        gap: 15px;
    }
}