/* ==========================================================================
   HOME — blocs de contenu récurrents : bandeau défilant, "no nicotine",
   "pourquoi FUEL POWER" (cards), usages, avis clients, CTA finale.
   Utilisés sur les pages Accueil et Marque ; le bandeau défilant et la CTA
   finale (.final) sont réutilisés en bas de toutes les autres pages.
   ========================================================================== */

/* MARQUEE — couleur tonique de la page (var(--lime), voir body[data-tone]
   dans base.css) : affiche desormais sur tout le site (voir header.html.j2),
   pas seulement les pages produit. */
.marq {
    background: var(--lime);
    overflow: hidden;
    padding: 13px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000
}

.mq {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    font-family: var(--disp);
    font-style: italic;
    font-size: 17px;
    color: #000;
    text-transform: uppercase;
    animation: scroll 10s linear infinite
}

.mq span::after {
    content: "/";
    margin-left: 40px;
    font-weight: 900
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* NO NICO — meme rouge/ocre que .marq juste au-dessus */
.nonico {
    background: #FF5A36;
    color: #000;
    text-align: center;
    padding: clamp(60px, 9vw, 110px) 0
}

.nonico h2 {
    font-size: clamp(38px, 6.6vw, 84px)
}

.nonico p {
    max-width: 640px;
    margin: 20px auto 0;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    line-height: 1.5
}

.nonico .chips {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px
}

.nonico .chip {
    background: #000;
    color: #FF5A36;
    padding: 11px 20px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em
}

/* WHY */
.why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px
}

.card {
    border-radius: 14px;
    padding: 32px 26px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform .25s;
    will-change: transform;
    transform-style: preserve-3d
}

.card .idx {
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: var(--disp);
    font-style: italic;
    font-size: 56px;
    line-height: 1;
    opacity: .16;
    pointer-events: none
}

.card .ico {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(127, 127, 127, .18);
    opacity: .95;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.card h3 {
    font-family: var(--disp);
    font-style: italic;
    font-size: 23px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: .95
}

.card.c1 {
    background: linear-gradient(160deg, var(--lime), #a9bd10);
    color: #000
}

.card.c2 {
    background: linear-gradient(160deg, var(--blue), #123a86);
    color: #fff
}

.card.c3 {
    background: linear-gradient(160deg, #141417, #0a0a0c);
    color: #fff;
    border: 1px solid var(--ligne)
}

.card.c4 {
    background: linear-gradient(160deg, var(--red), #7d1420);
    color: #fff
}

/* METHODES — "3 gammes, 3 methodes d'administration", clot la section WHY
   sur la home (et marque). Rangee de 3 pastilles icone + nom + mode de prise. */
.methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px
}

.method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--ligne);
    border-radius: 14px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    transition: border-color .25s, transform .25s
}

.method:hover {
    border-color: var(--lime);
    transform: translateY(-3px)
}

.method .pic {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(229, 248, 44, .08);
    border: 1px solid rgba(229, 248, 44, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lime)
}

.method .mname {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.1
}

.method .mmode {
    font-size: 12.5px;
    color: var(--gris);
    margin-top: 3px
}

@media(max-width:900px) {
    .methods {
        grid-template-columns: 1fr
    }
}

/* SITUATIONS — grille masonry/bento "Pour chaque moment" (7 situations),
   un seul template partage (partials/situations.html.j2) inclus sur home,
   marque, produit et saveurs. Deux tailles seulement : .size-lg (tuile 2x2,
   priorite 1 : Sport / Revisions / Route) et .size-sm (tuile 1x1, priorite
   2 : Festivals / Cuisine / Rush / Reunions), portees par
   t.common.uses.list[].size. */
.use {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: inherit
}

.use img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.use:hover img {
    transform: scale(1.06)
}

.use .ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .92))
}

.use .use-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--lime);
    color: #000;
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35)
}

.use .txt {
    position: relative;
    padding: 24px
}

.use .txt .k {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 800
}

.use .txt h3 {
    font-family: var(--disp);
    font-style: italic;
    font-size: 26px;
    text-transform: uppercase;
    margin-top: 6px;
    line-height: 1
}

