:root {
    --color-ink: #101010;
    --color-black: #0f0f0f;
    --color-hero: #080808;
    --color-cream: #f4f1e9;
    --color-paper: #faf8f2;
    --color-muted: #6d6a63;
    --color-muted-strong: #56524b;
    --color-muted-dark: #8a8a8a;
    --color-red: #FF9906; /* orange valide par David (15/07), ex-rouge */
    --color-red-bright: #FFB43B;
    --color-logo-ochre: #D7641A;
    --font-display: "Syne", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --font-logo: "Exo 2", "Raleway", var(--font-body);
    --font-marquee: "Geist", system-ui, sans-serif;
    --font-mono: "Geist Mono", ui-monospace, monospace;
    --type-hero-size: clamp(64px, 5.7vw, 82px);
    --type-hero-line: 1.03;
    --type-hero-weight: 800;
    --page-max: 1440px;
    --shell: 1208px;
    --gutter: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
    overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
    overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--color-cream);
    color: var(--color-ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

main {
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

.section-shell {
    width: min(var(--shell), calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-cream);
}

/* Le header reste visible en permanence ; seul le fond fond en douceur
   entre l'etat transparent (hero) et l'etat opaque (reste de la page). */
.site-header.is-ready {
    transition: background-color 240ms ease, box-shadow 240ms ease;
}

.site-header--scrolled {
    box-shadow: 0 14px 34px rgba(16, 16, 16, 0.08);
}

.site-header__inner {
    position: relative;
    width: min(1312px, calc(100% - 2 * var(--gutter)));
    height: 92px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 160px 1fr 182px;
    align-items: center;
    border-bottom: 1px solid rgba(16, 16, 16, 0.18);
}

.site-header__logo {
    display: flex;
    min-height: 44px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.site-header__logo-img {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(15, 15, 15, 0.18));
}

.site-header__logo-img--light {
    display: none;
}

.site-header__toggle {
    display: none;
}

/* Header transparent sur la home tant qu'on n'a pas scrolle (video hero plein ecran) */
.site-header--overlay:not(.site-header--scrolled) {
    background: transparent;
    box-shadow: none;
}

.site-header--overlay:not(.site-header--scrolled) .site-header__logo-img--dark {
    display: none;
}

.site-header--overlay:not(.site-header--scrolled) .site-header__logo-img--light {
    display: block;
}

.site-header--overlay:not(.site-header--scrolled) .site-header__nav a {
    color: var(--color-paper);
}

.site-header--overlay:not(.site-header--scrolled) .site-header__nav a.is-active {
    color: #fff;
}

/* Le dropdown marques garde son panneau clair : texte sombre meme en header transparent */
.site-header--overlay:not(.site-header--scrolled) .site-header__nav .site-header__dropdown a {
    color: var(--color-ink);
}

.site-header--overlay:not(.site-header--scrolled) .site-header__nav .site-header__dropdown a:hover {
    color: var(--color-paper);
}

.site-header--overlay:not(.site-header--scrolled) .site-header__inner {
    border-bottom-color: transparent;
}

.site-header--overlay:not(.site-header--scrolled) .site-header__inner > .btn {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.site-header--overlay:not(.site-header--scrolled) .site-header__inner > .btn:hover,
.site-header--overlay:not(.site-header--scrolled) .site-header__inner > .btn:focus-visible {
    color: var(--color-ink);
    border-color: var(--color-red);
}

.site-header--overlay-light:not(.site-header--scrolled) .site-header__logo-img--dark {
    display: block;
}

.site-header--overlay-light:not(.site-header--scrolled) .site-header__logo-img--light {
    display: none;
}

.site-header--overlay-light:not(.site-header--scrolled) .site-header__nav a,
.site-header--overlay-light:not(.site-header--scrolled) .site-header__nav a.is-active {
    color: var(--color-ink);
}

.site-header--overlay-light:not(.site-header--scrolled) .site-header__inner > .btn {
    background: var(--color-black);
    color: var(--color-paper);
    border-color: var(--color-black);
}

.site-header--overlay-light:not(.site-header--scrolled) .site-header__inner > .btn:hover,
.site-header--overlay-light:not(.site-header--scrolled) .site-header__inner > .btn:focus-visible {
    color: var(--color-ink);
    border-color: var(--color-red);
}

.site-header__nav {
    position: relative;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 12px;
    font-weight: 500;
    --nav-underline-left: 0px;
    --nav-underline-width: 42px;
    --nav-underline-opacity: 0;
}

.site-header__nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: var(--nav-underline-width);
    height: 3px;
    background: var(--color-red);
    opacity: var(--nav-underline-opacity);
    transform: translateX(var(--nav-underline-left));
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), width 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 120ms ease;
    pointer-events: none;
}

.site-header__item {
    position: relative;
}

.site-header__item > a {
    position: relative;
    padding-block: 34px 37px;
    display: inline-flex;
    align-items: center;
}

.site-header__item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 42px;
    height: 3px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    display: none;
}

.site-header__dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% - 10px);
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1px;
    width: 430px;
    padding: 10px;
    border: 1px solid rgba(16, 16, 16, 0.14);
    background: var(--color-paper);
    box-shadow: 0 24px 60px rgba(16, 16, 16, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-header__item:hover .site-header__dropdown,
.site-header__item:focus-within .site-header__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-header__dropdown a {
    display: grid;
    gap: 5px;
    padding: 14px;
    background: var(--color-cream);
    transition: background 160ms ease, transform 160ms ease;
}

.site-header__dropdown a:hover {
    background: var(--color-black);
    color: var(--color-paper);
    transform: translateY(-1px);
}

.site-header__dropdown span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}

.site-header__dropdown small {
    color: var(--color-muted);
    font-size: 11px;
    line-height: 15px;
}

.site-header__dropdown a:hover small {
    color: var(--color-muted-dark);
}

.btn {
    position: relative;
    z-index: 0;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid currentColor;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    isolation: isolate;
    overflow: hidden;
    transition: transform 180ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -2px -22%;
    background: var(--color-red);
    pointer-events: none;
    transform: translate3d(-115%, 0, 0) skewX(-18deg);
    transform-origin: left center;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translate3d(0, 0, 0) skewX(-18deg);
}

/* Sur le balayage orange (#FF9906), le texte passe au noir : le blanc
   n'y est pas lisible (ratio ~2:1). */
.btn:hover,
.btn:focus-visible {
    color: var(--color-ink);
    border-color: var(--color-red);
}

.btn:focus-visible {
    outline: 2px solid var(--color-paper);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--color-ink);
}

.btn--dark {
    background: var(--color-black);
    color: var(--color-paper);
    border-color: var(--color-black);
}

.btn--light {
    background: var(--color-paper);
    color: var(--color-black);
    border-color: var(--color-paper);
}

.btn--dark:hover,
.btn--dark:focus-visible {
    color: var(--color-ink);
    border-color: var(--color-red);
}

/* Bouton blanc (.btn--light) : le survol restait en texte blanc sur fond
   blanc (invisible) ; texte et bordure passent au noir pour rester lisibles
   quel que soit le fond de la section (y compris rouge). */
.btn--light:hover,
.btn--light:focus-visible {
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn--link,
.btn--link.btn--dark,
.btn--link.btn--light {
    --btn-link-color: var(--color-ink);
    min-height: auto;
    justify-content: flex-start;
    gap: 10px;
    padding: 4px 0 8px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    color: var(--btn-link-color);
    isolation: auto;
}

.btn--link.btn--light {
    --btn-link-color: var(--color-paper);
}

.site-footer .btn--link.btn--light {
    --btn-link-color: var(--color-paper);
}

.btn--link::before {
    content: "+";
    position: static;
    z-index: auto;
    inset: auto;
    display: inline-block;
    flex: 0 0 auto;
    background: transparent;
    color: var(--color-ink);
    font-family: var(--font-mono);
    font-size: 18px;
    line-height: 1;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.btn--link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 28px;
    height: 2px;
    background: var(--color-red);
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 350ms cubic-bezier(0.25, 1, 0.5, 1);
}

.btn--link:hover,
.btn--link:focus-visible {
    border-color: transparent;
    color: var(--btn-link-color);
}

.btn--link:hover::before,
.btn--link:focus-visible::before {
    transform: rotate(90deg);
}

.btn--link:hover::after,
.btn--link:focus-visible::after {
    transform: scaleX(1);
}

.home-random-word {
    display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header.is-ready {
        transition: none;
        will-change: auto;
    }

    .btn,
    .btn::before {
        transition: none;
    }

    .btn:hover {
        transform: none;
    }

    .btn::before {
        opacity: 0;
        transform: none;
    }

    .btn:hover::before,
    .btn:focus-visible::before {
        opacity: 1;
        transform: none;
    }

    .btn--link::before {
        opacity: 1;
        transform: rotate(0deg);
    }

    .btn--link:hover::before,
    .btn--link:focus-visible::before {
        transform: rotate(90deg);
    }

    .btn--link::after {
        transition: none;
    }

    .btn--link:hover::after,
    .btn--link:focus-visible::after {
        transform: scaleX(1);
    }

}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.section-head .section-actions {
    margin-top: 32px;
}

.image-panel__content .section-actions {
    grid-column: 2;
    justify-self: start;
    margin-top: 22px;
}

.image-panel__content .section-actions .btn {
    margin-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-hero {
    position: relative;
    z-index: 4;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-hero);
    background-image: var(--hero-image);
    background-position: center 50%;
    background-size: var(--hero-bg-size, cover);
    background-repeat: no-repeat;
}

.home-hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Le poster reste seul visible (background-image du hero, en dessous)
       jusqu'à ce que la vidéo soit prête à jouer : fondu au lieu d'un pop. */
    opacity: 0;
    transition: opacity 500ms ease;
}

