:root{
    --black:#07090a;
    --black2:#0d1113;
    --ink:#111517;
    --paper:#f4f4f1;
    --white:#fff;
    --muted:#6b7275;
    --accent:#FF004D;
    --accent-soft:#ff3f72;
    --line:#d9dddc;
    --max:1200px;
}


/* =========================================================
   BASE
========================================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:Poppins,Arial,sans-serif;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}


/* =========================================================
HEADER
========================================================= */

.site-header{
    height:88px;
    background:var(--black);
    color:#fff;

    display:flex;
    align-items:center;

    padding:0 4vw;
    gap:36px;

    position:sticky;
    top:0;
    z-index:20;

    border-bottom:1px solid rgba(255,255,255,.07);
}

.brand{
    display:flex;
    align-items:center;
    gap:13px;
    min-width:320px;
}

.brand-image{
    width:40px;
    height:44px;
    object-fit:contain;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-text strong{
    font-size:18px;
    letter-spacing:.13em;
    display:block;
}

.brand-text em{
    font-style:normal;
    color:var(--accent);
    font-size:27px;
    font-weight:700;
    letter-spacing:0;
}

nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex:1;
}

nav a{
    font-size:16px;
    color:#d7dcdd;
    padding:33px 0 28px;
    border-bottom:2px solid transparent;
}

nav a.active,
nav a:hover{
    color:#fff;
    border-color:var(--accent);
}

.header-cta{
    border:1px solid #fff;
    background:#fff;
    color:var(--accent);

    padding:13px 18px;

    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.04em;
    white-space:nowrap;
    font-weight:600;
}

.header-cta:hover{
    background:var(--accent);
    color:#fff;
}

/* =========================================================
   CONTACT
========================================================= */

.contact{
    min-height:calc(100vh - 88px);

    background:var(--paper);

    padding:90px 7vw 100px;

    display:flex;
    align-items:center;
}

.contact-content{
    width:100%;
    max-width:var(--max);

    margin:0 auto;

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap:70px;

    align-items:center;
}

.contact-text{
    min-width:0;
}

.contact h1{
    max-width:750px;

    margin:0;

    font-size:clamp(48px,5.5vw,76px);

    line-height:1.02;

    font-weight:600;

    letter-spacing:.01em;
}

.contact-intro{
    max-width:650px;

    margin:40px 0 35px;

    font-size:18px;

    line-height:1.7;

    color:#5d6466;
}

.contact-button{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-height:52px;

    padding:0 28px;

    background:var(--accent);

    color:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:.06em;

    text-transform:uppercase;

    transition:.2s ease;
}

.contact-button:hover{
    background:var(--black);
}

.contact-links{
    margin-top:75px;

    padding-top:25px;

    border-top:1px solid var(--line);

    display:flex;

    align-items:center;

    gap:28px;

    max-width:650px;
}

.contact-links p{
    margin:0;

    font-size:12px;

    color:var(--muted);

    text-transform:uppercase;

    letter-spacing:.12em;
}

.contact-links a{
    font-size:14px;

    font-weight:500;

    border-bottom:1px solid var(--ink);

    padding-bottom:2px;
}

.contact-links a:hover{
    color:var(--accent);

    border-color:var(--accent);
}


/* =========================================================
   IMAGE CONTACT
========================================================= */

.contact-image{
    width:100%;

    max-width:570px;

    height:520px;

    justify-self:end;

    overflow:hidden;

    background:#fff;
}

.contact-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}


/* =========================================================
   CONTACT — TABLETTE
========================================================= */

@media(max-width:1000px){

    .contact{
        padding:80px 7vw 90px;
    }

    .contact-content{
        grid-template-columns:
            minmax(0,1fr)
            minmax(0,1fr);

        gap:45px;
    }

    .contact-image{
        height:420px;
    }

}


/* =========================================================
   CONTACT — MOBILE
========================================================= */

