/* =========================================================
   NATELY FOREVER
   MENTIONS LÉGALES
   ========================================================= */


/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #34363a;
    color: #ffffff;

    font-family: 'Jost', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ---------------------------------------------------------
   VARIABLES
   --------------------------------------------------------- */

:root {
    --burgundy: #641f2b;
    --burgundy-light: #8b3949;

    --space-gray: #34363a;

    --white: #ffffff;

    --gray-text: rgba(255, 255, 255, 0.72);
    --gray-light: rgba(255, 255, 255, 0.48);
    --line: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   PAGE MENTIONS LÉGALES
   ========================================================= */

.legal-page {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background: var(--space-gray);
}


/* ---------------------------------------------------------
   BARRE DU HAUT
   --------------------------------------------------------- */

.legal-top {
    width: 100%;

    padding: 18px 36px;

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

    border-bottom: 1px solid var(--line);
}


/* ---------------------------------------------------------
   BOUTON RETOUR
   --------------------------------------------------------- */

.back-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;
    font-weight: 400;

    letter-spacing: -0.025em;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.back-button span {
    font-size: 20px;
    line-height: 1;
}

.back-button:hover {
    opacity: 0.65;

    transform: translateX(-3px);
}


/* ---------------------------------------------------------
   NUMÉRO
   --------------------------------------------------------- */

.legal-number {
    font-size: 13px;
    font-weight: 500;

    letter-spacing: -0.02em;
}


/* =========================================================
   CONTENU
   ========================================================= */

.legal-content {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding:
        110px
        36px
        120px;
}


/* =========================================================
   HEADER
   ========================================================= */

.legal-header {
    width: 100%;

    max-width: 850px;
}


/* ---------------------------------------------------------
   LIGNE
   --------------------------------------------------------- */

.legal-line {
    display: block;

    width: 38%;

    height: 2px;

    margin-bottom: 28px;

    background: var(--burgundy-light);
}


/* ---------------------------------------------------------
   LABEL
   --------------------------------------------------------- */

.legal-label {
    margin: 0;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.55);
}


/* ---------------------------------------------------------
   TITRE
   --------------------------------------------------------- */

.legal-header h1 {
    margin-top: 35px;

    font-family: "Parisienne", cursive;

    font-size: clamp(
        58px,
        7vw,
        100px
    );

    font-weight: 500;

    line-height: 0.82;

    letter-spacing: -0.025em;
}

.legal-header h1 span {
    display: inline-block;

    margin-left: 70px;

    color: var(--burgundy-light);
}


/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */

.legal-intro {
    max-width: 480px;

    margin-top: 45px;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.025em;

    color: var(--gray-text);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.legal-sections {
    width: 100%;

    max-width: 1050px;

    margin-top: 120px;

    margin-left: auto;
}


/* ---------------------------------------------------------
   SECTION INDIVIDUELLE
   --------------------------------------------------------- */

.legal-section {
    display: grid;

    grid-template-columns: 80px minmax(0, 1fr);

    gap: 35px;

    padding:
        42px
        0;

    border-top: 1px solid var(--line);
}


/* ---------------------------------------------------------
   NUMÉRO SECTION
   --------------------------------------------------------- */

.legal-section-number {
    padding-top: 5px;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.03em;

    color: var(--burgundy-light);
}


/* ---------------------------------------------------------
   CONTENU SECTION
   --------------------------------------------------------- */

.legal-section-content {
    max-width: 720px;
}


/* ---------------------------------------------------------
   TITRE SECTION
   --------------------------------------------------------- */

.legal-section-content h2 {
    margin: 0;

    font-family: "Parisienne", cursive;

    font-size: clamp(
        36px,
        4vw,
        52px
    );

    font-weight: 500;

    line-height: 0.88;

    color: var(--white);
}


/* ---------------------------------------------------------
   PARAGRAPHES
   --------------------------------------------------------- */

.legal-section-content p {
    max-width: 700px;

    margin-top: 25px;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -0.025em;

    color: var(--gray-text);
}


/* ---------------------------------------------------------
   TEXTE IMPORTANT
   --------------------------------------------------------- */

.legal-highlight {
    color: var(--white) !important;

    font-weight: 500 !important;
}


/* ---------------------------------------------------------
   LIENS
   --------------------------------------------------------- */

.legal-section-content a {
    color: var(--white);

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.4);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.legal-section-content a:hover {
    color: var(--burgundy-light);

    border-color: var(--burgundy-light);
}


/* ---------------------------------------------------------
   EMAILS
   --------------------------------------------------------- */

.legal-emails {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;

    margin-top: 25px;
}

.legal-emails a {
    font-size: 16px;

    color: var(--white);
}


/* =========================================================
   MISE À JOUR
   ========================================================= */

.legal-update {
    width: 100%;

    max-width: 1050px;

    margin:
        20px
        0
        0
        auto;

    padding-top: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-top: 1px solid var(--line);
}

.legal-update span {
    width: 35px;
    height: 1px;

    background: var(--burgundy-light);
}

.legal-update p {
    font-size: 10px;

    letter-spacing: 0.06em;

    color: var(--gray-light);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    background: var(--burgundy);
    color: var(--white);

    padding: 70px 36px 30px;

    overflow: hidden;
}


/* ---------------------------------------------------------
   CONTENU
   --------------------------------------------------------- */

.footer-content {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    column-gap: 80px;
    row-gap: 70px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   PARTIE PRINCIPALE
   --------------------------------------------------------- */

.footer-main {
    max-width: 620px;
}


/* ---------------------------------------------------------
   TITRE
   --------------------------------------------------------- */

.footer-title {
    margin: 0;

    font-size: clamp(
        48px,
        6vw,
        82px
    );

    line-height: 0.85;

    letter-spacing: -0.055em;

    font-weight: 500;
}

.footer-title span {
    color: rgba(255, 255, 255, 0.65);
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.footer-description {
    max-width: 560px;

    margin-top: 30px;

    font-size: 16px;

    line-height: 1.1;

    color: rgba(255, 255, 255, 0.78);
}


/* ---------------------------------------------------------
   BOUTON
   --------------------------------------------------------- */

.footer-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;

    padding: 14px 20px;

    background: var(--white);

    color: var(--burgundy);

    font-size: 13px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-button span {
    font-size: 22px;

    line-height: 1;
}

.footer-button:hover {
    background: var(--space-gray);

    color: var(--white);

    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   NAVIGATION FOOTER
   --------------------------------------------------------- */

.footer-nav {
    display: grid;

    grid-template-columns:
        180px
        260px;

    gap: 70px;

    align-self: start;

    width: fit-content;
}


/* ---------------------------------------------------------
   COLONNES
   --------------------------------------------------------- */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* ---------------------------------------------------------
   TITRES
   --------------------------------------------------------- */

.footer-column h3 {
    margin: 0 0 8px;

    font-size: 15px;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.65);
}


/* ---------------------------------------------------------
   LIENS
   --------------------------------------------------------- */

.footer-column a {
    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;

    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--white);
}


/* ---------------------------------------------------------
   BAS FOOTER
   --------------------------------------------------------- */

.footer-bottom {
    grid-column: 1 / -1;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 20px;

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

    font-size: 10px;

    letter-spacing: 0.06em;

    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-right {
    display: flex;

    align-items: center;

    gap: 5px;
}


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

@media (max-width: 1000px) {

    .legal-content {
        padding:
            90px
            24px
            100px;
    }

    .legal-sections,
    .legal-update {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;

        row-gap: 60px;
    }

    .footer-main {
        max-width: 620px;
    }

    .footer-nav {
        width: 100%;

        grid-template-columns:
            180px
            260px;

        gap: 50px;
    }

    .footer-bottom {
        grid-column: auto;
    }
}


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

@media (max-width: 809px) {

    .legal-top {
        padding:
            14px 16px;
    }


    .legal-content {
        padding:
            75px
            16px
            80px;
    }


    /* HEADER */

    .legal-line {
        width: 65%;

        height: 1px;

        margin-bottom: 20px;
    }

    .legal-label {
        font-size: 9px;
    }

    .legal-header h1 {
        margin-top: 28px;

        font-size:
            clamp(
                48px,
                15vw,
                70px
            );

        line-height: 0.85;
    }

    .legal-header h1 span {
        margin-left: 35px;
    }

    .legal-intro {
        max-width: 310px;

        margin-top: 32px;

        font-size: 15px;

        line-height: 1.08;
    }


    /* SECTIONS */

    .legal-sections {
        margin-top: 75px;
    }

    .legal-section {
        grid-template-columns: 38px minmax(0, 1fr);

        gap: 14px;

        padding:
            32px 0;
    }

    .legal-section-number {
        padding-top: 4px;

        font-size: 10px;
    }

    .legal-section-content h2 {
        font-size:
            clamp(
                32px,
                10vw,
                44px
            );

        line-height: 0.88;
    }

    .legal-section-content p {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.1;
    }

    .legal-emails {
        margin-top: 20px;

        gap: 7px;
    }

    .legal-emails a {
        font-size: 14px;

        overflow-wrap: anywhere;
    }


    /* UPDATE */

    .legal-update {
        margin-top: 15px;

        padding-top: 18px;

        gap: 10px;
    }

    .legal-update p {
        font-size: 8px;
    }


    /* FOOTER */

    .site-footer {
        padding:
            40px
            24px
            25px;
    }

    .footer-content {
        display: grid;

        grid-template-columns: 1fr;

        row-gap: 55px;
    }

    .footer-main {
        max-width: 100%;
    }

    .footer-title {
        font-size:
            clamp(
                38px,
                11vw,
                40px
            );

        line-height: 0.86;
    }

    .footer-description {
        max-width: 310px;

        margin-top: 25px;

        font-size: 14px;

        line-height: 1.1;
    }

    .footer-button {
        margin-top: 25px;

        padding:
            13px 17px;

        gap: 10px;

        font-size: 11px;
    }

    .footer-button span {
        font-size: 20px;
    }

    .footer-nav {
        width: 100%;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 30px;
    }

    .footer-column {
        min-width: 0;

        gap: 10px;
    }

    .footer-column h3 {
        margin-bottom: 7px;

        font-size: 11px;
    }

    .footer-column a {
        font-size: 12px;

        line-height: 1.15;
    }

    .footer-bottom {
        grid-column: auto;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        padding-top: 17px;

        font-size: 8px;
    }

    .footer-bottom-right {
        width: 100%;

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        gap: 5px;
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media (max-width: 380px) {

    .legal-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .legal-header h1 {
        font-size: 46px;
    }

    .legal-section {
        grid-template-columns: 30px minmax(0, 1fr);

        gap: 10px;
    }

    .legal-section-content h2 {
        font-size: 30px;
    }

    .legal-section-content p {
        font-size: 14px;
    }

    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-title {
        font-size: 36px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 7px;
    }
}


/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}