/* Grille masonry SANS TROU : positionnement explicite via
   grid-template-areas plutot que par auto-placement. Chaque tuile occupe
   une zone nommee = un rectangle plein garanti par construction ; la chaine
   grid-template-areas dessine litteralement le plan ci-dessous, donc les 16
   cellules (4 colonnes x 4 lignes) sont TOUJOURS toutes couvertes, quel que
   soit le nombre d'items (contrairement a un auto-placement "dense", qui ne
   garantit pas un pavage complet). L'ordre des 7 tuiles dans le DOM est fixe
   et reflete la priorite donnee par le client (t.common.uses.list) :
   priorite 1 (tuiles 2x2) = Sport, Revisions, Route ; priorite 2 (tuiles
   1x1) = Festivals, Cuisine, Rush, Reunions — c'est ce qui permet de cibler
   chaque zone par nth-child.
   Plan desktop (4x4) :
     [ SPORT     SPORT     REVISIONS REVISIONS ]
     [ SPORT     SPORT     REVISIONS REVISIONS ]
     [ ROUTE     ROUTE     FESTIVALS CUISINE   ]
     [ ROUTE     ROUTE     RUSH      REUNION   ] */
.situations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 210px);
    grid-template-areas:
        "sport sport revisions revisions"
        "sport sport revisions revisions"
        "route route festivals cuisine"
        "route route rush reunion";
    gap: 14px;
    margin-top: 52px
}

.situations .use:nth-child(1) {
    grid-area: sport
}

.situations .use:nth-child(2) {
    grid-area: revisions
}

.situations .use:nth-child(3) {
    grid-area: route
}

.situations .use:nth-child(4) {
    grid-area: festivals
}

.situations .use:nth-child(5) {
    grid-area: cuisine
}

.situations .use:nth-child(6) {
    grid-area: rush
}

.situations .use:nth-child(7) {
    grid-area: reunion
}

/* Sur les tuiles etroites (sm), le texte de base (26px) et le padding
   standard (24px) font deborder/chevaucher le badge produit en haut de
   tuile — on resserre uniquement au-dela de 640px, ou les colonnes sont
   effectivement etroites (en mobile la tuile "sm" est aussi sur 1 colonne
   etroite, voir bloc max-width:640px plus bas qui reprend le meme
   resserrement). */
@media(min-width:641px) {
    .situations .use.size-lg .txt h3 {
        font-size: 32px
    }

    .situations .use.size-sm .txt {
        padding: 16px
    }

    .situations .use.size-sm .txt h3 {
        font-size: 18px;
        line-height: 1.05
    }

    .situations .use.size-sm .txt .k {
        font-size: 10px
    }

    .situations .use.size-sm .use-tag {
        top: 10px;
        left: 10px;
        padding: 5px 11px;
        font-size: 10px
    }
}

/* Plan tablette (2 colonnes x 5 lignes), toujours sans trou : les 3 tuiles
   de priorite 1 en pleine largeur (une par ligne), les 4 tuiles de
   priorite 2 en paires.
     [ SPORT     SPORT     ]
     [ REVISIONS REVISIONS ]
     [ ROUTE     ROUTE     ]
     [ FESTIVALS CUISINE   ]
     [ RUSH      REUNION   ] */
@media(max-width:1100px) {
    .situations {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px 200px 200px;
        grid-template-areas:
            "sport sport"
            "revisions revisions"
            "route route"
            "festivals cuisine"
            "rush reunion"
    }
}

/* Plan mobile (2 colonnes x 5 lignes), meme logique qu'en tablette avec des
   lignes plus basses. */
@media(max-width:640px) {
    .situations {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 230px 230px 230px 190px 190px;
        grid-template-areas:
            "sport sport"
            "revisions revisions"
            "route route"
            "festivals cuisine"
            "rush reunion"
    }

    /* La tuile "sm" est sur 1 seule colonne (moitie de la largeur) —
       meme resserrement de typo que pour les tuiles etroites du desktop
       (cf. bloc min-width:641px ci-dessus) pour eviter le chevauchement
       badge/texte. */
    .situations .use.size-sm .txt {
        padding: 16px
    }

    .situations .use.size-sm .txt h3 {
        font-size: 18px;
        line-height: 1.05
    }

    .situations .use.size-sm .txt .k {
        font-size: 10px
    }

    .situations .use.size-sm .use-tag {
        top: 10px;
        left: 10px;
        padding: 5px 11px;
        font-size: 10px
    }
}