.home-hero__video.is-loaded {
    opacity: 1;
    will-change: transform;
}

.home-hero__mobile-slides {
    display: none;
}

.image-panel__wash {
    position: absolute;
    inset: 0;
    background: var(--color-hero);
    opacity: 0.58;
}

.home-hero__wash {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--color-hero);
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.home-hero__wash.is-active {
    opacity: 0.26;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    padding: 164px 0 0 64px;
}

.section-kicker {
    display: grid;
    gap: 15px;
    margin-bottom: 48px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
}

.section-kicker span {
    width: 42px;
    height: 3px;
    background: var(--color-red-bright);
}

.section-kicker--light {
    color: var(--color-paper);
}

.section-kicker--dark {
    color: var(--color-ink);
}

.home-hero h1 {
    max-width: 1180px;
    white-space: pre-line;
    color: var(--color-paper);
    font-family: var(--font-display);
    font-size: var(--type-hero-size);
    font-weight: var(--type-hero-weight);
    line-height: var(--type-hero-line);
    letter-spacing: 0;
}

.home-hero__content > p {
    max-width: 620px;
    margin-top: 64px;
    color: var(--color-paper);
    font-size: 19px;
    line-height: 31px;
}

.home-hero__actions {
    display: flex;
    gap: 20px;
    margin-top: 44px;
}

.split-section,
.brand-preview,
.network-section {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.network-section > .section-shell {
    position: relative;
    z-index: 1;
}

.split-section > .section-shell,
.brand-preview > .section-shell,
.network-section > .section-shell {
    position: relative;
    z-index: 2;
}

.split-section {
    min-height: 620px;
    padding-block: 100px;
}

.split-section__grid,
.section-head,
.network-section__grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 84px;
}

.split-section h2,
.brand-preview h2,
.network-section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 58px;
}

.split-section__copy {
    max-width: 450px;
    padding-top: 76px;
}

.split-section__copy p,
.section-head > p,
.section-head > div:last-child p,
.network-section p {
    color: var(--color-muted);
    font-size: 17px;
    line-height: 29px;
}

.split-section__copy p + p {
    margin-top: 24px;
}

.split-section__copy .btn {
    margin-top: 34px;
}

.image-panel {
    position: relative;
    z-index: 4;
    min-height: 760px;
    overflow: hidden;
    background-color: var(--color-hero);
    background-image: var(--panel-image);
    background-position: center 50%;
    background-size: var(--panel-bg-size, cover);
    background-repeat: no-repeat;
}

.image-panel__wash {
    opacity: 0.42;
}

.image-panel__content {
    position: absolute;
    z-index: 2;
    left: 116px;
    right: 116px;
    bottom: 80px;
    display: grid;
    grid-template-columns: 620px 420px;
    gap: 24px;
    align-items: end;
}

.image-panel__heading {
    min-width: 0;
}

.image-panel__eyebrow {
    margin-bottom: 16px;
    color: rgba(250, 248, 242, 0.78);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.image-panel h2 {
    color: var(--color-paper);
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    line-height: 52px;
}

.image-panel p {
    color: var(--color-paper);
    font-size: 17px;
    line-height: 28px;
}

.image-panel .btn {
    justify-self: start;
    margin-top: 26px;
}

.image-panel__note {
    position: absolute;
    right: 96px;
    top: 78px;
    z-index: 3;
    display: grid;
    gap: 8px;
    min-width: 260px;
    padding: 22px;
    background: rgba(250, 248, 242, 0.94);
    color: var(--color-ink);
}

.image-panel__note strong {
    color: var(--color-ink);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
}

.image-panel__note span {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}

.brand-preview {
    padding-block: 100px 44px;
}

.section-head {
    align-items: start;
    margin-bottom: 76px;
}

.section-head > div:last-child .btn {
    margin-top: 34px;
}

.brand-preview h2 {
    max-width: 520px;
    font-size: 44px;
    line-height: 50px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.brand-card {
    position: relative;
    min-height: 242px;
    overflow: hidden;
    background: var(--color-paper);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card:hover {
    transform: translateY(-6px);
}

.brand-card img,
.brand-card__placeholder {
    display: block;
    width: 100%;
    height: 138px;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card__placeholder {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.08), rgba(255, 153, 6, 0.14));
}

.brand-card:hover img {
    filter: contrast(1.06);
    transform: scale(1.07);
}

.brand-card span,
.brand-card small {
    display: block;
    padding-inline: 16px;
}

.brand-card span {
    display: flex;
    align-items: center;
    padding-top: 18px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.brand-card small {
    padding-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 18px;
}

.brand-grid--home {
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
}

.brand-grid--home .brand-card {
    grid-column: span 2;
    min-height: 376px;
    border-top: 1px solid rgba(16, 16, 16, 0.16);
}

.brand-grid--home .brand-card:first-child,
.brand-grid--home .brand-card:nth-child(4) {
    grid-column: span 4;
}

.brand-grid--home .brand-card:nth-child(2),
.brand-grid--home .brand-card:nth-child(3) {
    grid-column: span 2;
}

.brand-grid--home .brand-card:nth-child(5),
.brand-grid--home .brand-card:nth-child(6) {
    grid-column: span 3;
}

.brand-grid--home .brand-card img {
    height: 214px;
}

.brand-grid--home .brand-card:first-child img,
.brand-grid--home .brand-card:nth-child(4) img {
    height: 306px;
}

.brand-grid--home .brand-card p {
    padding: 14px 18px 22px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 21px;
}

.brand-grid--home .brand-card span,
.brand-grid--home .brand-card small {
    padding-inline: 18px;
}

.brand-marquee {
    padding-block: 82px 92px;
    overflow: hidden;
}

.brand-marquee > .section-shell:first-child {
    padding-top: 54px;
    border-top: 1px solid rgba(16, 16, 16, 0.16);
}

.brand-marquee__head {
    display: grid;
    grid-template-columns: minmax(280px, 470px) minmax(280px, 430px);
    gap: 64px;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 46px;
}

.brand-marquee__head p {
    color: var(--color-muted);
    font-size: 15px;
    line-height: 24px;
}

.brand-marquee__viewport,
.brand-marquee__line {
    width: 100%;
    overflow: hidden;
}

.brand-marquee__line + .brand-marquee__line {
    margin-top: 4px;
}

.brand-marquee__track {
    display: flex;
    width: max-content;
    backface-visibility: hidden;
    will-change: transform;
}

.brand-marquee__line--left .brand-marquee__track {
    animation: brand-marquee-left 30s linear infinite;
}

.brand-marquee__line--right .brand-marquee__track {
    animation: brand-marquee-right 30s linear infinite;
}

.marquee-track__group {
    display: flex;
    flex: none;
    align-items: center;
    white-space: nowrap;
}

.brand-marquee__item {
    display: inline-flex;
    align-items: center;
    color: var(--color-black);
    font-family: var(--font-marquee);
    font-size: clamp(64px, 7.1vw, 112px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.brand-marquee__separator {
    margin-inline: 0.22em;
    color: var(--color-red);
    font-size: 0.56em;
    line-height: 1;
}

.brand-marquee__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 42px;
}

.brand-logo-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 52px;
    border-top: 1px solid rgba(16, 16, 16, 0.16);
    border-left: 1px solid rgba(16, 16, 16, 0.16);
}

.brand-logo-card {
    min-height: 132px;
    display: grid;
    place-items: center;
    padding: 24px 18px;
    border-right: 1px solid rgba(16, 16, 16, 0.16);
    border-bottom: 1px solid rgba(16, 16, 16, 0.16);
    background: rgba(250, 248, 242, 0.34);
    transition: background-color 140ms ease, color 140ms ease;
}

/* L'inversion est réservée aux interactions volontaires : hover avec un vrai
   pointeur, focus clavier ou appui tactile. Aucun déplacement de la carte. */
.brand-logo-card:focus-visible {
    background: var(--color-ink);
    color: var(--color-paper);
    outline: 2px solid var(--color-paper);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--color-ink);
}

@media (hover: hover) {
    .brand-logo-card:hover {
        background: var(--color-ink);
        color: var(--color-paper);
    }
}

.brand-logo-card img {
    width: min(150px, 100%);
    max-height: 56px;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.78;
    transition: filter 140ms ease, opacity 140ms ease;
}

.brand-logo-card:focus-visible img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

@media (hover: hover) {
    .brand-logo-card:hover img {
        filter: brightness(0) invert(1);
        opacity: 1;
    }
}

@media (hover: none) and (pointer: coarse) {
    .brand-logo-card:active {
        background: var(--color-ink);
        color: var(--color-paper);
    }

    .brand-logo-card:active img {
        filter: brightness(0) invert(1);
        opacity: 1;
    }
}

.brand-logo-card__wordmark {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.16vw, 20px);
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
}

@keyframes brand-marquee-left {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes brand-marquee-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee__line--left .brand-marquee__track,
    .brand-marquee__line--right .brand-marquee__track {
        width: 100%;
        animation: none;
        transform: none;
        will-change: auto;
    }

    .brand-marquee__line {
        overflow: visible;
    }

    .brand-marquee__line .marquee-track__group {
        width: 100%;
        flex-wrap: wrap;
        white-space: normal;
    }

    .brand-marquee__line .brand-marquee__item {
        width: 100%;
        font-size: clamp(36px, 10vw, 72px);
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .brand-marquee__line .marquee-track__group[aria-hidden="true"] {
        display: none;
    }
}

.adn-section {
    background: var(--color-ink);
}

.adn-section--split {
    padding-block: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
}

.adn-section__panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(72px, 7vw, 120px) clamp(32px, 6vw, 104px);
    background: var(--color-ink);
    color: var(--color-paper);
}

.adn-section__copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.adn-section__media {
    position: relative;
    min-height: 600px;
}

.adn-section__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.adn-section__copy h2 {
    max-width: 720px;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 700;
    line-height: 58px;
    color: var(--color-paper);
}

.adn-section__copy p {
    max-width: 620px;
    margin-top: 24px;
    color: var(--color-muted-dark);
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 1024px) {
    .adn-section--split {
        grid-template-columns: 1fr;
    }

    .adn-section__media {
        min-height: 420px;
        order: -1;
    }
}

.activation-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(84px, 8vw, 124px);
    background: var(--color-paper);
    color: var(--color-ink);
}

