: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;
}


/* =========================================================
É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 — À PROPOS
========================================================= */

.hero{
    background:var(--black);
    color:#fff;

    min-height:600px;

    display:grid;

    grid-template-columns:46% 54%;

    position:relative;

    overflow:hidden;
}


/* ---------------------------------------------------------
COLONNE TEXTE
--------------------------------------------------------- */

.hero-content{
    padding:90px 0 80px 7vw;

    display:flex;
    flex-direction:column;
    justify-content:center;

    position:relative;
    z-index:2;

    min-width:0;
}

.hero h1{
    font-size:clamp(46px,5.2vw,76px);

    line-height:.98;

    margin:0;

    font-weight:600;

    letter-spacing:.01em;
}

.hero h1 span{
    color:var(--accent);
}

.hero-baseline{
    display:block;

    font-size:clamp(22px,2.2vw,32px);

    line-height:1.2;

    font-weight:500;

    color:#fff;

    margin:18px 0 0;
}

.hero-text{
    max-width:590px;

    font-size:16px;

    line-height:1.7;

    color:#cbd1d2;

    margin:25px 0 30px;
}


/* ---------------------------------------------------------
COLONNE IMAGE
--------------------------------------------------------- */

.hero-image{
    position:relative;

    min-height:600px;

    display:flex;

    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 48% 52%,
            #172025 0,
            #0b0f11 45%,
            #07090a 75%
        );
}

.hero-image:before{
    content:"";

    position:absolute;

    inset:7% 0 8% 0;

    background-image:
        linear-gradient(
            rgba(255,0,77,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,0,77,.08) 1px,
            transparent 1px
        );

    background-size:36px 36px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );
}

.hero-image img{
    width:90%;

    height:75%;

    object-fit:contain;

    position:relative;

    z-index:1;

    filter:contrast(1.08);

    mix-blend-mode:screen;
}


/* =========================================================
01 / 02 / 03 / 04 — STRUCTURE ÉDITORIALE
========================================================= */

.about-editorial{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;

    padding:95px 0 105px;

    position:relative;
}

.about-editorial-light{
    background:var(--paper);
}

.about-editorial-white{
    background:var(--paper);
}


/* =========================================================
EN-TÊTES 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:
        minmax(0,1fr)
        minmax(0,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
========================================================= */

.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);
}

.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
========================================================= */

.about-manifesto{
    width:100%;
    max-width:var(--max);

    margin-left:auto;
    margin-right:auto;

    padding:95px 0 105px;

    background:var(--paper);

    position:relative;
}

.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;
}

.about-manifesto-content{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap:90px;

    padding-left:115px;
}

.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;
}

.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);
}

.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;
}

.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);
}

.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);
}

.about-practice-grid{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,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;
}

.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);
}

.about-production span::before{
    content:"→";

    color:var(--accent);

    margin-right:10px;

    font-weight:600;
}

.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;

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:70px;

    align-items:center;
}

.today-content{
    min-width:0;
}

.today .container{
    max-width:var(--max);

    margin-left:0;
    margin-right:0;
}

.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;
}


/* =========================================================
IMAGE — AUJOURD'HUI
========================================================= */

.today-image{
    width:100%;

    max-width:500px;

    justify-self:end;

    min-width:0;
}

.today-image img{
    width:100%;

    height:auto;

    display:block;

    object-fit:cover;
}


/* =========================================================
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 */

    .site-header{
        height:auto;

        min-height:76px;

        padding:12px 4vw;

        flex-wrap:wrap;
    }

    .brand{
        min-width:auto;

        flex:1;
    }

    nav{
        order:3;

        width:100%;

        overflow:auto;

        justify-content:flex-start;

        gap:22px;
    }

    nav a{
        padding:8px 0 10px;
    }

    .header-cta{
        display:none;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero{
        grid-template-columns:1fr;
    }

    .hero-content{
        padding:70px 7vw 45px;
    }

    .hero-image{
        min-height:420px;

        width:100%;
    }

    .hero-image img{
        width:85%;

        height:80%;
    }


    /* =====================================================
       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;
    }


    /* AUJOURD'HUI */

    .today{
        grid-template-columns:
            minmax(0,1fr)
            minmax(0,1fr);

        gap:45px;
    }

    .today-image{
        max-width:100%;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:620px){

    /* HEADER */

    .brand-image{
        width:40px;
        height:44px;
    }

    nav{
        gap:20px;
    }

    nav a{
        font-size:13px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero{
        grid-template-columns:1fr;
    }

    .hero-content{
        padding:70px 6vw 40px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero-baseline{
        font-size:22px;
    }

    .hero-text{
        font-size:15px;
    }

    .hero-image{
        min-height:330px;
    }

    .hero-image img{
        width:90%;

        height:80%;
    }


    /* =====================================================
       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
    ===================================================== */

    .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
    ===================================================== */

    .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;

        grid-template-columns:1fr;

        gap:40px;
    }

    .today h2{
        font-size:36px;
    }

    .today-image{
        width:100%;

        max-width:none;

        justify-self:start;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta{
        padding:55px 6vw;
    }

    .cta-inner{
        display:block;
    }

    .button{
        margin-top:28px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .site-footer{
        padding:28px 6vw;

        display:block;
    }

    .footer-brand{
        margin-bottom:15px;
    }

    .site-footer p{
        margin-top:18px;
    }
}