/* REVIEWS */
.revs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px
}

.rev {
    background: var(--card);
    border: 1px solid var(--ligne);
    border-radius: 12px;
    padding: 28px;
    transition: transform .25s;
    will-change: transform
}

.rev .st {
    color: var(--lime);
    letter-spacing: 2px;
    margin-bottom: 12px
}

.rev p {
    font-size: 15px;
    line-height: 1.55;
    color: #e2e2de
}

.rev .who {
    margin-top: 18px;
    font-size: 13px;
    color: var(--gris);
    font-weight: 600
}

/* FINAL CTA */
.final {
    text-align: center;
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
    overflow: hidden
}

.final .glow {
    position: absolute;
    width: 760px;
    height: 460px;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(229, 248, 44, .16), transparent 65%)
}

.final h2 {
    font-size: clamp(46px, 9vw, 100px);
    position: relative
}

.final p {
    color: #c2c2be;
    font-size: 18px;
    margin: 18px 0 34px;
    position: relative
}

.final .cta-row {
    justify-content: center
}

@media(max-width:900px) {

    .why,
    .revs {
        grid-template-columns: 1fr
    }

    .uses {
        grid-template-columns: 1fr
    }

    .use.big {
        grid-column: span 1
    }
}

/* ==========================================================================
   HOME V2 (2026-07-31) — reprise fidele de la maquette boss pour la page
   d'accueil : hero immersif, "trois formats", bloc groupe (fond NOIR sur
   demande explicite, la maquette l'a en fond blanc), bandeau + 4 regles,
   mosaique lifestyle, bloc pro/revendeurs, Fuel News (vrais articles de
   blog), Instagram (vraies photos). Classes reprises a l'identique de la
   maquette pour rester alignees avec le reste du CSS deja livre.
   ========================================================================== */

/* ---- HERO home-v6 ---- */
/* Hauteur alignee sur .hero.fullphoto (usages/collab) : 80vh, meme repli
   "svh" en mobile (voir @media max-width:900px plus bas + commentaire
   detaille dans css/hero.css) — les 3 heros video du site (home, usages,
   collab) se comportent desormais a l'identique en hauteur. */
.home-v6-hero {
    height: 80vh;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--noir);
    color: #fff;
    isolation: isolate
}

.home-v6-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0
}

.home-v6-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 6, .1), rgba(5, 5, 6, .2) 55%, rgba(5, 5, 6, .8))
}

.home-v6-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    z-index: 5;
    background: linear-gradient(90deg, transparent, var(--ligne) 18%, var(--ligne) 82%, transparent)
}

.home-v6-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(900px, 90vw);
    padding: 80px 0 120px
}

.home-v6-hero__logo {
    max-width: min(320px, 62vw);
    height: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, .6))
}

.home-v6-hero h1 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .9;
    letter-spacing: -.018em;
    text-shadow: 0 8px 35px rgba(0, 0, 0, .4)
}

.home-v6-hero h1 span {
    color: var(--lime)
}

.home-v6-hero .eyebrow {
    font-size: .68rem;
    letter-spacing: .24em;
    margin-bottom: 16px
}

.home-v6-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: .04em;
    margin: 22px auto 0;
    max-width: 46ch;
    color: #d3d3da;
    line-height: 1.5
}

.home-v6-hero .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    font-size: .87rem;
    color: #c9c9d0
}

.home-v6-hero .rating .s {
    color: #F0A11B;
    letter-spacing: .05em
}

.home-v6-hero .rating b {
    color: #fff;
    font-weight: 700
}

.home-v6-hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.home-v6-hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--util);
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none
}

/* Meme seuil (900px) et meme repli "svh" que .hero.fullphoto (usages/
   collab), pour un comportement identique sur les 3 heros video du site —
   voir le commentaire detaille dans css/hero.css. */
@media(max-width:900px) {
    .home-v6-hero {
        height: 80vh;
        height: 80svh;
        min-height: 80vh;
        min-height: 80svh
    }
}

@media(max-width:600px) {
    .home-v6-hero__content {
        padding-top: 100px
    }

    .home-v6-hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.2rem)
    }
}

