/* ==========================================================================
   REP MOBILE CO - Pied de page
   ========================================================================== */

footer.site-footer {
    margin-top: auto;
    padding: 0;
    border-top: 1px solid var(--bordure, rgba(201, 162, 39, 0.14));
    background: var(--noir-900, #0D0C0A);
    color: var(--texte, #D9D5CD);
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    text-align: left;
}

.site-footer .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 320px;
}

.site-footer .footer-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--blanc, #F5F2EC);
    padding: 4px;
}

.site-footer .footer-name {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--texte-fort, #F5F2EC);
}

.site-footer .footer-tagline {
    display: block;
    margin-top: 2px;
    font-size: .74rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent, #C9A227);
}

.site-footer .footer-coordonnees {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
    font-size: .85rem;
    color: var(--texte-doux, #A8A299);
}

.site-footer .footer-coordonnees a {
    color: var(--texte-doux, #A8A299);
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer .footer-coordonnees a:hover {
    color: var(--accent, #C9A227);
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.site-footer .footer-col {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.site-footer .footer-col-title {
    margin-bottom: 4px;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent, #C9A227);
}

.site-footer .footer-col a {
    color: var(--texte-doux, #A8A299);
    font-size: .89rem;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.site-footer .footer-col a:hover,
.site-footer .footer-col a:focus-visible {
    color: var(--texte-fort, #F5F2EC);
    transform: translateX(3px);
}

.site-footer .footer-bottom {
    border-top: 1px solid var(--gris-800, #2E2B27);
    padding: 16px 24px;
    text-align: center;
}

.site-footer .footer-bottom p {
    margin: 0;
    font-size: .82rem;
    color: var(--gris-400, #8B857C);
}

/* Accès discret à l'espace de gestion, conservé depuis l'ancien footer */
.site-footer .hidden-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.site-footer .hidden-link:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .site-footer .footer-inner {
        flex-direction: column;
        gap: 30px;
        padding: 34px 20px 26px;
    }

    .site-footer .footer-links {
        gap: 28px;
        width: 100%;
    }

    .site-footer .footer-col {
        min-width: 42%;
    }
}