@media(max-width:620px){

    .contact{
        min-height:auto;

        padding:70px 6vw 75px;
    }

    .contact-content{
        grid-template-columns:1fr;

        gap:40px;
    }

    .contact h1{
        font-size:44px;
    }

    .contact-intro{
        margin-top:30px;

        font-size:15px;

        line-height:1.7;
    }

    .contact-button{
        width:100%;

        margin-top:5px;
    }

    .contact-links{
        margin-top:60px;

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        gap:18px;
    }

    .contact-image{
        width:100%;

        max-width:none;

        height:300px;

        justify-self:start;
    }

}
/* =========================================================
   ÉLÉMENTS COMMUNS
========================================================= */

.container{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;
}

.eyebrow{
    margin:0 0 18px;

    font-size:13px;

    letter-spacing:.18em;

    color:#aab3b5;

    text-transform:uppercase;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    background:var(--black);

    color:#fff;

    padding:100px 7vw 105px;
}

.hero .container{
    max-width:900px;

    margin-left:7vw;
}

.hero h1{
    margin:0 0 32px;

    font-size:clamp(46px,5.2vw,76px);

    line-height:.98;

    font-weight:600;

    letter-spacing:.01em;
}

.hero h1 span{
    color:var(--accent);
}

.hero-intro{
    margin:0 0 22px;

    font-size:22px;

    line-height:1.45;

    font-weight:500;

    color:#fff;
}

.hero-text{
    max-width:760px;

    margin:0 0 20px;

    font-size:16px;

    line-height:1.75;

    color:#cbd1d2;
}

.hero-text:last-child{
    margin-bottom:0;
}


/* =========================================================
   STRUCTURE ÉDITORIALE COMMUNE
   01 / 02 / 03
========================================================= */

.about-editorial{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;

    padding:95px 0 105px;

    position:relative;
}


/* FONDS */

.about-editorial-light{
    background:var(--paper);
}

.about-editorial-white{
    background:var(--paper);
}


/* =========================================================
   EN-TÊTE
   01 / 02
========================================================= */

.about-editorial-header{
    width:100%;

    display:grid;

    grid-template-columns:90px 1fr;

    align-items:center;

    gap:25px;

    margin-bottom:60px;

    border-bottom:1px solid var(--line);

    padding-bottom:22px;
}

.about-index{
    color:var(--accent);

    font-size:30px;

    line-height:1;

    font-weight:600;

    letter-spacing:.02em;

    text-align:right;
}

.about-kicker{
    font-size:13px;

    line-height:1.2;

    letter-spacing:.18em;

    text-transform:uppercase;

    font-weight:600;

    color:#697174;
}


/* =========================================================
   GRILLE
   01 / 02
========================================================= */

.about-editorial-grid{
    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:90px;

    padding-left:115px;
}


/* =========================================================
   GRAND TITRE
========================================================= */

.about-editorial-title h2{
    margin:0;

    font-size:clamp(42px,4vw,62px);

    line-height:1.02;

    font-weight:600;

    letter-spacing:-.025em;
}

.about-editorial-title h2 span{
    color:var(--accent);
}


/* =========================================================
   TEXTE
========================================================= */

.about-editorial-content{
    max-width:570px;
}

.about-editorial-content p{
    margin:0 0 22px;

    font-size:16px;

    line-height:1.75;

    color:#5d6466;
}

.about-editorial-content .about-lead{
    margin-bottom:28px;

    font-size:20px;

    line-height:1.5;

    color:var(--ink);

    font-weight:500;
}


/* =========================================================
   01 — LISTE AVEC FLÈCHES
========================================================= */

.about-word-list{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:0;

    margin:38px 0 35px;

    border-top:1px solid var(--line);
}

.about-word-list span{
    padding:15px 0;

    border-bottom:1px solid var(--line);

    font-size:15px;

    font-weight:500;

    color:var(--ink);
}


/* FLÈCHES UNIQUEMENT POUR LE 01 */

.about-word-list span::before{
    content:"→";

    color:var(--accent);

    margin-right:10px;

    font-weight:600;
}


/* =========================================================
   PHRASE FORTE
========================================================= */

.about-statement{
    border-left:3px solid var(--accent);

    padding:5px 0 5px 20px;

    font-size:15px;

    line-height:1.65;

    color:#50585b;
}