/* ---- TROIS FORMATS (outline-range) ---- */
.outline-range {
    background: #f1f1ec;
    color: #070709
}

.outline-range .eyb {
    color: #4d4d51
}

.outline-range .sec__head h2,
.outline-range .sec__head .lead,
.outline-range h3 {
    color: #070709
}

.outline-range .sec__head .lead {
    color: #3d3d43
}

.outline-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: center
}

.outline-range__intro {
    max-width: none;
    margin-bottom: 0
}

.outline-product {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    padding: 24px;
    transition: .25s;
    text-decoration: none;
    color: inherit;
    display: block
}

.outline-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .1)
}

.outline-product__drawing {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    background: #f8f8f4;
    margin-bottom: 22px
}

.outline-product img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.outline-product h3 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin: 2px 0 8px
}

.outline-product p {
    color: #55555d;
    font-size: .9rem
}

.outline-product__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: var(--util);
    font-weight: 800;
    color: #070709;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--lime)
}

.outline-product__link .arr {
    transition: transform .25s
}

.outline-product:hover .outline-product__link {
    color: #485500
}

.outline-product:hover .outline-product__link .arr {
    transform: translateX(5px)
}

@media(max-width:960px) {
    .outline-products {
        grid-template-columns: 1fr
    }

    .outline-product {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 22px;
        align-items: center
    }

    .outline-product__drawing {
        margin: 0;
        aspect-ratio: 1 / 1
    }
}

@media(max-width:600px) {
    .outline-product {
        grid-template-columns: 1fr
    }

    .outline-product__drawing {
        aspect-ratio: 4 / 3
    }
}

/* ---- BLOC GROUPE / "Fonde en 2012" — fond NOIR (demande explicite,
   different de la maquette qui l'a en fond blanc). Panneau .group-mark en
   --card pour se detacher du fond de section (meme logique que .method/.rev
   ailleurs sur le site en theme sombre). ---- */
.group-block {
    background: #0b0b0e;
    border-top: 1px solid var(--ligne);
    padding-bottom: clamp(28px, 4vw, 44px)
}

/* lien plus direct entre le bloc noir et le bandeau lime qui suit
   immediatement (moins de vide entre les deux) */
.group-block + .band {
    margin-top: 0
}

.group-story {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: center
}

.group-mark {
    background: var(--card);
    border: 1px solid var(--ligne);
    color: #fff;
    min-height: 500px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

.group-mark::after {
    content: "2012";
    position: absolute;
    right: -18px;
    bottom: -36px;
    font-family: var(--disp);
    font-style: italic;
    font-size: 10rem;
    color: rgba(255, 255, 255, .055);
    line-height: 1
}

.group-mark .big {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: .9
}

.group-mark .big span {
    color: var(--lime)
}

.group-copy .lead {
    max-width: 58ch;
    margin-top: 18px
}

.group-copy .muted {
    margin-top: 14px;
    max-width: 58ch
}

@media(max-width:960px) {
    .group-story {
        grid-template-columns: 1fr
    }

    .group-mark {
        min-height: 390px
    }
}

@media(max-width:600px) {
    .group-mark {
        padding: 30px
    }

    .group-mark::after {
        font-size: 7rem
    }
}

/* ---- QUATRE REGLES (sec--yellow) — reutilise .grid4/.ben (css/buybox.css) ----
   Biseaute comme .band (bandeau "energy focus") juste au-dessus : meme
   principe skewY sur le bloc + contre-inclinaison du contenu pour qu'il
   reste droit (voir buybox.css .band/.band__in). */
.sec--yellow {
    background: var(--lime);
    color: #050506;
    margin-block: 22px;
    transform: skewY(-2deg)
}

.sec--yellow > .wrap {
    transform: skewY(2deg)
}

.sec--yellow h1,
.sec--yellow h2,
.sec--yellow h3,
.sec--yellow p,
.sec--yellow .lead,
.sec--yellow .muted,
.sec--yellow .eyb {
    color: #050506
}

.sec--yellow .ben {
    background: #050506;
    color: #fff;
    box-shadow: none
}

.sec--yellow .ben h3 {
    color: #fff
}

.sec--yellow .ben p {
    color: #bdbdc5
}

.sec--yellow .ben .num {
    color: var(--lime)
}

/* ---- REAL LIFE — mosaique lifestyle ---- */
.real-life {
    background: #0b0b0e
}

.real-life .sec__head {
    max-width: 56ch
}

.life-photo-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-template-rows: 330px 330px;
    gap: 14px
}