.field-actions__layout {
    display: grid;
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: stretch;
}

.field-actions__visual {
    min-height: 680px;
    margin: 0;
    overflow: hidden;
    background: var(--color-cream);
}

.field-actions__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% center;
    filter: saturate(0.88) contrast(1.03);
}

.field-actions__details {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding-block: clamp(18px, 3vw, 42px);
}

.field-actions__eyebrow {
    margin-bottom: 24px;
    color: var(--color-ink);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.field-actions__details h2 {
    max-width: 630px;
    font-family: var(--font-body);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
}

.field-actions__intro {
    max-width: 650px;
    margin-top: 24px;
    color: var(--color-muted-strong);
    font-size: 16px;
    line-height: 1.72;
}

.field-actions__services {
    margin: clamp(42px, 5vw, 66px) 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(16, 16, 16, 0.16);
}

.field-actions__service {
    display: grid;
    grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(24px, 3vw, 46px);
    align-items: start;
    padding-block: 25px;
    border-bottom: 1px solid rgba(16, 16, 16, 0.16);
}

.field-actions__service h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.field-actions__service p {
    color: #56524B;
    font-size: 14px;
    line-height: 1.7;
}

.field-actions__footer {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 38px;
}

.field-actions__note {
    max-width: 390px;
    color: var(--color-muted-strong);
    font-size: 13px;
    line-height: 1.6;
}

.field-actions__footer .btn {
    flex: 0 0 auto;
}

.network-section {
    min-height: 0;
    padding-block: 140px 72px;
    background: var(--color-paper);
}

.network-section__grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.network-section h2 {
    margin-top: 0;
    font-size: 48px;
    line-height: 54px;
}

.network-section p {
    max-width: 500px;
    margin-top: 42px;
}

.page-links {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 86px;
    border-block: 1px solid rgba(16, 16, 16, 0.16);
}

.page-links a {
    display: inline-flex;
    align-items: center;
    min-height: 70px;
    padding-inline: 42px;
    border-right: 1px solid rgba(16, 16, 16, 0.16);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    line-height: 20px;
}

.page-links a:first-child {
    border-left: 1px solid rgba(16, 16, 16, 0.16);
}

.page-links a::after {
    content: "↗";
    margin-left: 18px;
    color: var(--color-red);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

.stats-grid div {
    min-width: 0;
    min-height: 176px;
    padding: 30px;
    border-top: 1px solid rgba(16, 16, 16, 0.16);
    background: rgba(250, 248, 242, 0.52);
}

.stats-grid dt {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 48px;
}

.stats-grid dd {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 18px;
}

.image-panel--closing {
    min-height: 620px;
}

.closing-manifesto {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background-color: var(--color-black);
    background-image: var(--closing-image);
    background-position: center;
    background-size: cover;
    color: var(--color-paper);
}

.closing-manifesto__wash {
    position: absolute;
    inset: 0;
    background: var(--color-black);
    opacity: 0.72;
}

.closing-manifesto__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) 430px;
    gap: 80px;
    align-items: center;
    min-height: 540px;
}

.closing-manifesto h2 {
    font-family: var(--font-display);
    font-size: clamp(72px, 8vw, 132px);
    font-weight: 800;
    line-height: 0.9;
}

.closing-manifesto p {
    color: var(--color-paper);
    font-size: 19px;
    line-height: 31px;
}

/* Le hero remplit l'écran quel que soit le device (plancher 760px pour
   les petites fenêtres) ; le mobile < 901px garde son réglage compact. */
.page-hero {
    position: relative;
    min-height: 760px;
    min-height: max(760px, 100vh);
    min-height: max(760px, 100svh);
    padding-top: 92px;
    overflow: hidden;
    background: var(--color-cream);
}

.page-hero--dark {
    background-color: var(--color-hero);
    background-image: var(--page-hero-image);
    background-position: center;
    background-size: cover;
    color: var(--color-paper);
}

.page-hero__wash {
    position: absolute;
    inset: 0;
    background: var(--color-hero);
    opacity: 0;
}

.page-hero--dark .page-hero__wash {
    opacity: 0.55;
}

.page-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
    gap: 84px;
    align-items: end;
    min-height: 668px;
    min-height: max(668px, calc(100vh - 92px));
    min-height: max(668px, calc(100svh - 92px));
    padding-block: 88px;
}

.page-brands .page-hero__grid {
    grid-template-columns: minmax(0, 760px) minmax(320px, 1fr);
    gap: clamp(48px, 5vw, 72px);
}

.page-hero__grid > * {
    min-width: 0;
}

.page-hero h1 {
    max-width: 100%;
    font-family: var(--font-display);
    font-size: var(--type-hero-size);
    font-weight: var(--type-hero-weight);
    line-height: var(--type-hero-line);
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.page-hero__copy {
    display: grid;
    gap: 24px;
    align-content: end;
    max-width: 540px;
}

.page-hero__copy p {
    color: inherit;
    font-size: 18px;
    line-height: 30px;
}

.page-hero__copy .btn {
    justify-self: start;
}

.page-hero--light .page-hero__copy p {
    color: var(--color-muted);
}

/* La 404 forme un bloc unique, centre dans l'espace disponible sous le header. */
.page-error404 .page-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 4vh, 42px);
    align-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.page-error404 .page-hero__grid > div:first-child {
    display: grid;
    width: 100%;
    justify-items: center;
}