.about-statement strong{
    color:var(--ink);

    font-weight:600;
}


/* =========================================================
   02 — PROCESSUS
========================================================= */

.about-process{
    display:flex;

    flex-direction:column;

    margin:40px 0;

    background:#fff;

    border-top:1px solid var(--line);
}

.about-process > div{
    display:grid;

    grid-template-columns:55px 1fr;

    align-items:center;

    gap:15px;

    min-height:58px;

    padding:0 18px;

    background:#fff;

    border-bottom:1px solid var(--line);
}

.about-process span{
    color:var(--accent);

    font-size:13px;

    font-weight:600;

    letter-spacing:.05em;
}

.about-process strong{
    color:var(--ink);

    font-size:15px;

    line-height:1.3;

    font-weight:500;
}


/* =========================================================
   03 — POSITIONNEMENT
   MÊME SYSTÈME QUE 01 / 02
========================================================= */

.about-manifesto{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;

    padding:95px 0 105px;

    background:var(--paper);

    position:relative;
}


/* ---------------------------------------------------------
   EN-TÊTE DU 03
--------------------------------------------------------- */

.about-manifesto-header{
    width:100%;

    display:grid;

    grid-template-columns:90px 1fr;

    align-items:center;

    gap:25px;

    margin-bottom:60px;

    border-bottom:1px solid var(--line);

    padding-bottom:22px;
}

.about-manifesto-index{
    color:var(--accent);

    font-size:30px;

    line-height:1;

    font-weight:600;

    letter-spacing:.02em;

    text-align:right;
}


/* ---------------------------------------------------------
   CONTENU DU 03
--------------------------------------------------------- */

.about-manifesto-content{
    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:90px;

    padding-left:115px;
}


/* ---------------------------------------------------------
   TITRES DU 03
--------------------------------------------------------- */

.about-manifesto-content h2{
    grid-column:1;

    margin:0;

    font-size:clamp(42px,4vw,62px);

    line-height:1.02;

    font-weight:600;

    letter-spacing:-.025em;
}


/*
   Le h3 rejoint visuellement le grand titre
   dans la colonne de gauche.
*/

.about-manifesto-content h3{
    grid-column:1;

    margin:0;

    margin-top:-65px;

    align-self:end;

    font-size:clamp(34px,3.3vw,50px);

    line-height:1.05;

    font-weight:600;

    letter-spacing:-.025em;
}

.about-manifesto-content h3 span{
    color:var(--accent);
}


/* ---------------------------------------------------------
   TEXTE DU 03
--------------------------------------------------------- */

.about-manifesto-text{
    grid-column:2;

    grid-row:1 / span 2;

    max-width:570px;
}

.about-manifesto-text p{
    margin:0 0 22px;

    font-size:16px;

    line-height:1.75;

    color:#5d6466;
}

.about-manifesto-text p:first-child{
    font-size:20px;

    line-height:1.5;

    color:var(--ink);

    font-weight:500;

    margin-bottom:28px;
}

.about-manifesto-text strong{
    color:var(--ink);

    font-weight:600;
}


/* ---------------------------------------------------------
   PHRASE FINALE DU 03
--------------------------------------------------------- */

.about-manifesto-quote{
    grid-column:2;

    max-width:570px;

    margin-top:20px;

    padding:22px 0 5px 20px;

    border-left:3px solid var(--accent);

    font-size:18px;

    line-height:1.55;

    color:var(--ink);

    font-weight:500;
}

.about-manifesto-quote span{
    color:#5d6466;

    font-weight:400;
}


/* =========================================================
   04 — PÉDAGOGIE ORIENTÉE PRATIQUE
========================================================= */

.about-practice{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;

    padding:100px 0 110px;

    background:var(--paper);
}


/* ---------------------------------------------------------
   EN-TÊTE 04
--------------------------------------------------------- */

.about-practice-header{
    display:grid;

    grid-template-columns:90px 1fr;

    gap:25px;

    align-items:start;

    margin-bottom:55px;
}