.life-photo {
    position: relative;
    overflow: hidden;
    background: #18181d
}

.life-photo:first-child {
    grid-row: span 2
}

.life-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.life-photo:hover img {
    transform: scale(1.04)
}

.life-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(5, 5, 6, .95), rgba(5, 5, 6, .55) 34%, rgba(5, 5, 6, .02) 74%),
        linear-gradient(90deg, rgba(5, 5, 6, .85), rgba(5, 5, 6, .20) 56%, transparent 80%)
}

.life-photo__copy {
    position: absolute;
    z-index: 3;
    left: 22px;
    right: auto;
    bottom: 22px;
    width: auto;
    max-width: min(56%, 24ch);
    padding-right: 6px
}

.life-photo:first-child .life-photo__copy {
    max-width: min(52%, 26ch)
}

.life-photo__copy span {
    display: block;
    font-family: var(--util);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .7)
}

.life-photo__copy h3 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(1.02rem, 1.45vw, 1.5rem);
    line-height: 1.16;
    margin-top: 7px;
    text-wrap: balance;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .7)
}

@media(max-width:960px) {
    .life-photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 300px 300px
    }

    .life-photo:first-child {
        grid-column: 1/-1;
        grid-row: auto
    }

    .life-photo__copy,
    .life-photo:first-child .life-photo__copy {
        max-width: min(58%, 23ch)
    }
}

@media(max-width:600px) {
    .life-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 440px repeat(4, 290px)
    }

    .life-photo:first-child {
        grid-column: auto
    }

    .life-photo__copy,
    .life-photo:first-child .life-photo__copy {
        max-width: min(62%, 21ch)
    }

    .life-photo__copy h3 {
        font-size: 1.1rem
    }
}

/* ---- BLOC PRO / REVENDEURS (home-business) ---- */
.home-business {
    background: var(--lime);
    color: #050506
}

.home-business h2,
.home-business h3,
.home-business p,
.home-business .lead,
.home-business .eyb {
    color: #050506
}

.business-shell {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 0;
    background: #050506;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .22)
}

.business-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: radial-gradient(circle at 45% 45%, rgba(215, 245, 32, .25), #070709 65%)
}

.business-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85
}

.business-form {
    background: #fff;
    padding: clamp(30px, 5vw, 60px);
    color: #070709
}

.business-form h2,
.business-form h3,
.business-form p,
.business-form label {
    color: #070709
}

.business-form .sf {
    color: #55555c;
    margin: 10px 0 22px
}

.business-form .ff input,
.business-form .ff select,
.business-form .ff textarea {
    background: #f0f0eb;
    color: #070709;
    border-color: rgba(0, 0, 0, .15)
}

.business-form .smallprint {
    color: #66666d;
    font-size: 12px;
    margin-top: 10px
}

@media(max-width:960px) {
    .business-shell {
        grid-template-columns: 1fr
    }

    .business-visual {
        min-height: 320px
    }
}

/* ---- FUEL NEWS (home-news) — grid3/post reutilisables ---- */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 44px
}

.post {
    background: var(--card);
    box-shadow: inset 0 0 0 1px var(--ligne);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: .25s;
    text-decoration: none;
    color: inherit;
    overflow: hidden
}

.post:hover {
    transform: translateY(-4px)
}

.post img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block
}

.post__inside {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1
}

.post time {
    font-family: var(--util);
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--lime)
}

.post h3 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1.25
}

.post p {
    font-size: .88rem;
    color: var(--gris);
    margin: 0
}

.post .more {
    font-family: var(--util);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: auto;
    color: var(--lime);
    font-weight: 700
}

.home-news {
    background: #fff;
    color: #070709
}

.home-news .eyb {
    color: #4d4d51
}

.home-news h2,
.home-news h3 {
    color: #070709
}

.home-news .post {
    background: #f3f3ef;
    color: #070709;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: none
}

.home-news .post p {
    color: #55555c
}