.page-error404 .section-kicker {
    justify-items: center;
    margin-bottom: clamp(28px, 3.2vh, 40px);
}

.page-error404 .page-hero h1 {
    max-width: 1120px;
    text-wrap: balance;
}

.page-error404 .page-hero__copy {
    display: flex;
    width: 100%;
    max-width: 760px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 16px;
}

.page-error404 .page-hero__copy p {
    flex-basis: 100%;
    max-width: 700px;
    margin: 0 auto 8px;
    text-wrap: balance;
}

.page-error404 .page-hero__copy .btn {
    min-width: 180px;
    justify-self: auto;
}

@media (max-width: 900px) {
    .page-error404 .page-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 72px;
    }

    .page-error404 .page-hero__grid {
        min-height: calc(100vh - 72px);
        min-height: calc(100svh - 72px);
        gap: 28px;
        padding-block: clamp(56px, 8vh, 80px);
    }

    .page-error404 .section-kicker {
        margin-bottom: 24px;
    }

    .page-error404 .page-hero h1 {
        max-width: 720px;
        font-size: clamp(40px, 9vw, 58px);
        line-height: 1.06;
    }

    .page-error404 .page-hero__copy {
        max-width: 640px;
    }
}

@media (max-width: 520px) {
    .page-error404 .page-hero {
        padding-top: 66px;
    }

    .page-error404 .page-hero__grid {
        min-height: calc(100vh - 66px);
        min-height: calc(100svh - 66px);
        gap: 24px;
        padding-block: 44px;
    }

    .page-error404 .page-hero h1 {
        max-width: 330px;
        font-size: 32px;
        line-height: 1.08;
    }

    .page-error404 .page-hero__copy p {
        max-width: 330px;
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 26px;
    }

    .page-error404 .page-hero__copy .btn {
        width: 100%;
        min-width: 0;
    }
}

/* Le hero About garde son asymetrie, mais rapproche les deux colonnes
   dans un meme bloc de lecture centre sous le header. */
.page-about .page-hero--dark .page-hero__wash {
    opacity: 0.62;
}

.page-about .page-hero__grid {
    width: min(1312px, calc(100% - 2 * var(--gutter)));
    grid-template-columns: minmax(0, 820px) minmax(0, 1fr);
    gap: clamp(48px, 4vw, 56px);
    align-items: center;
}

.page-about .page-hero__grid > div:first-child {
    width: 100%;
    min-width: 0;
}

.page-about .section-kicker {
    margin-bottom: 36px;
}

.page-about .page-hero h1 {
    max-width: 820px;
    font-size: clamp(64px, 4.45vw, 72px);
    line-height: var(--type-hero-line);
    text-align: left;
    text-wrap: balance;
}

.page-about .page-hero__copy {
    max-width: 500px;
    gap: 26px;
    align-content: center;
    align-self: center;
    justify-self: start;
}

.page-about .page-hero__copy p {
    font-size: 19px;
    line-height: 32px;
    text-wrap: pretty;
}

@media (max-width: 1399px) {
    .page-about .page-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(32px, 4vh, 44px);
        align-content: center;
        padding-block: clamp(64px, 7vh, 80px);
    }

    .page-about .page-hero h1 {
        max-width: 900px;
    }

    .page-about .page-hero__copy {
        max-width: 680px;
    }
}

@media (max-width: 900px) {
    .page-about .page-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 72px;
    }

    .page-about .page-hero__grid {
        min-height: calc(100vh - 72px);
        min-height: calc(100svh - 72px);
        gap: 36px;
        padding-block: clamp(56px, 7vh, 72px);
    }

    .page-about .section-kicker {
        margin-bottom: 28px;
    }

    .page-about .page-hero h1 {
        max-width: 720px;
        font-size: clamp(40px, 11vw, 48px);
        line-height: 1.04;
    }

    .page-about .page-hero__copy {
        max-width: 680px;
        gap: 24px;
    }

    .page-about .page-hero__copy p {
        font-size: 17px;
        line-height: 28px;
    }
}

@media (max-width: 520px) {
    .page-about .page-hero {
        padding-top: 66px;
    }

    .page-about .page-hero__grid {
        min-height: calc(100vh - 66px);
        min-height: calc(100svh - 66px);
        gap: 28px;
        padding-block: 44px;
    }

    .page-about .section-kicker {
        margin-bottom: 24px;
    }

    .page-about .page-hero h1 {
        max-width: 335px;
        font-size: 32px;
        line-height: 1.06;
    }

    .page-about .page-hero__copy {
        gap: 20px;
    }

    .page-about .page-hero__copy p {
        font-size: 16px;
        line-height: 26px;
    }
}

.page-editorial {
    position: relative;
    padding-block: 112px;
}

.page-editorial__grid,
.contact-section__grid {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 92px;
}

.page-editorial h2,
.contact-section h2,
.page-empty h2,
.legal-page h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
}

.page-editorial__copy {
    display: grid;
    gap: 24px;
    max-width: 560px;
}

.page-editorial__copy p,
.contact-section p,
.page-empty p,
.legal-page p,
.legal-page dd {
    color: var(--color-muted);
    font-size: 17px;
    line-height: 29px;
}

.contact-section__email {
    margin-top: 18px;
    font-weight: 600;
}

.contact-section__email a {
    display: inline-block;
    padding-block: 11px;
    margin-block: -11px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.page-editorial .image-panel {
    margin-top: 112px;
}

.image-panel--page,
.image-panel--page-cta {
    min-height: 560px;
}

.page-brand-index {
    padding-block: 72px 104px;
}

.brand-grid--large .brand-card {
    min-height: 330px;
}

.brand-grid--large {
    grid-template-columns: repeat(6, 1fr);
}

.brand-grid--large .brand-card {
    grid-column: span 2;
}

.brand-grid--large .brand-card:first-child,
.brand-grid--large .brand-card:nth-child(4) {
    grid-column: span 4;
}

.brand-grid--large .brand-card:nth-child(5),
.brand-grid--large .brand-card:nth-child(6) {
    grid-column: span 3;
}

.brand-grid--large .brand-card img {
    height: 190px;
}

.brand-grid--large .brand-card:first-child img,
.brand-grid--large .brand-card:nth-child(4) img {
    height: 300px;
}

.brand-grid--large .brand-card p {
    padding: 14px 16px 18px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 21px;
}

/* Fiche marque V2 (prototype fiche-marque-ciclovation-v2) */

.brand-detail-hero {
    position: relative;
    min-height: calc(100svh - 92px);
    margin-top: 92px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #171819;
    color: var(--color-paper);
}

.brand-detail-hero--empty {
    min-height: 540px;
}

.brand-detail-hero__media,
.brand-detail-hero__shade {
    position: absolute;
    inset: 0;
}

.brand-detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
    transform: scale(1.04);
}

.brand-detail-hero__shade {
    background:
        linear-gradient(180deg, rgba(10, 11, 11, 0.08) 18%, rgba(10, 11, 11, 0.34) 58%, rgba(10, 11, 11, 0.86) 100%),
        linear-gradient(90deg, rgba(10, 11, 11, 0.34), transparent 58%);
}

.brand-detail-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    padding-block: clamp(56px, 8vh, 92px);
}

.brand-detail-hero__identity {
    min-width: 0;
}

.brand-detail-hero__logo {
    display: block;
    width: min(100%, clamp(260px, 38vw, 620px));
    max-height: clamp(86px, 16vw, 190px);
    object-fit: contain;
    object-position: left center;
}

.brand-detail-hero h1 {
    max-width: 900px;
    font-family: var(--font-display);
    font-size: clamp(58px, 8vw, 112px);
    font-weight: 800;
    line-height: 0.88;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.brand-detail-hero__summary {
    max-width: 620px;
    padding-bottom: 4px;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
}

.brand-detail-hero__meta {
    position: absolute;
    z-index: 2;
    right: var(--gutter);
    top: 28px;
    color: rgba(250, 248, 242, 0.68);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.brand-overview {
    padding: clamp(88px, 10vw, 142px) 0;
}

.brand-overview__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(64px, 10vw, 150px);
    align-items: start;
}

.brand-overview__heading {
    position: relative;
    padding: 4px 0 54px;
}

.brand-overview h2 {
    max-width: 440px;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 700;
    line-height: 0.98;
}

.brand-overview__copy > p {
    max-width: 700px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.78;
}

.brand-overview__copy > p + p {
    margin-top: 20px;
}

.brand-facts {
    margin: 52px 0 0;
    border-top: 1px solid rgba(16, 16, 16, 0.16);
}

.brand-fact {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 30px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.16);
}