.about-practice-header::before{
    content:"04";

    color:var(--accent);

    font-size:30px;

    font-weight:600;

    line-height:1;

    text-align:right;

    grid-column:1;

    grid-row:1 / span 2;
}

.about-practice-header .about-kicker{
    grid-column:2;

    margin:0;
}

.about-practice-header h2{
    grid-column:2;

    margin:10px 0 0;

    font-size:clamp(42px,4vw,62px);

    line-height:1.02;

    font-weight:600;

    letter-spacing:-.025em;
}

.about-practice-header h2 span{
    color:var(--accent);
}


/* ---------------------------------------------------------
   CONTENU 04
--------------------------------------------------------- */

.about-practice-grid{
    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:90px;

    padding-left:115px;

    margin-bottom:55px;
}

.about-practice-grid > p{
    margin:0;

    max-width:520px;

    font-size:18px;

    line-height:1.65;

    color:#4f5759;
}


/* ---------------------------------------------------------
   LISTE 04 AVEC FLÈCHES
--------------------------------------------------------- */

.about-production{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    border-top:1px solid var(--line);

    margin-top:0;
}

.about-production span{
    padding:17px 0;

    border-bottom:1px solid var(--line);

    font-size:15px;

    font-weight:500;

    color:var(--ink);
}


/* FLÈCHES UNIQUEMENT POUR LE 04 */

.about-production span::before{
    content:"→";

    color:var(--accent);

    margin-right:10px;

    font-weight:600;
}


/* ---------------------------------------------------------
   PHRASE FINALE 04
--------------------------------------------------------- */

.about-practice-final{
    margin:0 0 0 115px;

    max-width:800px;

    padding-top:25px;

    border-top:1px solid var(--line);

    font-size:16px;

    line-height:1.7;

    color:#626a6d;
}

.about-practice-final strong{
    color:var(--ink);

    font-weight:600;
}


/* =========================================================
   AUJOURD'HUI
========================================================= */

.today{
    background:var(--black);

    color:#fff;

    padding:95px 7vw 105px;
}

.today .container{
    max-width:var(--max);
}

.today h2{
    margin:0 0 30px;

    font-size:clamp(42px,4vw,62px);

    line-height:1.02;

    font-weight:600;

    letter-spacing:-.025em;
}

.today h2 span{
    color:var(--accent);
}

.today p:not(.eyebrow){
    max-width:760px;

    margin:0 0 22px;

    font-size:16px;

    line-height:1.75;

    color:#cbd1d2;
}

.today .final-statement{
    margin-top:40px;

    padding-left:20px;

    border-left:3px solid var(--accent);

    color:#fff !important;

    font-size:18px !important;

    line-height:1.65 !important;
}


/* =========================================================
   CTA
========================================================= */

.cta{
    background:#151a1c;

    color:#fff;

    padding:70px 7vw;
}

.cta-inner{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;
}

.cta-inner > div{
    max-width:800px;
}

.cta h2{
    margin:0;

    font-size:clamp(30px,3vw,43px);

    line-height:1.1;

    font-weight:600;
}

.cta h2 span{
    color:var(--accent);
}

.button{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    flex:none;

    min-height:48px;

    padding:0 24px;

    border:1px solid #fff;

    background:#fff;

    color:var(--accent);

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:.06em;

    font-weight:700;
}

.button:hover{
    background:var(--accent);

    color:#fff;

    border-color:var(--accent);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    background:#050708;

    color:#8f999b;

    padding:28px 5vw;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    font-size:10px;
}

.footer-brand{
    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;
}

.footer-brand img{
    width:40px;
    height:44px;

    object-fit:contain;
}

.footer-brand strong{
    display:block;

    font-size:15px;

    letter-spacing:.1em;
}

.footer-brand small{
    display:block;

    margin-top:3px;

    font-size:7px;

    letter-spacing:.05em;
}

.site-footer p{
    margin:0;
}


/* =========================================================
   TABLETTE
========================================================= */