.home-news .post .more {
    color: #485500
}

@media(max-width:960px) {
    .grid3 {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .grid3 {
        grid-template-columns: 1fr
    }
}

/* ==========================================================================
   PAGE COLLAB (2026-08-01) — reprise de la maquette boss. Image de fond du
   hero et visuels des cartes profils : vraies photos deja presentes sur le
   site (pas de nouvel asset requis). Pas d'effet "telephone" en incrustation
   (necessiterait des detourages dedies) — le produit est affiche simplement.
   ========================================================================== */
.collab-hero {
    min-height: clamp(480px, 62vh, 640px);
    position: relative;
    display: grid;
    place-items: center;
    background: var(--noir)
}

.collab-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6
}

.collab-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 5, 6, .96) 0%, rgba(5, 5, 6, .82) 42%, rgba(5, 5, 6, .35) 100%)
}

.collab-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
    padding-block: clamp(50px, 8vw, 90px)
}

.collab-hero__copy h1 {
    font-size: clamp(2.8rem, 5.6vw, 5.2rem);
    max-width: 11ch;
    margin-bottom: 18px
}

.collab-hero__copy h1 span {
    color: var(--lime)
}

.collab-hero__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px
}

.collab-hero__tags span {
    font-family: var(--util);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    border: 1px solid var(--ligne);
    padding: 7px 12px;
    color: #d3d3da
}

.collab-hero__visual {
    display: grid;
    place-items: center
}

.collab-hero__visual img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .5))
}

@media(max-width:960px) {
    .collab-hero__grid {
        grid-template-columns: 1fr
    }

    .collab-hero__copy h1 {
        max-width: none
    }
}

/* ---- comment ca marche / remuneration ---- */
.collab-program {
    background: #f1f1ec;
    color: #070709
}

.collab-program .sec__head p.eyb,
.collab-program .sec__head h2 {
    color: #070709
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.collab-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 26px
}

.collab-card__ico {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime2, #485500);
    background: rgba(0, 0, 0, .05);
    font-size: 16px;
    margin-bottom: 10px
}

.collab-card b {
    display: block;
    font-family: var(--util);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    color: #485500;
    margin-bottom: 6px
}

.collab-card h3 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 6px
}

.collab-card p {
    font-size: .88rem;
    color: #55555d;
    line-height: 1.5
}

@media(max-width:900px) {
    .collab-grid {
        grid-template-columns: 1fr
    }
}

/* ---- profils recherches ---- */
.collab-profile {
    background: #0b0b0e
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.profile-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: #18181d
}

.profile-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.profile-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 6, .92), rgba(5, 5, 6, .1) 60%)
}

.profile-card__copy {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px
}

.profile-card__copy h3 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.3rem
}

.profile-card__copy p {
    font-size: .85rem;
    color: #c9c9d0;
    margin-top: 6px;
    max-width: 42ch
}

.collab-profile .smallprint {
    margin-top: 24px
}

@media(max-width:900px) {
    .profile-grid {
        grid-template-columns: 1fr
    }
}

/* ---- candidature ---- */
.collab-form-sec {
    background: var(--lime);
    padding: clamp(56px, 8vw, 100px) 0
}

.collab-form-shell {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    background: #fff;
    box-shadow: 0 30px 75px rgba(0, 0, 0, .2);
    overflow: hidden
}

.collab-form-intro {
    background: #09090b;
    color: #fff;
    padding: clamp(30px, 5vw, 56px)
}

.collab-form-intro h2,
.collab-form-intro p {
    color: #fff
}

.collab-form-intro ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
    font-size: .9rem;
    color: #c8c8d0
}

.collab-form-intro li {
    padding-left: 20px;
    position: relative
}

.collab-form-intro li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    background: var(--lime)
}

.collab-form-main {
    padding: clamp(30px, 5vw, 56px);
    color: #070709
}

.collab-form-main .ff input,
.collab-form-main .ff select,
.collab-form-main .ff textarea {
    background: #f0f0eb;
    color: #070709;
    border-color: rgba(0, 0, 0, .15)
}

.collab-form-main .smallprint {
    color: #66666d
}

@media(max-width:900px) {
    .collab-form-shell {
        grid-template-columns: 1fr
    }
}