.brand-fact dt {
    font-size: 14px;
    font-weight: 700;
}

.brand-fact dd {
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.6;
}


.brand-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 18px;
    padding: 0 var(--gutter) clamp(88px, 10vw, 142px);
}

.brand-gallery--single {
    grid-template-columns: 1fr;
}

.brand-gallery figure {
    position: relative;
    margin: 0;
    min-height: 680px;
    overflow: hidden;
    background: #dcd8cd;
}

.brand-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
}

.brand-gallery figure:first-child img {
    object-position: center;
}

.brand-gallery figure:last-child img {
    object-position: 54% center;
}

.brand-contact {
    padding: clamp(84px, 9vw, 124px) 0;
    background: var(--color-ink);
    color: var(--color-paper);
}

.brand-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 64px;
    align-items: end;
}

.brand-contact h2 {
    max-width: 720px;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.02;
}

.brand-contact p {
    max-width: 650px;
    margin-top: 24px;
    color: #aaa79f;
    font-size: 16px;
    line-height: 1.72;
}

.brand-contact__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.brand-contact__btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(250, 248, 242, 0.4);
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, color 0.2s ease;
}

.brand-contact__btn:hover {
    transform: translateY(-2px);
}

.brand-contact__btn--primary {
    border-color: var(--color-paper);
    background: var(--color-paper);
    color: var(--color-ink);
}

.brand-contact__btn--primary:hover {
    border-color: var(--color-red);
    background: var(--color-red);
    color: var(--color-ink);
}

.brand-next-link {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #171819;
    color: var(--color-paper);
}

.brand-next-link__media,
.brand-next-link__shade {
    position: absolute;
    inset: 0;
}

.brand-next-link__media img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center;
}

.brand-next-link__shade {
    background: linear-gradient(0deg, rgba(10, 11, 11, 0.78), rgba(10, 11, 11, 0.08) 72%);
}

.brand-next-link__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 54px;
}

.brand-next-link small {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.brand-next-link h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 1;
}

