/* ==========================================================================
   FOOTER — pied de page (logo, description, réseaux, colonnes de liens,
   mention légale courte).
   ========================================================================== */

footer {
    border-top: 1px solid var(--ligne);
    padding: 56px 0 40px;
    background: #000
}

.flogo img {
    width: 170px
}

.frow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 44px;
    margin-top: 20px
}

.fbrand {
    max-width: 300px
}

.fbrand p {
    color: var(--gris);
    font-size: 13.5px;
    max-width: 300px;
    line-height: 1.55;
    margin-bottom: 14px
}

.fcontact {
    display: flex;
    align-items: center;
    gap: 14px
}

.fbrand .femail {
    color: var(--gris);
    font-size: 13.5px;
    transition: .2s
}

.fbrand .femail:hover {
    color: var(--lime)
}

.fig {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--ligne);
    border-radius: 50%;
    color: var(--gris);
    flex-shrink: 0;
    transition: .2s
}

.fig i {
    font-size: 15px
}

.fig:hover {
    color: #000;
    background: var(--lime);
    border-color: var(--lime)
}

.fcols {
    display: flex;
    gap: 56px;
    flex-wrap: wrap
}

.fcol {
    min-width: 130px
}

.fcol h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gris);
    margin-bottom: 16px
}

.fcol a {
    display: block;
    font-size: 13.5px;
    color: #d2d2ce;
    padding: 6px 0;
    transition: .2s
}

.fcol a:hover {
    color: var(--lime)
}

.legal {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--ligne);
    color: #5a5a5e;
    font-size: 11.5px;
    line-height: 1.6
}

@media(max-width:900px) {
    .frow {
        flex-direction: column;
        gap: 28px;
        margin-top: 18px
    }

    .fbrand {
        max-width: none
    }

    .fcols {
        gap: 24px;
        justify-content: space-between
    }

    .fcol {
        min-width: 0;
        flex: 1
    }

    .fcol h5 {
        font-size: 10.5px;
        letter-spacing: .06em
    }

    .fcol a {
        font-size: 12px
    }
}