@media(max-width:1000px){

    /* HEADER */

    .header{
        height:auto;

        min-height:76px;

        padding:12px 4vw;
    }

    .header-inner{
        flex-wrap:wrap;
    }

    .logo{
        min-width:auto;

        flex:1;
    }

    .navigation{
        order:3;

        width:100%;

        overflow-x:auto;

        justify-content:flex-start;

        gap:22px;
    }

    .navigation a{
        padding:8px 0 10px;

        white-space:nowrap;
    }


    /* HERO */

    .hero{
        padding:75px 7vw 80px;
    }

    .hero .container{
        margin-left:0;
    }


    /* 01 / 02 / 03 / 04 */

    .about-editorial,
    .about-manifesto,
    .about-practice{
        padding-left:7vw;
        padding-right:7vw;
    }

    .about-editorial-grid,
    .about-manifesto-content,
    .about-practice-grid{
        padding-left:0;

        gap:50px;
    }


    /* 03 */

    .about-manifesto-content h3{
        margin-top:-45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:620px){

    /* HEADER */

    .header{
        padding:12px 6vw;
    }

    .logo-line{
        font-size:19px;
    }

    .logo-sub{
        font-size:7px;
    }

    .navigation{
        gap:20px;
    }

    .navigation a{
        font-size:13px;
    }


    /* HERO */

    .hero{
        padding:70px 6vw 75px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero-intro{
        font-size:20px;
    }

    .hero-text{
        font-size:15px;
    }


    /* 01 / 02 / 03 */

    .about-editorial,
    .about-manifesto{
        padding:70px 6vw 75px;
    }


    /* EN-TÊTES */

    .about-editorial-header,
    .about-manifesto-header{
        grid-template-columns:55px 1fr;

        gap:15px;

        margin-bottom:40px;
    }

    .about-index,
    .about-manifesto-index{
        font-size:25px;

        text-align:left;
    }

    .about-kicker{
        font-size:11px;

        letter-spacing:.13em;
    }


    /* GRILLES */

    .about-editorial-grid,
    .about-manifesto-content{
        grid-template-columns:1fr;

        gap:35px;

        padding-left:0;
    }

    .about-editorial-title h2{
        font-size:36px;
    }


    /* LISTE 01 */

    .about-word-list{
        grid-template-columns:1fr;
    }


    /* PROCESSUS 02 */

    .about-process > div{
        grid-template-columns:45px 1fr;

        min-height:55px;

        padding:0 15px;
    }


    /* =====================================================
       03 MOBILE
    ===================================================== */

    .about-manifesto-content h2{
        grid-column:1;

        margin:0;

        font-size:36px;
    }

    .about-manifesto-content h3{
        grid-column:1;

        margin:-15px 0 0;

        font-size:32px;
    }

    .about-manifesto-text{
        grid-column:1;

        grid-row:auto;

        max-width:none;
    }

    .about-manifesto-text p{
        font-size:15px;
    }

    .about-manifesto-text p:first-child{
        font-size:19px;
    }

    .about-manifesto-quote{
        grid-column:1;

        max-width:none;

        margin-top:0;

        font-size:17px;
    }


    /* =====================================================
       04 MOBILE
    ===================================================== */

    .about-practice{
        padding:70px 6vw 75px;
    }

    .about-practice-header{
        display:block;

        margin-bottom:40px;
    }

    .about-practice-header::before{
        display:block;

        text-align:left;

        margin-bottom:20px;

        font-size:25px;
    }

    .about-practice-header .about-kicker{
        display:block;
    }

    .about-practice-header h2{
        margin-top:12px;

        font-size:36px;
    }

    .about-practice-grid{
        grid-template-columns:1fr;

        gap:35px;

        padding-left:0;
    }

    .about-production{
        grid-template-columns:1fr;
    }

    .about-practice-final{
        margin-left:0;
    }


    /* AUJOURD'HUI */

    .today{
        padding:70px 6vw 75px;
    }

    .today h2{
        font-size:36px;
    }


    /* CTA */

    .cta{
        padding:55px 6vw;
    }

    .cta-inner{
        display:block;
    }

    .button{
        margin-top:28px;
    }


    /* FOOTER */

    .site-footer{
        padding:28px 6vw;

        display:block;
    }

    .site-footer p{
        margin-top:18px;
    }
}