.brand-next-link__arrow {
    font-size: 42px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-next-link:hover .brand-next-link__arrow {
    transform: translateX(8px);
}

@media (max-width: 960px) {
    .brand-detail-hero {
        margin-top: 72px;
        min-height: calc(100svh - 72px);
    }

    .brand-overview__grid,
    .brand-contact__grid {
        grid-template-columns: 1fr;
    }

    .brand-overview__grid {
        gap: 42px;
    }

    .brand-overview__heading {
        padding-bottom: 72px;
    }

    .brand-contact__actions {
        justify-content: flex-start;
    }

    .brand-gallery figure {
        min-height: 560px;
    }
}

@media (max-width: 680px) {
    .brand-detail-hero {
        min-height: calc(92svh - 72px);
    }

    .brand-detail-hero__media img {
        object-position: 58% center;
    }

    .brand-detail-hero__content {
        padding-block: 44px;
    }

    .brand-detail-hero h1 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .brand-detail-hero__logo {
        width: min(100%, 320px);
        max-height: 120px;
    }

    .brand-detail-hero__meta {
        display: none;
    }

    .brand-overview {
        padding: 78px 0 84px;
    }

    .brand-overview__heading {
        padding-bottom: 52px;
    }

    .brand-overview h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .brand-overview__copy > p {
        font-size: 16px;
    }

    .brand-fact {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .brand-gallery {
        grid-template-columns: 1fr;
        padding: 0 var(--gutter) 84px;
    }

    .brand-gallery figure {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .brand-contact__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .brand-contact__btn {
        width: 100%;
    }

    .brand-next-link {
        min-height: 390px;
    }

    .brand-next-link__content {
        padding-bottom: 38px;
    }
}

@media (max-width: 520px) {
    .brand-detail-hero {
        margin-top: 66px;
        min-height: calc(92svh - 66px);
    }
}

.brand-next {
    padding-block: 112px;
    border-top: 1px solid rgba(16, 16, 16, 0.12);
}

.brand-next__grid {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 92px;
}

.brand-next h2 {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    line-height: 52px;
}

.brand-next p {
    max-width: 560px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 29px;
}

.page-empty {
    padding-block: 112px;
}

.page-empty__box {
    max-width: 860px;
    padding: 54px;
    border: 1px solid rgba(16, 16, 16, 0.16);
    background: var(--color-paper);
}

.page-empty__box > p {
    max-width: 620px;
    margin-top: 28px;
}

.page-empty__box > div:last-child {
    margin-top: 44px;
    padding-top: 34px;
    border-top: 1px solid rgba(16, 16, 16, 0.1);
}

.page-empty h3 {
    font-size: 24px;
    line-height: 30px;
}

.event-list {
    padding-block: 112px;
}

.event-list__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.event-list__heading h2 {
    max-width: 760px;
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1.15;
}

.event-list__heading .section-actions {
    flex: 0 0 auto;
    margin-top: 0;
}

.event-list__grid {
    display: grid;
    gap: 64px;
    margin-top: 40px;
}

.event-card {
    padding: 36px 40px 42px;
    border-top: 2px solid var(--color-ink);
    border-bottom: 1px solid rgba(16, 16, 16, 0.18);
    background: rgba(255, 255, 255, 0.24);
}

.event-card__header {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

.event-card__meta {
    display: grid;
    gap: 8px;
    padding-top: 6px;
}

.event-card__content {
    display: grid;
    justify-items: start;
    gap: 14px;
}

.event-card__meta span,
.event-card__location {
    color: var(--color-ink);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.event-card__location {
    color: var(--color-muted);
}

.event-card h3 {
    max-width: 900px;
    font-size: clamp(38px, 3.7vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
}

.event-card p:not(.event-card__location) {
    max-width: 62ch;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 28px;
}

.event-gallery {
    margin-top: 32px;
}

.event-gallery__viewport {
    width: 100%;
}

.event-gallery__track {
    display: grid;
    gap: 12px;
}

.event-gallery__slide {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--color-black);
}

.event-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-gallery--count-1 .event-gallery__slide {
    aspect-ratio: 3 / 2;
}

.event-gallery--count-1 {
    width: min(100%, 560px);
    margin-right: auto;
    margin-left: 222px;
}

.event-gallery--count-2 .event-gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-gallery--count-2 .event-gallery__slide {
    aspect-ratio: 4 / 3;
}

.event-gallery--count-3 .event-gallery__track {
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: clamp(420px, 42vw, 620px);
}

.event-gallery--count-3 .event-gallery__slide:first-child {
    grid-row: 1 / span 2;
}

.event-gallery--carousel .event-gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-gallery--carousel .event-gallery__slide {
    aspect-ratio: 4 / 3;
}

.event-gallery--carousel {
    position: relative;
}

/* Le viewport porte le ratio et se centre : les flèches s'ancrent ainsi
   exactement sur les bords de la photo, sans déborder sur le fond crème. */
.event-gallery--carousel .event-gallery__viewport {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 620px;
    margin-inline: auto;
}

.event-gallery--carousel .event-gallery__track {
    position: absolute;
    inset: 0;
    display: block;
    aspect-ratio: auto;
    max-height: none;
}

.event-gallery--carousel .event-gallery__slide {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    opacity: 0;
    transition: opacity 700ms ease;
    pointer-events: none;
}

.event-gallery--carousel .event-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.event-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    color: var(--color-paper);
    background: rgba(16, 16, 16, 0.55);
    border: 1px solid rgba(250, 248, 242, 0.7);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.event-gallery__nav:hover,
.event-gallery__nav:focus-visible {
    color: var(--color-red);
    background: var(--color-ink);
    border-color: var(--color-red);
}

.event-gallery__nav--prev {
    left: 16px;
}

.event-gallery__nav--next {
    right: 16px;
}

.event-gallery__count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 4px 9px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--color-paper);
    background: rgba(15, 15, 15, 0.55);
    border: none;
    cursor: pointer;
}

.event-gallery__count:hover,
.event-gallery__count:focus-visible {
    background: rgba(15, 15, 15, 0.78);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.92);
}

.lightbox__frame {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: min(1100px, 92vw);
    max-height: 92vh;
}

.lightbox__image {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: -44px;
    right: 0;
    color: var(--color-paper);
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.lightbox__nav {
    position: absolute;
    top: 36vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-paper);
    background: rgba(15, 15, 15, 0.5);
    border: none;
    font-family: var(--font-display);
    font-size: 26px;
    cursor: pointer;
}

.lightbox__nav--prev {
    left: -8px;
}

.lightbox__nav--next {
    right: -8px;
}

.lightbox__count {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-muted-dark);
}

.lightbox__thumbs {
    display: flex;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lightbox__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 48px;
    padding: 0;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
}

.lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox__thumb.is-active {
    border-color: var(--color-paper);
    opacity: 1;
}

.contact-section {
    padding-block: 112px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    background: var(--color-black);
    color: var(--color-paper);
}

.contact-form label {
    display: grid;
    gap: 9px;
    color: var(--color-paper);
    font-size: 13px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(250, 248, 242, 0.22);
    border-radius: 0;
    background: rgba(250, 248, 242, 0.07);
    color: var(--color-paper);
    font: inherit;
    min-height: 48px;
    padding: 12px 14px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form [aria-invalid="true"] {
    border-color: rgba(255, 153, 6, 0.86);
}

.contact-form__status {
    border: 1px solid rgba(250, 248, 242, 0.18);
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
}

.contact-form__status--success {
    background: rgba(250, 248, 242, 0.12);
}

.contact-form__status--error {
    border-color: rgba(255, 153, 6, 0.72);
    color: var(--color-paper);
}

.contact-form__error {
    color: var(--color-accent);
    font-size: 12px;
    line-height: 16px;
}

.contact-form__check {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
}

.contact-form__check span {
    grid-column: 2;
}

.contact-form__check input {
    grid-column: 1;
    grid-row: 1;
    min-height: 18px;
}

.contact-form p {
    color: var(--color-muted-dark);
    font-size: 13px;
    line-height: 20px;
}

.is-hidden {
    position: absolute;
    width: 1px;
    min-height: 1px;
    padding: 0;
    border: 0;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-form .is-hidden {
    left: -9999px;
    width: 1px;
    min-height: 1px;
    padding: 0;
    border: 0;
}

.legal-page {
    padding-block: 96px 132px;
}

.legal-page__grid {
    display: grid;
    gap: 22px;
}

.legal-page article {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    padding-block: 36px;
    border-top: 1px solid rgba(16, 16, 16, 0.12);
}

.legal-page dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    margin: 0 0 14px;
}

.legal-page dt {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 700;
}

.route-motif {
    display: none;
}

.split-section .route-motif {
    left: -180px;
    top: 65px;
    width: 960px;
}

.network-section .route-motif {
    right: 70px;
    top: 120px;
    width: 670px;
}

.route-motif svg {
    width: 100%;
    height: auto;
}

.route-motif__line {
    stroke: var(--color-ink);
    stroke-width: 2;
}

.route-motif__line--soft {
    opacity: 0.55;
}

.route-motif__accent {
    stroke: var(--color-red);
    stroke-width: 3;
}

.route-motif__point {
    fill: var(--color-ink);
}

.route-motif__point--accent {
    fill: var(--color-red);
}

.site-footer {
    background: var(--color-black);
    color: var(--color-paper);
}

.site-footer__inner {
    width: min(1312px, calc(100% - 2 * var(--gutter)));
    min-height: 520px;
    margin-inline: auto;
    padding-block: 64px 24px;
}

.site-footer__rule,
.site-footer__bottom {
    border-top: 1px solid rgba(245, 245, 245, 0.16);
}

.site-footer__wordmark {
    margin-top: 42px;
    width: min(100%, 440px);
    height: auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 150px 190px;
    gap: 80px;
    margin-top: 24px;
}

.site-footer__intro p {
    color: var(--color-muted-dark);
    font-size: 18px;
    line-height: 25px;
}

.site-footer__intro .btn {
    margin-top: 34px;
    font-size: 12px;
}

.site-footer__intro .btn--light {
    color: var(--color-paper);
}

.site-footer__intro .btn--light:hover,
.site-footer__intro .btn--light:focus-visible {
    color: var(--color-ink);
}

.site-footer h2 {
    color: var(--color-paper);
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.site-footer li,
.site-footer a,
.site-footer__grid p {
    color: var(--color-muted-dark);
    font-size: 14px;
    line-height: 22px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 18px;
}

.site-footer__bottom a {
    font-size: 12px;
    line-height: 15px;
}

.site-footer__bottom span {
    width: 52px;
    height: 4px;
    background: var(--color-red);
}

@media (max-width: 900px) {
    :root {
        --gutter: 24px;
    }

    body.has-mobile-menu-open {
        overflow: hidden;
    }

    .site-header__inner,
    .split-section__grid,
    .section-head,
    .brand-logo-strip__head,
    .network-section__grid,
    .image-panel__content,
    .site-footer__grid,
    .page-hero__grid,
    .page-editorial__grid,
    .contact-section__grid,
    .brand-next__grid,
    .legal-page article,
    .legal-page dl {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
    }

    .site-footer__intro {
        grid-column: 1 / -1;
    }

    .site-header__inner {
        height: 72px;
        grid-template-columns: 1fr auto;
        gap: 20px;
        padding-block: 0;
    }

    .site-header__logo {
        position: relative;
        z-index: 2;
    }

    .site-header__toggle {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--color-ink);
        font-family: var(--font-mono);
        font-size: 11px;
        text-transform: uppercase;
        cursor: pointer;
    }

    .site-header__toggle-icon,
    .site-header__toggle-icon::before,
    .site-header__toggle-icon::after {
        display: block;
        width: 24px;
        height: 2px;
        background: currentColor;
        transition: transform 220ms ease, opacity 180ms ease;
    }

    .site-header__toggle-icon {
        position: relative;
    }

    .site-header__toggle-icon::before,
    .site-header__toggle-icon::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .site-header__toggle-icon::before {
        top: -7px;
    }

    .site-header__toggle-icon::after {
        top: 7px;
    }

    .site-header--menu-open .site-header__toggle-icon {
        background: transparent;
    }

    .site-header--menu-open .site-header__toggle-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .site-header--menu-open .site-header__toggle-icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .site-header--overlay:not(.site-header--scrolled):not(.site-header--menu-open) .site-header__toggle {
        color: #fff;
    }

    .site-header--overlay-light:not(.site-header--scrolled):not(.site-header--menu-open) .site-header__toggle {
        color: var(--color-ink);
    }

    .site-header__nav {
        position: absolute;
        z-index: 1;
        top: 0;
        right: calc(50% - 50vw);
        bottom: 0;
        left: calc(50% - 50vw);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 94px var(--gutter) 118px;
        background: var(--color-cream);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-18px);
        transition: opacity 200ms ease, visibility 200ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
    }

    .site-header--menu-open {
        height: 100dvh;
        background: var(--color-cream);
        transform: none !important;
    }

    .site-header--menu-open .site-header__inner {
        height: 100%;
        align-items: start;
        padding-top: 12px;
    }

    .site-header--menu-open .site-header__nav {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-header--menu-open .site-header__logo-img--dark {
        display: block !important;
    }

    .site-header--menu-open .site-header__logo-img--light {
        display: none !important;
    }

    .site-header__item > a {
        display: flex;
        min-height: 66px;
        align-items: center;
        padding: 0;
        border: 0;
        border-bottom: 1px solid rgba(16, 16, 16, 0.16);
        background: transparent;
        color: var(--color-ink) !important;
        font-family: var(--font-display);
        font-size: clamp(26px, 7vw, 38px);
        font-weight: 700;
        line-height: 1;
    }

    .site-header__item > a::after,
    .site-header__nav::after,
    .site-header__dropdown {
        display: none;
    }

    .site-header__inner > .btn {
        position: absolute;
        z-index: 2;
        right: var(--gutter);
        bottom: 28px;
        left: var(--gutter);
        width: auto;
        min-height: 50px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: opacity 180ms ease, visibility 180ms ease, transform 220ms ease;
    }

    .site-header--menu-open .site-header__inner > .btn {
        background: var(--color-ink) !important;
        border-color: var(--color-ink) !important;
        color: var(--color-paper) !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .field-actions__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .field-actions__visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .field-actions__details {
        padding-block: 0;
    }

    .home-hero {
        height: auto;
        min-height: 760px;
    }

    .home-hero__content {
        padding: 170px 24px 90px;
    }

    .home-hero h1 {
        font-size: clamp(40px, 11vw, 48px);
        line-height: 1.04;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .brand-marquee {
        padding-block: 64px 72px;
    }

    .brand-marquee > .section-shell:first-child {
        padding-top: 38px;
    }

    .brand-marquee__head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 34px;
    }

    .brand-marquee__item {
        font-size: clamp(46px, 14vw, 72px);
    }

    .brand-marquee__line--left .brand-marquee__track,
    .brand-marquee__line--right .brand-marquee__track {
        animation-duration: 22s;
    }

    .brand-marquee__footer {
        padding-top: 32px;
    }

    .brand-logo-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 38px;
    }

    .brand-logo-card {
        min-height: 112px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-grid--home .brand-card,
    .brand-grid--home .brand-card:first-child,
    .brand-grid--home .brand-card:nth-child(4),
    .brand-grid--home .brand-card:nth-child(5),
    .brand-grid--home .brand-card:nth-child(6),
    .brand-grid--large .brand-card,
    .brand-grid--large .brand-card:first-child,
    .brand-grid--large .brand-card:nth-child(4),
    .brand-grid--large .brand-card:nth-child(5),
    .brand-grid--large .brand-card:nth-child(6) {
        grid-column: auto;
    }

    .adn-section__grid,
    .activation-section__grid,
    .closing-manifesto__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .adn-section__image,
    .adn-section__image img,
    .activation-section__media,
    .activation-section__media img {
        min-height: 0;
        height: 360px;
    }

    .image-panel {
        min-height: 620px;
    }

    .image-panel__content {
        left: var(--gutter);
        right: var(--gutter);
        bottom: 46px;
        gap: 18px;
    }

    .image-panel__content .section-actions {
        grid-column: 1;
    }

    .image-panel h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .image-panel p {
        font-size: 16px;
        line-height: 26px;
    }

    .image-panel__note {
        right: var(--gutter);
        top: 40px;
        min-width: 0;
        max-width: calc(100% - 2 * var(--gutter));
    }

    .page-links {
        display: grid;
    }

    .page-links a {
        border-left: 1px solid rgba(16, 16, 16, 0.16);
        border-bottom: 1px solid rgba(16, 16, 16, 0.16);
    }

    .site-footer__wordmark {
        font-size: clamp(34px, 12vw, 48px);
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .page-hero {
        min-height: auto;
        padding-top: 126px;
    }

    .page-hero__grid {
        min-height: auto;
        padding-block: 88px;
    }

    .page-hero h1 {
        font-size: clamp(40px, 11vw, 48px);
        line-height: 1.04;
    }

    .split-section h2,
    .brand-preview h2,
    .network-section h2,
    .adn-section__copy h2,
    .activation-section__copy h2,
    .page-editorial h2,
    .contact-section h2,
    .page-empty h2,
    .legal-page h2,
    .brand-next h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid dt {
        font-size: 36px;
        line-height: 40px;
    }

    .page-editorial,
    .contact-section,
    .brand-next,
    .page-empty,
    .event-list,
    .legal-page {
        padding-block: 70px;
    }

    .event-card {
        padding: 28px;
    }

    .event-list__heading {
        display: grid;
        align-items: start;
    }

    .event-list__heading .section-actions {
        justify-self: start;
    }

    .event-list__heading .btn {
        width: auto;
    }

    .event-card__header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-card__meta {
        padding-top: 0;
    }

    .event-gallery {
        margin-top: 28px;
    }

    .event-gallery--count-1 {
        width: 100%;
        margin-inline: 0;
    }

    .event-gallery--count-2 .event-gallery__track,
    .event-gallery--count-3 .event-gallery__track {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: auto;
    }

    .event-gallery--count-2 .event-gallery__slide,
    .event-gallery--count-3 .event-gallery__slide {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

    .event-gallery--carousel .event-gallery__track {
        aspect-ratio: 4 / 3;
        max-height: none;
    }

    .event-gallery__nav {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .page-empty__box,
    .contact-form {
        padding: 28px;
    }

    .contact-form .is-hidden {
        left: -9999px;
        width: 1px;
        min-height: 1px;
        padding: 0;
        border: 0;
    }

}

@media (max-width: 1180px) {
    .page-brands .page-hero__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .page-brands .page-hero h1 {
        max-width: 920px;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .field-actions__layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .field-actions__visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .field-actions__details {
        padding-block: 0;
    }
}

/* Sous le seuil de chargement de la vidéo (768px, cf. main.js), le hero
   est porté par l'image mobile dédiée quand elle existe. */
@media (max-width: 767px) {
    .home-hero {
        background-image: none;
    }

    .home-hero__video {
        display: none;
    }

    .home-hero__mobile-slides,
    .home-hero__mobile-slide,
    .home-hero__mobile-slide img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .home-hero__mobile-slides {
        z-index: 0;
    }

    .home-hero__mobile-slide {
        opacity: 0;
        transition: opacity 600ms ease;
    }

    .home-hero__mobile-slide.is-active {
        opacity: 1;
    }

    .home-hero__mobile-slide img {
        object-fit: cover;
    }

    @media (prefers-reduced-motion: reduce) {
        .home-hero__mobile-slide {
            transition: none;
        }
    }

    /* Sans vidéo, le voile n'est jamais activé par le JS : on pose un
       dégradé fixe pour asseoir le texte blanc sur les zones claires. */
    .home-hero__wash {
        opacity: 1;
        background: linear-gradient(
            180deg,
            rgba(15, 15, 15, 0.44) 0%,
            rgba(15, 15, 15, 0.26) 45%,
            rgba(15, 15, 15, 0.4) 100%
        );
    }

    /* Ombre minimale, juste pour détacher les lettres — le halo diffus
       précédent créait un effet de plaque floue derrière le texte. */
    .home-hero h1,
    .home-hero__content > p {
        text-shadow: 0 1px 3px rgba(15, 15, 15, 0.35);
    }
}

@media (max-width: 520px) {
    :root {
        --gutter: 20px;
    }

    .site-header__inner {
        height: 66px;
        gap: 16px;
        padding-block: 0;
    }

    .site-header__logo {
        min-height: 44px;
    }

    .site-header__item > a {
        min-height: 62px;
        padding-inline: 0;
        font-size: 29px;
        line-height: 1;
    }

    .site-header__inner > .btn {
        min-height: 48px;
        font-size: 13px;
    }

    .home-hero {
        min-height: 100dvh;
    }

    .home-hero__content {
        display: flex;
        flex-direction: column;
        min-height: 100dvh;
        box-sizing: border-box;
        padding: 74px 14px 68px;
    }

    /* Le bloc titre + texte se centre verticalement entre le header et le CTA
       (marges auto de part et d'autre), au lieu de rester collé en haut. */
    .home-hero__content > :first-child {
        margin-top: auto;
    }

    .home-hero__actions {
        margin-top: auto;
    }

    /* Les H1 restent au-dessus des H2 de section (29px) en mobile. */
    .home-hero h1,
    .page-hero h1 {
        font-size: 32px;
        line-height: 1.06;
    }

    .page-brands .page-hero h1 {
        max-width: min(100%, 22rem);
        font-size: clamp(30px, 9.2vw, 38px);
        line-height: 1.08;
    }

    .home-hero h1 {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.15;
        letter-spacing: -0.03em;
        white-space: pre-line;
    }

    /* Écart resserré (88px avant) : le groupe titre + texte forme un bloc
       compact centré verticalement dans le hero mobile. */
    .home-hero__content > p {
        margin-top: 44px;
    }

    .page-brands .page-hero--dark {
        background-position: 68% center;
    }

    .page-brands .page-hero--dark .page-hero__wash {
        opacity: 0.66;
    }

    .event-card h3 {
        line-height: 1.05;
    }

    .page-contact .page-hero h1 {
        font-size: 30px;
    }

    .home-hero__actions,
    .section-actions,
    .brand-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        min-height: 48px;
    }

    .btn--link,
    .btn--link.btn--dark,
    .btn--link.btn--light {
        width: fit-content;
        min-height: 44px;
    }

    .site-footer a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .split-section,
    .brand-preview,
    .network-section,
    .page-brand-index {
        padding-block: 64px;
    }

    .network-section {
        padding-block: 84px 52px;
    }

    .activation-section {
        padding-block: 72px;
    }

    .field-actions__layout {
        gap: 38px;
    }

    .field-actions__visual {
        aspect-ratio: 4 / 3;
    }

    .field-actions__eyebrow {
        margin-bottom: 18px;
    }

    .field-actions__details h2 {
        font-size: 29px;
        line-height: 1.16;
    }

    .field-actions__intro {
        margin-top: 20px;
        font-size: 15px;
    }

    .field-actions__services {
        margin-top: 36px;
    }

    .field-actions__service {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-block: 22px;
    }

    .field-actions__footer {
        flex-direction: column;
        align-items: stretch;
        padding-top: 30px;
    }

    .field-actions__footer .btn {
        width: 100%;
    }

    .adn-section {
        padding-block: 64px;
    }

    .split-section h2,
    .brand-preview h2,
    .network-section h2,
    .adn-section__copy h2,
    .activation-section__copy h2,
    .page-editorial h2,
    .contact-section h2,
    .page-empty h2,
    .legal-page h2,
    .brand-next h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .split-section__copy {
        padding-top: 0;
    }

    .adn-section__image,
    .adn-section__image img,
    .activation-section__media,
    .activation-section__media img {
        height: 280px;
    }

    .network-section p {
        margin-top: 32px;
    }

    .page-hero__grid {
        padding-block: 72px;
    }

    .page-hero__copy p,
    .page-editorial__copy p,
    .contact-section p,
    .page-empty p,
    .legal-page p,
    .legal-page dd,
    .brand-next p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-form {
        padding: 22px;
    }

    .site-footer__inner {
        padding-block: 48px 24px;
    }

    .site-footer__wordmark {
        font-size: 30px;
        line-height: 34px;
    }

    .site-footer__grid {
        gap: 30px;
    }

    .site-footer__bottom {
        display: grid;
        gap: 16px;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    :root {
        --gutter: 40px;
        --shell: 1040px;
    }

    .site-header__inner {
        grid-template-columns: 130px 1fr 160px;
    }

    .site-header__nav {
        gap: 22px;
    }

    .home-hero h1 {
        font-size: 68px;
        line-height: 1.04;
    }

    .split-section__grid,
    .section-head,
    .network-section__grid,
    .adn-section__grid,
    .activation-section__grid,
    .closing-manifesto__grid {
        grid-template-columns: 45% 1fr;
        gap: 56px;
    }

    .image-panel__content {
        left: 72px;
        right: 72px;
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    }

    .brand-marquee__head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 38px;
    }

    .brand-logo-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-grid {
        gap: 28px;
    }

    .brand-grid--home {
        grid-template-columns: repeat(6, 1fr);
    }

    .brand-grid--home .brand-card {
        grid-column: span 2;
    }

    .brand-grid--home .brand-card:first-child,
    .brand-grid--home .brand-card:nth-child(4) {
        grid-column: span 4;
    }

    .brand-grid--home .brand-card:nth-child(5),
    .brand-grid--home .brand-card:nth-child(6) {
        grid-column: span 3;
    }

    .adn-section__copy h2,
    .activation-section__copy h2 {
        font-size: 44px;
        line-height: 48px;
    }

    .adn-section__image,
    .adn-section__image img,
    .activation-section__media,
    .activation-section__media img {
        min-height: 0;
        height: 520px;
    }

    .site-footer__grid {
        grid-template-columns: 340px 140px 170px 170px;
        gap: 48px;
    }

    .site-footer__wordmark {
        font-size: 82px;
        line-height: 88px;
    }
}

/* Page Qui sommes-nous */
.page-about .about-story {
    padding-block: clamp(88px, 10vw, 144px);
    background: var(--color-paper);
}

.page-about .about-story__layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(56px, 9vw, 136px);
    align-items: start;
}

.page-about .about-story__identity {
    padding-top: 4px;
}

.page-about .about-story__word {
    display: block;
    width: min(100%, clamp(220px, 25vw, 360px));
    height: auto;
}

.page-about .about-story__caption {
    margin-top: 28px;
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
}

.page-about .about-story__content {
    min-width: 0;
}

.page-about .about-story__copy {
    display: grid;
    gap: 22px;
    max-width: 720px;
}

.page-about .about-story__copy p,
.page-about .about-david__copy p {
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.75;
}

.page-about .about-story__copy p:first-child {
    color: var(--color-ink);
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.48;
}

.page-about .about-story__milestones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: clamp(52px, 6vw, 78px) 0 0;
    border-top: 1px solid rgba(16, 16, 16, 0.18);
}

.page-about .about-story__milestone {
    min-width: 0;
    padding: 26px 24px 30px 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.18);
}

.page-about .about-story__milestone:nth-child(odd) {
    border-right: 1px solid rgba(16, 16, 16, 0.18);
}

.page-about .about-story__milestone:nth-child(even) {
    padding-left: 24px;
}

.page-about .about-story__milestone dt {
    color: var(--color-logo-ochre);
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1;
}

.page-about .about-story__milestone dd {
    max-width: 260px;
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.55;
}

.page-about .about-david {
    padding-block: clamp(92px, 11vw, 156px);
    background: var(--color-ink);
    color: var(--color-paper);
}

.page-about .about-david__layout {
    display: grid;
    gap: clamp(56px, 8vw, 116px);
    align-items: stretch;
}

.page-about .about-david--with-media .about-david__layout {
    grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
}

.page-about .about-david--without-media .about-david__layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.page-about .about-david__media {
    min-height: 580px;
    margin: 0;
    overflow: hidden;
    background: #202221;
}

.page-about .about-david__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-about .about-david__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.page-about .about-david__content h2 {
    max-width: 680px;
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.04;
}

.page-about .about-david__copy {
    display: grid;
    gap: 20px;
    max-width: 650px;
    margin-top: 34px;
}

.page-about .about-david__copy p {
    color: #b7b3aa;
}

.page-about .about-david blockquote {
    max-width: 650px;
    margin: 46px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid rgba(250, 248, 242, 0.24);
    color: var(--color-paper);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 31px);
    line-height: 1.35;
}

.page-about .about-david .btn {
    align-self: flex-start;
    margin-top: 40px;
}

.page-about .about-final-cta {
    position: relative;
    min-height: 460px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--color-logo-ochre);
    /* Texte noir sur la surface orange (le blanc n'y est pas lisible). */
    color: var(--color-ink);
}

.page-about .about-final-cta--with-media {
    color: var(--color-paper);
}

.page-about .about-final-cta__media {
    position: absolute;
    inset: 0;
}

.page-about .about-final-cta__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, 0.64);
}

