/* =========================================================
   LPROJECT WEB — FOOTER
========================================================= */

.lp-site-footer {
    position: relative;
    padding: 85px 0 30px;

    background:
        linear-gradient(
            180deg,
            #0a0a0c,
            #070708
        );

    border-top: 1px solid rgba(255,255,255,.07);

    color: #fff;
}

.lp-footer-inner {
    width: min(1320px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   HAUT
========================================================= */

.lp-footer-top {
    display: grid;

    grid-template-columns:
        1.35fr
        .65fr
        .8fr
        .8fr;

    gap: 70px;

    padding-bottom: 65px;
}


/* =========================================================
   IDENTITÉ / LOGO
========================================================= */

.lp-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lp-footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: #fff !important;
    text-decoration: none !important;

    line-height: 1;
}


/* Vrai logo Lproject */

.lp-footer-logo-symbol {
    display: block;

    width: 38px;
    height: auto;

    flex: 0 0 auto;

    object-fit: contain;
}


/* Texte à droite du logo */

.lp-footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
}

.lp-footer-logo-text strong {
    display: block;

    margin: 0;

    color: #f5f5f5;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: .045em;

    white-space: nowrap;
}

.lp-footer-logo-text small {
    display: block;

    margin-top: 6px;

    color: #5f5f65;

    font-size: 7px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: .22em;

    white-space: nowrap;
}


/* Description */

.lp-footer-brand > p {
    max-width: 390px;

    margin: 25px 0 0;

    color: #74747a;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COLONNES
========================================================= */

.lp-footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}

.lp-footer-title {
    margin-bottom: 8px;

    color: #ff6a00;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .18em;

    text-transform: uppercase;
}


/* Liens et éléments des colonnes */

.lp-footer-column a,
.lp-footer-column > span:not(.lp-footer-title) {
    color: #7d7d83;

    font-size: 12px;
    line-height: 1.4;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.lp-footer-column a:hover {
    color: #fff;

    transform: translateX(3px);
}


/* =========================================================
   CONTACT
========================================================= */

.lp-footer-contact p {
    margin: 0;

    color: #77777d;

    font-size: 12px;
    line-height: 1.6;
}

.lp-footer-contact-link {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-top: 8px;

    color: #fff !important;

    font-weight: 600;

    text-decoration: none !important;
}

.lp-footer-contact-link span {
    color: #ff6a00;

    transition: transform .25s ease;
}

.lp-footer-contact-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   BAS DU FOOTER
========================================================= */

.lp-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.lp-footer-bottom p {
    margin: 0;

    color: #505056;

    font-size: 10px;
    line-height: 1.5;
}

.lp-footer-legal {
    display: flex;
    align-items: center;

    gap: 24px;
}

.lp-footer-legal a {
    color: #505056;

    font-size: 10px;

    text-decoration: none;

    transition: color .25s ease;
}

.lp-footer-legal a:hover {
    color: #a4a4a8;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 950px) {

    .lp-site-footer {
        padding-top: 70px;
    }

    .lp-footer-top {
        grid-template-columns:
            1fr 1fr;

        gap: 50px 60px;
    }

    .lp-footer-brand > p {
        max-width: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .lp-site-footer {
        padding: 60px 0 25px;
    }

    .lp-footer-inner {
        width: calc(100% - 34px);
    }


    /* Colonnes */

    .lp-footer-top {
        grid-template-columns: 1fr;

        gap: 42px;

        padding-bottom: 45px;
    }


    /* Logo */

    .lp-footer-logo {
        gap: 12px;
    }

    .lp-footer-logo-symbol {
        width: 34px;
    }

    .lp-footer-logo-text strong {
        font-size: 13px;
    }

    .lp-footer-logo-text small {
        margin-top: 5px;

        font-size: 6px;

        letter-spacing: .2em;
    }


    /* Description */

    .lp-footer-brand > p {
        max-width: 100%;

        margin-top: 22px;

        font-size: 12px;
    }


    /* Bas */

    .lp-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .lp-footer-legal {
        flex-wrap: wrap;

        gap: 14px 20px;
    }

}