.page-about .about-final-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-about .about-final-cta__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(42px, 8vw, 120px);
    align-items: end;
    padding-block: clamp(84px, 9vw, 128px);
}

.page-about .about-final-cta h2 {
    max-width: 760px;
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.02;
}

.page-about .about-final-cta__body {
    min-width: 0;
}

.page-about .about-final-cta p {
    color: rgba(16, 16, 16, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.page-about .about-final-cta--with-media p {
    color: rgba(250, 248, 242, 0.86);
}

.page-about .about-final-cta .btn {
    justify-self: start;
    margin-top: 28px;
}

@media (max-width: 900px) {
    .page-about .about-story__layout,
    .page-about .about-david--with-media .about-david__layout,
    .page-about .about-final-cta__content {
        grid-template-columns: 1fr;
    }

    .page-about .about-story__layout,
    .page-about .about-david__layout {
        gap: 54px;
    }

    .page-about .about-david__media {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .page-about .about-final-cta__content {
        gap: 28px;
    }
}

@media (max-width: 520px) {
    .page-about .about-story,
    .page-about .about-david {
        padding-block: 76px;
    }

    .page-about .about-story__copy p,
    .page-about .about-david__copy p {
        font-size: 16px;
        line-height: 1.68;
    }

    .page-about .about-story__milestones {
        grid-template-columns: 1fr;
    }

    .page-about .about-story__milestone,
    .page-about .about-story__milestone:nth-child(even) {
        padding: 22px 0 24px;
        border-right: 0;
    }

    .page-about .about-david blockquote {
        font-size: 21px;
    }

    .page-about .about-david .btn,
    .page-about .about-final-cta .btn {
        width: 100%;
    }

    .page-about .about-final-cta {
        min-height: 0;
    }

    .page-about .about-final-cta__content {
        padding-block: 76px;
    }

    .page-about .about-final-cta h2 {
        font-size: 36px;
        line-height: 1.08;
    }
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 10000;
    padding: 12px 16px;
    color: var(--color-paper);
    background: var(--color-black);
    border: 1px solid rgba(250, 248, 242, 0.28);
    transform: translateY(-140%);
    transition: transform 160ms ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .brand-marquee__track,
    .route-motif,
    .home-hero__video {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    .home-hero__video {
        display: none;
    }

    .motion-ready [style*="opacity: 0"],
    .motion-ready [style*="visibility: hidden"] {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}
