﻿:root {
            /* Charte site (orange, magenta, cyan, teal + marine + fond) */
            --charte-orange: #f99920;
            --charte-pink: #e91f85;
            --charte-cyan: #00ade2;
            --charte-teal: #00abba;
            --charte-navy: #052160;
            --charte-bg: #f0f0ef;

            --brand-blush: #e91f85;
            --brand-honey: #f99920;
            --brand-sky: #00ade2;
            --brand-bg: #f0f0ef;
            --brand-ink: #052160;

            --atf-bg: #f0f0ef;
            --atf-ink: #052160;
            --atf-muted: rgba(5, 33, 96, 0.58);
            --atf-card: #ffffff;
            --atf-border: rgba(5, 33, 96, 0.1);
            --atf-accent: #052160;

            /* Premium UI tokens (Stripe/Linear-ish, light) */
            --ui-bg: #e9eae9;
            --ui-surface: rgba(255, 255, 255, 0.78);
            --ui-surface-strong: rgba(255, 255, 255, 0.92);
            --ui-border: rgba(5, 33, 96, 0.10);
            --ui-border-strong: rgba(5, 33, 96, 0.16);
            --ui-ink: #041a4a;
            --ui-muted: rgba(4, 26, 74, 0.64);
            --ui-shadow-sm: 0 10px 26px rgba(5, 33, 96, 0.08);
            --ui-shadow-md: 0 18px 56px rgba(5, 33, 96, 0.10);
            --ui-shadow-lg: 0 28px 90px rgba(5, 33, 96, 0.14);
            --ui-radius-md: 16px;
            --ui-radius-lg: 22px;
            --ui-ring: 0 0 0 4px rgba(0, 173, 226, 0.18);

            /* Barre de défilement (alignée charte Puma Paint) */
            --gp-scrollbar-w: 11px;
            --gp-scrollbar-track: rgba(5, 33, 96, 0.09);
            --gp-scrollbar-thumb: #052160;
            --gp-scrollbar-thumb-mid: #0a3d8a;
            --gp-scrollbar-thumb-accent: #00ade2;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 1rem;
            scrollbar-gutter: stable;
            scrollbar-width: thin;
            scrollbar-color: var(--charte-teal) var(--gp-scrollbar-track);
            /* Prevent browser scroll anchoring jumps on dynamic sections */
            overflow-anchor: none;
        }

        html::-webkit-scrollbar {
            width: var(--gp-scrollbar-w);
            height: var(--gp-scrollbar-w);
        }

        html::-webkit-scrollbar-track {
            background: linear-gradient(
                180deg,
                rgba(240, 240, 239, 0.98) 0%,
                var(--brand-bg) 50%,
                rgba(233, 234, 233, 1) 100%
            );
            border-left: 1px solid rgba(5, 33, 96, 0.07);
        }

        html::-webkit-scrollbar-thumb {
            border-radius: 100px;
            background: linear-gradient(
                180deg,
                var(--gp-scrollbar-thumb) 0%,
                var(--gp-scrollbar-thumb-mid) 42%,
                var(--gp-scrollbar-thumb-accent) 100%
            );
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.22),
                0 1px 2px rgba(5, 33, 96, 0.18);
            border: 2px solid rgba(240, 240, 239, 0.85);
        }

        html::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(
                180deg,
                #041a4a 0%,
                var(--charte-cyan) 48%,
                var(--charte-orange) 100%
            );
        }

        html::-webkit-scrollbar-corner {
            background: var(--brand-bg);
        }

        body {
            font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
            color: var(--ui-ink);
            background: var(--ui-bg);
        }

        img,
        video {
            max-width: 100%;
            height: auto;
        }

        :root {
            --gp-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
            --gp-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
        }

        /* Police globale (remplace Syne/DM Sans là où elles étaient forcées) */
        body,
        .atf-hero,
        .site-footer,
        .gp-section,
        .gp-prod-section {
            font-family: var(--gp-font) !important;
        }

        h1, h2, h3,
        .gp-prod-sidebar__title,
        .gp-prod-card__title,
        .atf-hero__h1,
        .atf-hero__eyebrow {
            font-family: var(--gp-font) !important;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        .gp-page {
            background: transparent;
            color: var(--brand-ink);
            min-height: 100vh;
            position: relative;
        }

        /* Subtle grain/mesh on top of the wall (premium depth, very light) */
        .gp-page::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.18;
            background:
                radial-gradient(1200px 700px at 12% 18%, rgba(0, 173, 226, 0.14), transparent 55%),
                radial-gradient(900px 520px at 86% 14%, rgba(233, 31, 133, 0.10), transparent 60%),
                radial-gradient(1100px 760px at 50% 92%, rgba(249, 153, 32, 0.10), transparent 62%),
                repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 3px);
            mix-blend-mode: soft-light;
        }

        /* Fond mur (fixe) â€” texture optionnelle mur.jpg ; parallax via GSAP */
        .gp-page-wall {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-color: var(--ui-bg);
            background-size: cover;
            background-position: 50% 42%;
            background-repeat: no-repeat;
            will-change: transform, background-position;
            transform: scale(1.08);
            transform-origin: center center;
        }

        /* Peinture bleue (drip.png) â€” overlay pilotأ© par le scroll */
        .gp-paint {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            isolation: isolate;
            --gp-paint-progress: 0.02; /* bande fine visible au chargement */
            --gp-paint-feather: clamp(22px, 3.8vh, 54px);
            --gp-paint-blue: #10173a;
        }

        .gp-paint__fill {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(120% 90% at 30% -10%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
                linear-gradient(185deg, rgba(16, 23, 58, 0.96) 0%, rgba(16, 23, 58, 0.88) 52%, rgba(16, 23, 58, 0.72) 100%);
            will-change: -webkit-mask-image, mask-image, opacity;
            opacity: 0.92;
            -webkit-mask-image: linear-gradient(
                to bottom,
                #000 0,
                #000 max(0%, calc(100% * var(--gp-paint-progress) - var(--gp-paint-feather))),
                transparent calc(100% * var(--gp-paint-progress) + var(--gp-paint-feather))
            );
            -webkit-mask-size: 100% 100%;
            -webkit-mask-repeat: no-repeat;
            mask-image: linear-gradient(
                to bottom,
                #000 0,
                #000 max(0%, calc(100% * var(--gp-paint-progress) - var(--gp-paint-feather))),
                transparent calc(100% * var(--gp-paint-progress) + var(--gp-paint-feather))
            );
            mask-size: 100% 100%;
            mask-repeat: no-repeat;
        }

        .gp-paint__drips {
            position: absolute;
            left: -2vw;
            right: -2vw;
            top: 0;
            height: min(58vh, 560px);
            background-image: var(--gp-drip-img, none);
            background-repeat: repeat-x;
            background-size: auto 100%;
            background-position: top center;
            opacity: 0.92;
            mix-blend-mode: multiply;
            transform-origin: top center;
            will-change: transform, opacity;
            filter: saturate(1.02);
            -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
        }

        @media (prefers-reduced-motion: reduce) {
            .gp-paint {
                display: none;
            }
        }

        body.gp-page > section,
        body.gp-page > footer {
            position: relative;
            z-index: 5;
        }

        /* â€”â€”â€” Intro chargement : pot + pinceau â€”â€”â€” */
        .gp-intro-splash {
            position: fixed;
            inset: 0;
            z-index: 12000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.75rem;
            padding: 2rem;
            background:
                radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 173, 226, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse 70% 50% at 80% 20%, rgba(233, 31, 133, 0.08) 0%, transparent 45%),
                linear-gradient(165deg, #f0f0ef 0%, #e8eaef 45%, #dce8f2 100%);
            transition: opacity 0.55s ease, visibility 0.55s ease;
        }

        .gp-intro-splash.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .gp-intro-splash__scene {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: clamp(0.75rem, 4vw, 1.75rem);
        }

        .gp-intro-splash__bucket {
            position: relative;
            width: clamp(100px, 22vw, 130px);
            filter: drop-shadow(0 12px 28px rgba(5, 33, 96, 0.18));
        }

        .gp-intro-splash__bucket-logo {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 14px;
            border: 0;
            background: transparent;
            overflow: hidden;
            position: relative;
            display: grid;
            place-items: center;
            box-sizing: border-box;
        }

        .gp-intro-splash__bucket-logo img {
            width: 94%;
            height: 94%;
            object-fit: contain;
            display: block;
            clip-path: inset(100% 0 0 0 round 0);
            animation: gpLogoRevealUp 3.2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
        }

        @keyframes gpLogoRevealUp {
            to {
                clip-path: inset(0 0 0 0 round 0);
            }
        }

        .gp-intro-splash__bucket-rim {
            height: 10px;
            margin: 0 4px -2px;
            border-radius: 8px 8px 2px 2px;
            background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
            border: 2px solid rgba(5, 33, 96, 0.35);
            border-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .gp-intro-splash__bucket-window {
            position: relative;
            height: clamp(88px, 18vw, 108px);
            margin: 0 auto;
            width: 86%;
            clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
            border-radius: 0 0 14px 14px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(5, 33, 96, 0.06) 100%);
            border: 2px solid rgba(5, 33, 96, 0.4);
            border-top: 0;
            overflow: hidden;
            box-sizing: border-box;
        }

        .gp-intro-splash__bucket-liquid {
            position: absolute;
            left: -5%;
            right: -5%;
            bottom: 0;
            height: 100%;
            background: linear-gradient(
                180deg,
                var(--charte-cyan) 0%,
                var(--charte-teal) 35%,
                var(--charte-pink) 72%,
                var(--charte-orange) 100%
            );
            transform: translateY(100%);
            animation: gpSplashFill 2.1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
        }

        .gp-intro-splash__bucket-liquid::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 14px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }

        @keyframes gpSplashFill {
            to {
                transform: translateY(0);
            }
        }

        .gp-intro-splash__label {
            margin: 0;
            font-family: var(--gp-font);
            font-weight: 800;
            font-size: clamp(0.95rem, 2.5vw, 1.15rem);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--charte-navy);
            opacity: 0.85;
        }

        .gp-intro-splash__hint {
            margin: 0;
            font-size: 0.78rem;
            color: rgba(5, 33, 96, 0.45);
        }

        @media (prefers-reduced-motion: reduce) {
            .gp-intro-splash__bucket-liquid {
                animation-duration: 0.01ms;
                animation-iteration-count: 1;
                transform: translateY(0);
            }

        }

        /* â€”â€”â€” Header type آ« Lavisha آ» : top bar blanche + nav flottante â€”â€”â€” */
        .gp-topbar {
            background: #fff;
            color: #1e293b;
            font-size: 0.8125rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .gp-topbar--in-hero {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto;
            align-items: start;
            column-gap: 1rem;
            row-gap: 0.15rem;
            padding: 0.4rem var(--atf-hero-pad-x, clamp(1.25rem, 4vw, 2.75rem)) 0;
            box-sizing: border-box;
            overflow: visible;
        }

        /* Hidden by default (shown only on phones) */
        .gp-mhead { display: none; }

        .gp-topbar--in-hero .gp-topbar__inner {
            display: contents;
        }

        .gp-topbar--in-hero .atf-hero__logo--topbar {
            grid-column: 1;
            grid-row: 1 / 3;
            align-self: center;
            justify-self: start;
        }

        .gp-topbar--in-hero .gp-topbar__blocks {
            grid-column: 2;
            grid-row: 1;
            justify-self: end;
            align-self: center;
        }

        .gp-topbar--in-hero .gp-topbar__menu {
            grid-column: 1 / -1;
            grid-row: 2;
        }

        .gp-topbar__inner {
            max-width: none;
            width: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem 1.5rem;
        }

        .gp-topbar__blocks {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            gap: clamp(0.6rem, 2vw, 1.2rem);
        }

        .gp-topbar__block {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            max-width: 100%;
            text-align: left;
            text-decoration: none;
            color: inherit;
            line-height: 1.2;
            transition: opacity 0.2s;
        }

        .gp-topbar__block--catalog {
            padding: 0.42rem 0.7rem;
            border-radius: 999px;
            background: #00ade7;
            color: #fff;
            border: 1px solid rgba(5, 33, 96, 0.14);
            box-shadow: 0 10px 26px rgba(5, 33, 96, 0.14);
            opacity: 1;
            transform: translateY(-1px);
            transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
        }

        a.gp-topbar__block--catalog:hover {
            opacity: 1;
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(5, 33, 96, 0.18);
            filter: brightness(0.98) saturate(1.06);
        }

        .gp-topbar__block--catalog > i {
            color: #fff;
        }

        .gp-topbar__block--catalog .gp-topbar__line {
            color: #fff;
            font-weight: 800;
            letter-spacing: 0.02em;
        }

        a.gp-topbar__block:hover {
            opacity: 0.85;
        }

        .gp-topbar__block > i {
            flex-shrink: 0;
            font-size: 1.15rem;
            color: var(--charte-navy);
            opacity: 0.88;
        }

        .gp-topbar__block:hover > i {
            color: var(--charte-cyan);
        }

        .gp-topbar__block-text {
            display: block;
            min-width: 0;
        }

        .gp-topbar__line {
            font-weight: 600;
            font-size: 0.94rem;
            color: #1e293b;
            letter-spacing: 0.01em;
            word-break: break-word;
        }

        /* â€”â€”â€” Hero : en-tأھte (topbar inclut la partie haute du menu) â€”â€”â€” */
        .atf-hero__head {
            /* Débordement du menu vers le slider : mobile uniquement (voir @media min-width:769px) */
            --atf-menu-protrude: clamp(1rem, 2.8vw, 1.45rem);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            /* Always above everything (including modal / pinned sections) */
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0;
            pointer-events: none;
        }

        /* Sticky â€œfunded startupâ€‌ header feel */
        .atf-hero__head.is-sticky {
            top: 0;
            left: 0;
            right: 0;
            padding-top: 0.12rem;
            padding-bottom: 0.12rem;
            background: rgba(0, 169, 228, 0.78);
            backdrop-filter: blur(12px) saturate(1.2);
            -webkit-backdrop-filter: blur(12px) saturate(1.2);
        }

        .atf-hero__head > * {
            pointer-events: auto;
        }

        /* Rangأ©e menu dans la topbar (fond blanc) ; bas de pilule vers le slider */
        .gp-topbar__menu {
            position: relative;
            z-index: 6;
            display: flex;
            justify-content: center;
            padding: 0.15rem var(--atf-hero-pad-x, clamp(1.25rem, 4vw, 2.75rem)) 0.4rem;
            box-sizing: border-box;
            pointer-events: none;
        }

        .gp-topbar__menu > * {
            pointer-events: auto;
        }

        /* Barre nav (glass lأ©ger) â€” id #atfHeroGlass pour le JS */
        .atf-hero__glass {
            width: fit-content;
            max-width: min(96vw, 1100px);
            margin: 0 auto calc(-1 * var(--atf-menu-protrude));
            box-sizing: border-box;
            padding: 0.34rem 0.75rem 0.34rem 0.95rem;
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem 0.75rem;
            border-radius: 14px;
            border: 1px solid rgba(5, 33, 96, 0.10);
            background: rgba(255, 255, 255, 0.72);
            box-shadow:
                0 18px 60px rgba(5, 33, 96, 0.12),
                0 6px 18px rgba(15, 23, 42, 0.06);
            backdrop-filter: blur(12px) saturate(1.25);
            -webkit-backdrop-filter: blur(12px) saturate(1.25);
        }

        .atf-hero__head.is-sticky .atf-hero__glass {
            background: rgba(0, 169, 228, 0.14);
            border-color: rgba(255, 255, 255, 0.22);
            box-shadow:
                0 18px 60px rgba(5, 33, 96, 0.12),
                0 6px 18px rgba(15, 23, 42, 0.08);
        }

        /* Desktop : menu entièrement dans la bande blanche — pas de chevauchement sur la hero (margin négative du glass) */
        @media (min-width: 769px) {
            .atf-hero__head {
                --atf-menu-protrude: 0;
            }
        }

        .atf-hero__logo--topbar {
            justify-content: flex-start;
        }

        .atf-hero__logo--topbar img {
            height: clamp(2.25rem, 7.2vw, 3.35rem);
            max-width: min(460px, 85vw);
        }

        .atf-hero__logo--topbar .atf-hero__logo-text {
            font-size: clamp(1.55rem, 4.8vw, 2.2rem);
        }

        .atf-hero__logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .atf-hero__logo img {
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.12));
        }

        .atf-hero__logo:not(.atf-hero__logo--topbar) img {
            height: clamp(3.5rem, 11vw, 5.85rem);
            max-width: min(96vw, 560px);
        }

        /* Texte dأ©gradأ© : repli couleur si background-clip indisponible (sinon texte invisible) */
        .atf-hero__logo-text {
            font-family: var(--gp-font);
            font-weight: 800;
            font-size: clamp(1.45rem, 4.5vw, 2.15rem);
            letter-spacing: -0.02em;
            color: var(--brand-ink);
        }

        @supports ((-webkit-background-clip: text) or (background-clip: text)) {
            .atf-hero__logo-text {
                background: linear-gradient(115deg, var(--brand-ink) 0%, #3d4a6b 40%, var(--brand-sky) 72%, #c45a7a 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                -webkit-text-fill-color: transparent;
            }
        }

        .atf-hero__nav {
            position: relative;
            flex: 1 1 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
        }

        .atf-hero__cta {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.62rem 1.35rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, #0f766e 0%, #115e59 45%, #134e4a 100%);
            box-shadow: 0 6px 20px rgba(15, 118, 110, 0.35);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .atf-hero__cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 28px rgba(15, 118, 110, 0.4);
        }

        .atf-hero__cta:focus-visible {
            outline: 2px solid var(--brand-sky);
            outline-offset: 3px;
        }

        .atf-hero__nav-toggle {
            display: none;
            appearance: none;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            color: #0f172a;
            min-width: 44px;
            height: 44px;
            padding: 0 0.7rem;
            border-radius: 12px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }

        .atf-hero__nav-toggle-txt {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .atf-hero__nav-toggle:hover {
            background: #fff;
            border-color: #cbd5e1;
            color: #0d9488;
        }

        .atf-hero__nav-toggle:focus-visible {
            outline: 2px solid var(--brand-sky);
            outline-offset: 2px;
        }

        .atf-hero__nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;
            gap: 0.35rem 1.35rem;
            white-space: nowrap;
        }

        .atf-hero__nav a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.6rem;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-transform: none;
            color: var(--charte-navy);
            text-decoration: none;
            border-radius: 8px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s, background 0.2s;
        }

        .atf-hero__nav a:hover,
        .atf-hero__nav a:focus-visible {
            color: var(--charte-navy);
            background: rgba(0, 173, 226, 0.1);
            border-bottom-color: rgba(0, 173, 226, 0.45);
        }

        @media (max-width: 900px) {
            .gp-topbar--in-hero {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                row-gap: 0.5rem;
            }

            .gp-topbar--in-hero .gp-topbar__inner {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 0.65rem;
            }

            .gp-topbar--in-hero .atf-hero__logo--topbar {
                grid-column: unset;
                grid-row: unset;
                align-self: flex-start;
                justify-self: unset;
            }

            .gp-topbar--in-hero .gp-topbar__blocks {
                grid-column: unset;
                grid-row: unset;
                justify-self: unset;
                align-self: unset;
                width: 100%;
            }

            .gp-topbar--in-hero .gp-topbar__menu {
                grid-column: unset;
                grid-row: unset;
                width: 100%;
            }

            /* Mobile/tablet: compact blocks + avoid overflow */
            .gp-topbar--in-hero .gp-topbar__blocks {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.55rem 0.9rem;
                justify-content: start;
                align-items: center;
            }

            .gp-topbar--in-hero .gp-topbar__block {
                gap: 0.5rem;
                min-width: 0;
            }

            .gp-topbar--in-hero .gp-topbar__block-text {
                min-width: 0;
            }

            .gp-topbar--in-hero .gp-topbar__line {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .gp-topbar--in-hero .gp-topbar__block--catalog {
                grid-column: 1 / -1;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .atf-hero__head {
                --atf-menu-protrude: clamp(0.9rem, 2.6vw, 1.35rem);
            }

            /*
             * Menu mobile : le JS ouvre #atfHeroGlass â€” il ne doit pas أھtre dans un parent display:none.
             * On masque seulement le bloc logo/contact ; la rangأ©e menu reste â€œfantأ´meâ€‌ (fixed, pointer-events) pour le dropdown.
             */
            .gp-topbar--in-hero {
                display: block !important;
                position: fixed;
                left: 0;
                right: 0;
                top: 0;
                height: 0;
                overflow: visible;
                padding: 0;
                margin: 0;
                border: 0;
                background: transparent;
                pointer-events: none;
                z-index: 10002;
            }

            .gp-topbar--in-hero .gp-topbar__inner {
                display: none !important;
            }

            .gp-topbar--in-hero .gp-topbar__menu {
                display: flex;
                justify-content: flex-end;
                position: fixed;
                top: 0;
                right: max(0.55rem, env(safe-area-inset-right));
                width: 0;
                height: 0;
                overflow: visible;
                padding: 0;
                pointer-events: none;
                z-index: 10003;
            }

            .gp-mhead {
                display: block;
                pointer-events: auto;
                padding: 0.65rem var(--atf-hero-pad-x, clamp(1.25rem, 4vw, 2.75rem)) 0.55rem;
                background: rgba(255, 255, 255, 0.96);
                border-bottom: 1px solid rgba(5, 33, 96, 0.10);
                backdrop-filter: blur(10px) saturate(1.15);
                -webkit-backdrop-filter: blur(10px) saturate(1.15);
            }

            .gp-mhead__bar {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 0.75rem;
                font-size: 0.82rem;
                color: rgba(4, 26, 74, 0.72);
            }

            .gp-mhead__link {
                display: inline-flex;
                align-items: center;
                gap: 0.45rem;
                min-width: 0;
                color: inherit;
                text-decoration: none;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .gp-mhead__link i {
                color: #00a9e4;
                flex-shrink: 0;
            }

            .gp-mhead__catalog {
                margin-top: 0.55rem;
                width: 100%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.55rem;
                padding: 0.68rem 0.95rem;
                border-radius: 14px;
                background: #00a9e4;
                color: #fff;
                text-decoration: none;
                font-weight: 800;
                letter-spacing: 0.01em;
                border: 1px solid rgba(5, 33, 96, 0.14);
                box-shadow: 0 12px 30px rgba(5, 33, 96, 0.16);
            }

            .gp-mhead__catalog i { color: #fff; }

            .gp-mhead__row {
                margin-top: 0.6rem;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 0.75rem;
            }

            .gp-mhead__logo {
                display: inline-flex;
                align-items: center;
                text-decoration: none;
                min-width: 0;
            }

            .gp-mhead__logo img {
                height: 2.25rem;
                width: auto;
                display: block;
                object-fit: contain;
            }

            .gp-mhead__logo-text {
                font-weight: 900;
                letter-spacing: -0.02em;
                color: var(--ui-ink);
            }

            .gp-mhead__burger {
                display: grid;
                place-items: center;
                width: auto;
                min-width: 2.6rem;
                height: 2.6rem;
                padding: 0 0.55rem;
                border-radius: 12px;
                border: 1px solid rgba(5, 33, 96, 0.12);
                background: rgba(255, 255, 255, 0.90);
                color: rgba(4, 26, 74, 0.92);
                box-shadow: 0 10px 26px rgba(5, 33, 96, 0.10);
            }

            .gp-mhead__burger:focus-visible {
                outline: none;
                box-shadow: var(--ui-ring), 0 10px 26px rgba(5, 33, 96, 0.10);
            }

            /* Keep the existing dropdown menu behavior, but keep the glass container visually minimal */
            .atf-hero__glass {
                width: 1px;
                height: 1px;
                padding: 0;
                border: 0;
                background: transparent;
                box-shadow: none;
                margin: 0;
                pointer-events: none;
            }

            .atf-hero__glass.is-nav-open {
                pointer-events: auto;
            }

            .atf-hero__cta {
                display: none;
            }

            .atf-hero__nav {
                justify-content: flex-end;
            }

            /* Burger du glass masquأ© : seul #atfNavToggleMobile (.gp-mhead__burger) est visible */
            .atf-hero__nav-toggle {
                display: none !important;
            }

            .atf-hero__nav ul {
                display: none;
                position: fixed;
                top: var(--atf-mobile-nav-anchor, 7.5rem);
                right: max(0.65rem, env(safe-area-inset-right, 0px));
                left: auto;
                min-width: min(280px, calc(100vw - 1.3rem));
                max-width: min(320px, calc(100vw - 1.3rem));
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0.35rem 0;
                border-radius: 14px;
                border: 1px solid #e2e8f0;
                background: rgba(255, 255, 255, 0.97);
                box-shadow: 0 16px 40px rgba(0, 48, 87, 0.14);
                backdrop-filter: blur(6px);
                -webkit-backdrop-filter: blur(6px);
                z-index: 10005;
                pointer-events: auto;
            }

            .atf-hero__glass.is-nav-open .atf-hero__nav ul {
                display: flex;
            }

            .atf-hero__nav a {
                padding: 0.65rem 1rem;
                border-bottom: 1px solid #f1f5f9;
            }

            .atf-hero__nav li:last-child a {
                border-bottom: 0;
            }
        }

        .gp-section {
            /* Mobile-first: fluid spacing + no horizontal overflow */
            padding: clamp(1.6rem, 3.6vw, 2.6rem) clamp(1rem, 4vw, 2.5rem);
            max-width: none;
            width: 100%;
            margin: 0;
            background: transparent;
            color: #475569;
            border-radius: 0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
            box-sizing: border-box;
        }

        /* Shared layout + typography rhythm (keeps the page coherent) */
        :root {
            --gp-container: min(1100px, 100%);
            --gp-section-gap: clamp(0.85rem, 1.8vw, 1.15rem);
            --gp-title: clamp(1.35rem, 2.6vw, 1.95rem);
            --gp-section-head-title: clamp(1.45rem, 2.65vw, 1.95rem);
            --gp-section-y: clamp(2.5rem, 5.5vw, 3.75rem);
        }

        .gp-section.gp-section--wide {
            max-width: none !important;
            width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .gp-section h2 {
            font-family: var(--gp-font);
            font-size: var(--gp-title);
            margin: 0 0 var(--gp-section-gap);
            color: var(--ui-ink);
            letter-spacing: -0.02em;
            line-height: 1.12;
        }

        .gp-section p {
            margin: 0;
            line-height: 1.65;
            color: var(--ui-muted);
        }

        .gp-section p + p {
            margin-top: 0.85rem;
        }

        /* En-têtes de section unifiés (kicker + titre + sous-titre ou lead) */
        .gp-section-head {
            width: var(--gp-container);
            max-width: min(56rem, 100%);
            margin-left: auto;
            margin-right: auto;
            margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
        }

        .gp-section-head--start {
            text-align: left;
            width: 100%;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }

        .gp-section-head--center {
            text-align: center;
        }

        .gp-section-head__eyebrow {
            margin: 0 0 0.45rem;
            font-family: var(--gp-font-mono);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(4, 26, 74, 0.58);
        }

        .gp-section .gp-section-head h2 {
            margin: 0;
            font-family: var(--gp-font) !important;
            font-size: var(--gp-section-head-title);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.12;
            color: var(--charte-navy);
        }

        .gp-section .gp-section-head h2::after {
            content: "";
            display: block;
            width: 4rem;
            height: 4px;
            margin-top: 0.75rem;
            border-radius: 999px;
            background: linear-gradient(
                90deg,
                var(--charte-orange),
                var(--charte-pink),
                var(--charte-cyan),
                var(--charte-teal)
            );
        }

        .gp-section-head--center h2::after {
            margin-left: auto;
            margin-right: auto;
        }

        .gp-section-head__subtitle {
            margin: 0.65rem 0 0;
            font-family: var(--gp-font) !important;
            font-size: clamp(0.88rem, 1.55vw, 1.05rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.45;
            color: rgba(4, 26, 74, 0.78);
        }

        .gp-section-head__lead {
            margin: 0.8rem 0 0;
            max-width: 42rem;
            font-size: clamp(1rem, 1.85vw, 1.12rem);
            line-height: 1.65;
            color: rgba(4, 26, 74, 0.76);
        }

        .gp-section-head--center .gp-section-head__lead {
            margin-left: auto;
            margin-right: auto;
        }

        /* â€”â€”â€” Calcul quantitأ© peinture (modal) â€”â€”â€” */
        .gp-calc {
            max-width: min(980px, 100%) !important;
            padding-top: clamp(2.75rem, 5vw, 3.75rem);
            padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
        }

        .gp-calc__card {
            position: relative;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(5, 33, 96, 0.09);
            box-shadow: 0 18px 56px rgba(5, 33, 96, 0.08);
            overflow: hidden;
        }

        .gp-calc__card::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 90% 70% at 10% 0%, rgba(0, 173, 226, 0.12) 0%, transparent 48%),
                radial-gradient(ellipse 70% 60% at 90% 10%, rgba(233, 31, 133, 0.08) 0%, transparent 55%);
        }

        .gp-calc__inner {
            position: relative;
            z-index: 1;
            padding: clamp(1.25rem, 3vw, 1.75rem);
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            align-items: start;
        }

        @media (min-width: 900px) {
            .gp-calc__inner {
                grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
                gap: 1.75rem;
            }
        }

        .gp-calc__kicker {
            margin: 0 0 0.45rem;
            font-family: var(--gp-font-mono);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(4, 26, 74, 0.58);
        }

        .gp-calc__title {
            margin: 0 0 0.55rem;
            font-family: var(--gp-font);
            font-size: clamp(1.2rem, 2.8vw, 1.6rem);
            color: var(--charte-navy);
            letter-spacing: -0.02em;
        }

        .gp-calc__desc {
            margin: 0;
            color: rgba(5, 33, 96, 0.72);
            line-height: 1.65;
            max-width: 60ch;
        }

        .gp-calc__form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }

        .gp-field {
            display: grid;
            gap: 0.35rem;
        }

        .gp-field__label {
            font-weight: 700;
            font-size: 0.86rem;
            color: rgba(5, 33, 96, 0.85);
        }

        .gp-field__control {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 0.65rem;
            padding: 0.75rem 0.9rem;
            border-radius: 14px;
            border: 1px solid rgba(5, 33, 96, 0.12);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .gp-field__control input {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--charte-navy);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .gp-field__suffix {
            font-family: "IBM Plex Mono", ui-monospace, monospace;
            font-size: 0.78rem;
            color: rgba(5, 33, 96, 0.6);
            white-space: nowrap;
        }

        .gp-calc__result {
            border-radius: 16px;
            padding: 1rem 1.05rem;
            border: 1px solid rgba(0, 173, 226, 0.22);
            background: linear-gradient(180deg, rgba(0, 173, 226, 0.08) 0%, rgba(233, 31, 133, 0.06) 100%);
        }

        .gp-calc__result-label {
            margin: 0 0 0.35rem;
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 800;
            color: rgba(5, 33, 96, 0.62);
        }

        .gp-calc__result-value {
            margin: 0;
            font-family: var(--gp-font);
            font-weight: 800;
            font-size: clamp(1.2rem, 2.8vw, 1.55rem);
            color: var(--charte-navy);
            letter-spacing: -0.02em;
        }

        .gp-calc__note {
            margin: 0.55rem 0 0;
            font-size: 0.86rem;
            color: rgba(5, 33, 96, 0.68);
            line-height: 1.55;
        }

        /* Section À propos : sans fond décoratif, image collée au bord gauche (desktop) */
        #a-propos.gp-about {
            position: relative;
            z-index: 6;
            padding-top: var(--gp-section-y);
            padding-bottom: var(--gp-section-y);
            background: none;
        }

        #a-propos.gp-about::before {
            display: none;
            content: none;
        }

        .gp-about__panel {
            display: grid;
            gap: clamp(1.25rem, 3vw, 2rem);
            align-items: center;
            max-width: none;
            margin: 0;
            padding: 0;
            border: none;
            border-radius: 0;
            background: none;
            box-shadow: none;
        }

        @media (min-width: 768px) {
            .gp-about__panel {
                grid-template-columns: auto minmax(0, 1fr);
                padding-right: var(--atf-hero-pad-x, clamp(1.25rem, 4vw, 2.75rem));
                align-items: center;
            }
        }

        @media (max-width: 767px) {
            .gp-about__panel {
                padding-left: var(--atf-hero-pad-x, clamp(1.25rem, 4vw, 2.75rem));
                padding-right: var(--atf-hero-pad-x, clamp(1.25rem, 4vw, 2.75rem));
            }
        }

        .gp-about__visual {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0;
            margin: 0;
            border: none;
            border-radius: 0;
            background: none;
        }

        .gp-about__visual img {
            width: min(100%, 460px);
            height: auto;
            max-height: min(480px, 55vh);
            object-fit: contain;
            object-position: left center;
            display: block;
        }

        @media (max-width: 768px) {
            #a-propos .gp-about__visual {
                display: none;
            }

            .gp-about__panel {
                grid-template-columns: 1fr;
            }
        }

        .gp-about__copy {
            min-width: 0;
        }

        .gp-about__copy .gp-section-head + .gp-about__text {
            margin-top: 1.1rem;
        }

        .gp-about__text {
            margin: 0;
            font-size: 0.98rem;
            line-height: 1.65;
            color: rgba(5, 33, 96, 0.72);
        }

        /* Lightbox image (produits) */
        .gp-lightbox {
            position: fixed;
            inset: 0;
            z-index: 32000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(0.75rem, 3vw, 1.5rem);
            box-sizing: border-box;
        }

        .gp-lightbox[hidden] {
            display: none !important;
        }

        .gp-lightbox__backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            padding: 0;
            margin: 0;
            cursor: zoom-out;
            background: rgba(3, 12, 28, 0.72);
            backdrop-filter: blur(8px) saturate(1.1);
            -webkit-backdrop-filter: blur(8px) saturate(1.1);
        }

        .gp-lightbox__figure {
            position: relative;
            z-index: 1;
            margin: 0;
            max-width: min(96vw, 1400px);
            max-height: min(92vh, 1200px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gp-lightbox__img {
            display: block;
            max-width: 100%;
            max-height: min(88vh, 1100px);
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
        }

        .gp-lightbox__close {
            position: absolute;
            top: -0.25rem;
            right: -0.25rem;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(15, 23, 42, 0.85);
            color: #fff;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            display: grid;
            place-items: center;
            transform: translate(25%, -25%);
            transition: background 0.2s, border-color 0.2s;
        }

        .gp-lightbox__close:hover,
        .gp-lightbox__close:focus-visible {
            background: rgba(0, 173, 226, 0.45);
            border-color: rgba(255, 255, 255, 0.5);
            outline: none;
        }

        @media (max-width: 520px) {
            .gp-lightbox__close {
                top: 0.25rem;
                right: 0.25rem;
                transform: none;
            }
        }

        a.js-gp-lightbox {
            cursor: zoom-in;
        }

        /* Modal shell — au-dessus du header mobile (.atf-hero__head z-index 10000 / menu 10005), sous lightbox (32000) */
        .gp-modal {
            position: fixed;
            inset: 0;
            z-index: 11050;
            display: none;
            align-items: center;
            justify-content: center;
            padding: clamp(1rem, 3vw, 1.75rem);
        }

        .gp-modal.is-open {
            display: flex;
        }

        .gp-modal__backdrop {
            position: absolute;
            inset: 0;
            z-index: 0;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            background: rgba(2, 6, 23, 0.52);
            backdrop-filter: blur(10px) saturate(1.15);
            -webkit-backdrop-filter: blur(10px) saturate(1.15);
        }

        .gp-modal__panel {
            position: relative;
            z-index: 1;
            width: min(980px, 96vw);
            border-radius: var(--ui-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.20);
            box-shadow: var(--ui-shadow-lg);
            overflow: hidden;
            transform: translateY(8px);
            opacity: 0;
        }

        .gp-modal.is-open .gp-modal__panel {
            transform: translateY(0);
            opacity: 1;
            transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
        }

        .gp-modal__close {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(5, 33, 96, 0.14);
            background: rgba(255, 255, 255, 0.86);
            color: rgba(5, 33, 96, 0.92);
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: transform 0.18s, background 0.18s, border-color 0.18s;
        }

        .gp-modal__close:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(0, 173, 226, 0.35);
        }

        .gp-modal__close:focus-visible {
            outline: none;
            box-shadow: var(--ui-ring);
        }

        /* Modal calcul quantites — mobile : panneau plus compact, tap sur le fond pour fermer */
        @media (max-width: 639px) {
            #calcul-quantite.gp-modal {
                align-items: center;
                justify-content: center;
                padding: 0.65rem;
                padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
            }

            #calcul-quantite .gp-modal__panel {
                width: min(100%, 380px);
                max-width: calc(100vw - 1.3rem);
                max-height: min(86vh, 720px);
                display: flex;
                flex-direction: column;
            }

            #calcul-quantite .gp-calc__card {
                border-radius: 16px;
                flex: 1;
                min-height: 0;
                display: flex;
                flex-direction: column;
            }

            #calcul-quantite .gp-calc__inner {
                padding: 0.95rem 0.85rem 1rem;
                gap: 0.95rem;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            #calcul-quantite .gp-calc__title {
                font-size: clamp(1.15rem, 4.8vw, 1.45rem);
            }

            #calcul-quantite .gp-calc__desc {
                font-size: 0.88rem;
                line-height: 1.55;
                max-width: none;
            }

            #calcul-quantite .gp-calc__result-value {
                font-size: clamp(1.15rem, 4.5vw, 1.5rem);
            }

            #calcul-quantite .gp-modal__close {
                top: 8px;
                right: 8px;
                width: 46px;
                height: 46px;
                border-radius: 12px;
                font-size: 1.35rem;
                line-height: 1;
                box-shadow: 0 4px 14px rgba(5, 33, 96, 0.12);
            }
        }

        /* â€”â€”â€” Inspirations : floating gallery (studio architecture) â€”â€”â€” */
        #inspirations.gp-section--wide {
            max-width: none;
            width: 100%;
        }

        #inspirations.gp-inspo {
            scroll-margin-top: 1.25rem;
            position: relative;
            z-index: 5;
            padding-top: var(--gp-section-y);
            padding-bottom: var(--gp-section-y);
        }

        /* Full-bleed container for the Bento */
        #inspirations.gp-inspo.gp-section {
            max-width: none;
            width: 100%;
            margin: 0;
            padding-left: clamp(1rem, 4vw, 2.5rem);
            padding-right: clamp(1rem, 4vw, 2.5rem);
        }

        #inspirations .gp-section-head {
            margin-bottom: clamp(1.65rem, 3.2vw, 2.35rem);
        }

        /* Wrapper des vignettes : neutralisé en desktop (nuage absolu) ; colonne tablette ; slider horizontal mobile */
        .gp-inspo-slider__viewport {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            min-width: 0;
        }

        @media (min-width: 981px) {
            .gp-inspo-slider__viewport {
                display: contents;
            }
        }

        .gp-float-gallery {
            --pgx: 0px;
            --pgy: 0px;
            --safe: clamp(160px, 22vw, 300px);
            position: relative;
            border-radius: 24px;
            overflow: visible;
            background: transparent;
            border: 0;
            box-shadow: none;
            min-height: clamp(620px, 82vh, 920px);
        }

        .gp-float {
            position: absolute;
            left: var(--x, 50%);
            top: var(--y, 50%);
            width: clamp(120px, var(--w, 14vw), 280px);
            aspect-ratio: var(--ar, 4 / 3);
            transform:
                translate(-50%, -50%)
                translate3d(var(--nx, 0px), var(--ny, 0px), 0)
                translate3d(calc(var(--pgx) * var(--d, 0.5) * 1.45), calc(var(--pgy) * var(--d, 0.5) * 1.45), 0)
                rotate(var(--rot, 0deg));
            transform-origin: center center;
            z-index: var(--z, 1);
            opacity: var(--o, 1);
            will-change: transform;
        }

        .gp-float__link {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: clamp(18px, 2.2vw, 24px);
            overflow: hidden;
            border: 1px solid rgba(5, 33, 96, 0.10);
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 0 18px 60px rgba(5, 33, 96, 0.10);
            transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
        }

        .gp-float__link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.02);
            transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .gp-float__link:hover {
            transform: translateY(-4px) scale(1.01);
            border-color: rgba(0, 173, 226, 0.22);
            box-shadow: 0 26px 86px rgba(5, 33, 96, 0.14);
        }

        .gp-float__link:hover img {
            transform: scale(1.08);
        }

        .gp-float__link:focus-visible {
            outline: none;
            box-shadow: 0 26px 86px rgba(5, 33, 96, 0.14), var(--ui-ring);
        }

        /* Inspirations : pleine opacité, pas de rotation (vue « nuage » desktop uniquement) */
        @media (min-width: 981px) {
            #inspirations.gp-inspo .gp-float {
                opacity: 1 !important;
                transform:
                    translate(-50%, -50%)
                    translate3d(var(--nx, 0px), var(--ny, 0px), 0)
                    translate3d(calc(var(--pgx) * var(--d, 0.5) * 1.45), calc(var(--pgy) * var(--d, 0.5) * 1.45), 0);
            }
        }

        /* Responsive: become a clean stacked gallery */
        @media (max-width: 980px) {
            .gp-float-gallery {
                min-height: auto;
                padding: 1.25rem;
            }
            .gp-float {
                position: relative;
                left: auto;
                top: auto;
                width: 100%;
                max-width: 680px;
                margin: 0 auto;
                transform: none;
                opacity: 1 !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .gp-float,
            .gp-float__link,
            .gp-float__link img {
                transition: none;
            }
        }

        /* Inspirations â€” tأ©lأ©phone / petit أ©cran : grille 2 colonnes, titrage compact */
        @media (max-width: 768px) {
            #inspirations.gp-inspo.gp-section {
                padding-left: clamp(0.65rem, 3.2vw, 1.1rem);
                padding-right: clamp(0.65rem, 3.2vw, 1.1rem);
            }

            #inspirations .gp-section-head {
                margin-bottom: clamp(0.85rem, 3vw, 1.2rem);
            }

            .gp-float-gallery {
                display: flex;
                flex-direction: column;
                gap: 0;
                padding: 0.55rem 0 0.95rem;
                min-height: auto;
            }

            #inspirations .gp-section-head__subtitle {
                font-size: clamp(0.92rem, 3.5vw, 1.05rem);
            }

            .gp-inspo-slider__viewport {
                flex-direction: row;
                flex-wrap: nowrap;
                gap: 0.75rem;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-padding-inline: clamp(0.65rem, 3.2vw, 1.1rem);
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: contain;
                padding: 0.15rem 0 0.65rem;
                margin-inline: calc(-1 * clamp(0.65rem, 3.2vw, 1.1rem));
                padding-inline: clamp(0.65rem, 3.2vw, 1.1rem);
                outline: none;
                scrollbar-width: thin;
                scrollbar-color: rgba(5, 33, 96, 0.22) transparent;
            }

            .gp-inspo-slider__viewport::-webkit-scrollbar {
                height: 5px;
            }

            .gp-inspo-slider__viewport::-webkit-scrollbar-thumb {
                background: rgba(5, 33, 96, 0.22);
                border-radius: 999px;
            }

            .gp-inspo-slider__viewport:focus-visible {
                box-shadow: 0 0 0 3px rgba(0, 173, 226, 0.35);
                border-radius: 12px;
            }

            #inspirations .gp-inspo-slider__viewport .gp-float {
                flex: 0 0 min(86vw, 320px);
                width: min(86vw, 320px);
                max-width: none;
                margin: 0 !important;
                scroll-snap-align: center;
                aspect-ratio: var(--ar, 4 / 3);
            }

            .gp-float__link {
                border-radius: 12px;
            }
        }

        @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
            .gp-inspo-slider__viewport {
                scroll-behavior: auto;
                scroll-snap-type: none;
            }
        }

        .gp-inspo__dot-wrap {
            position: absolute;
            z-index: 2;
            transform: translate(-50%, -50%);
        }

        .gp-inspo__dot {
            position: relative;
            width: 30px;
            height: 30px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            cursor: pointer;
            background: transparent;
            display: grid;
            place-items: center;
            -webkit-tap-highlight-color: transparent;
        }

        .gp-inspo__ring {
            position: absolute;
            inset: -10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.78);
            box-shadow:
                0 0 0 1px rgba(0, 173, 226, 0.30),
                0 12px 34px rgba(2, 6, 23, 0.28);
            background:
                radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.22), transparent 60%),
                radial-gradient(circle at 60% 60%, rgba(0, 173, 226, 0.16), transparent 58%);
            opacity: 0.92;
            animation: gpHotspotPulse 2.9s ease-in-out infinite;
        }

        .gp-inspo__core {
            position: relative;
            z-index: 1;
            width: 11px;
            height: 11px;
            border-radius: 999px;
            background:
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 22%, transparent 55%),
                linear-gradient(135deg, rgba(0, 173, 226, 0.95), rgba(233, 31, 133, 0.85));
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        }

        @keyframes gpHotspotPulse {
            0%, 100% { transform: scale(1); opacity: 0.92; }
            50% { transform: scale(1.08); opacity: 0.78; }
        }

        .gp-inspo__dot-wrap:hover .gp-inspo__ring,
        .gp-inspo__dot-wrap:focus-within .gp-inspo__ring {
            animation-duration: 1.85s;
            box-shadow:
                0 0 0 1px rgba(0, 173, 226, 0.46),
                0 18px 50px rgba(2, 6, 23, 0.34);
        }

        .gp-inspo__bubble {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 14px);
            transform: translateX(-50%) translateY(10px);
            min-width: min(260px, 80vw);
            max-width: min(340px, 92vw);
            padding: 0.85rem 0.9rem 0.9rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.78);
            color: rgba(4, 26, 74, 0.92);
            font-size: 0.82rem;
            line-height: 1.45;
            text-align: left;
            border: 1px solid rgba(5, 33, 96, 0.14);
            box-shadow: 0 18px 60px rgba(2, 6, 23, 0.26);
            backdrop-filter: blur(12px) saturate(1.25);
            -webkit-backdrop-filter: blur(12px) saturate(1.25);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 240ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms ease;
            z-index: 4;
        }

        .gp-inspo__bubble::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 18px;
            height: 18px;
            background: rgba(255, 255, 255, 0.78);
            border-left: 1px solid rgba(5, 33, 96, 0.14);
            border-bottom: 1px solid rgba(5, 33, 96, 0.14);
            transform: translateX(-50%) rotate(45deg);
            backdrop-filter: blur(12px) saturate(1.25);
            -webkit-backdrop-filter: blur(12px) saturate(1.25);
        }

        .gp-inspo__bubble strong {
            display: block;
            font-family: var(--gp-font);
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
            color: rgba(4, 26, 74, 0.96);
            letter-spacing: -0.01em;
        }

        .gp-inspo__bubble span {
            display: block;
            color: rgba(4, 26, 74, 0.72);
            font-size: 0.78rem;
        }

        .gp-inspo__bubble a {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-top: 0.65rem;
            font-weight: 800;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(4, 26, 74, 0.92);
            text-decoration: none;
            padding: 0.5rem 0.65rem;
            border-radius: 12px;
            background: rgba(5, 33, 96, 0.06);
            border: 1px solid rgba(5, 33, 96, 0.10);
            transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
        }

        .gp-inspo__bubble a:hover {
            transform: translateY(-1px);
            background: rgba(0, 173, 226, 0.10);
            border-color: rgba(0, 173, 226, 0.20);
        }

        .gp-inspo__dot-wrap:hover .gp-inspo__bubble,
        .gp-inspo__dot-wrap:focus-within .gp-inspo__bubble,
        .gp-inspo__dot-wrap.is-open .gp-inspo__bubble {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .gp-inspo__dot:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(0, 173, 226, 0.22);
        }

        .gp-inspo__cap {
            padding: 1rem 1.1rem 1.15rem;
            font-size: 0.9rem;
            line-height: 1.55;
            color: rgba(4, 26, 74, 0.72);
        }

        .gp-inspo__cap strong {
            display: block;
            font-family: var(--gp-font);
            font-size: 1.05rem;
            color: rgba(4, 26, 74, 0.94);
            margin-bottom: 0.3rem;
            letter-spacing: -0.02em;
        }

        @media (prefers-reduced-motion: reduce) {
            .gp-inspo__ring {
                animation: none;
            }
            .gp-inspo__frame img,
            .gp-inspo__card {
                transition: none;
            }
        }

        /* â€”â€”â€” FAQ technique â€”â€”â€” */
        .gp-faq {
            position: relative;
            padding-top: var(--gp-section-y);
            padding-bottom: clamp(3rem, 6.5vw, 5rem);
        }

        .gp-faq::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(900px 520px at 10% 20%, rgba(0, 173, 226, 0.10), transparent 55%),
                radial-gradient(760px 520px at 90% 70%, rgba(233, 31, 133, 0.08), transparent 58%);
            opacity: 0.9;
        }

        #faq-technique .gp-section-head {
            max-width: min(920px, 100%);
        }

        .gp-faq__grid {
            position: relative;
            max-width: 980px;
            margin: 1.35rem auto 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.65rem;
        }

        .gp-faq__item {
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(5, 33, 96, 0.10);
            box-shadow: 0 18px 60px rgba(5, 33, 96, 0.08);
            overflow: hidden;
            transform: translateZ(0);
        }

        .gp-faq__q {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.95rem 1.05rem;
            font-weight: 750;
            color: rgba(4, 26, 74, 0.92);
        }

        .gp-faq__q::-webkit-details-marker {
            display: none;
        }

        .gp-faq__icon {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            color: rgba(5, 33, 96, 0.9);
            flex-shrink: 0;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1;
            box-sizing: border-box;
            transition:
                transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
                background 220ms ease,
                border-color 220ms ease;
        }

        /* Icônes « + » : 2 cyan, 2 magenta, 2 orange (#00b0e9 / #ec1c8c / #fb9b2d, translucides) */
        .gp-faq__grid .gp-faq__item:nth-child(1) .gp-faq__icon,
        .gp-faq__grid .gp-faq__item:nth-child(2) .gp-faq__icon {
            background: rgba(0, 176, 233, 0.2);
            border: 1px solid rgba(0, 176, 233, 0.34);
        }

        .gp-faq__grid .gp-faq__item:nth-child(3) .gp-faq__icon,
        .gp-faq__grid .gp-faq__item:nth-child(4) .gp-faq__icon {
            background: rgba(236, 28, 140, 0.18);
            border: 1px solid rgba(236, 28, 140, 0.32);
        }

        .gp-faq__grid .gp-faq__item:nth-child(5) .gp-faq__icon,
        .gp-faq__grid .gp-faq__item:nth-child(6) .gp-faq__icon {
            background: rgba(251, 155, 45, 0.2);
            border: 1px solid rgba(251, 155, 45, 0.36);
        }

        .gp-faq__item[open] .gp-faq__icon {
            transform: rotate(45deg);
        }

        .gp-faq__grid .gp-faq__item:nth-child(1)[open] .gp-faq__icon,
        .gp-faq__grid .gp-faq__item:nth-child(2)[open] .gp-faq__icon {
            background: rgba(0, 176, 233, 0.3);
            border-color: rgba(0, 176, 233, 0.48);
        }

        .gp-faq__grid .gp-faq__item:nth-child(3)[open] .gp-faq__icon,
        .gp-faq__grid .gp-faq__item:nth-child(4)[open] .gp-faq__icon {
            background: rgba(236, 28, 140, 0.26);
            border-color: rgba(236, 28, 140, 0.44);
        }

        .gp-faq__grid .gp-faq__item:nth-child(5)[open] .gp-faq__icon,
        .gp-faq__grid .gp-faq__item:nth-child(6)[open] .gp-faq__icon {
            background: rgba(251, 155, 45, 0.28);
            border-color: rgba(251, 155, 45, 0.48);
        }

        .gp-faq__a {
            padding: 0.1rem 1.05rem 1.05rem;
            color: rgba(4, 26, 74, 0.74);
            line-height: 1.65;
        }

        .gp-faq__a p {
            margin: 0.6rem 0 0;
        }

        .gp-faq__hint {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(5, 33, 96, 0.08);
            color: rgba(4, 26, 74, 0.68);
        }

        .gp-faq__q:focus-visible {
            outline: none;
            box-shadow: var(--ui-ring);
            border-radius: 18px;
        }

        /* FAQ: toujours en 1 colonne (desktop inclus) */

        .gp-catalog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            margin-top: 0;
            padding: 0.7rem 1.15rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.88rem;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, var(--charte-navy) 0%, #0a2d6e 55%, var(--charte-cyan) 160%);
            border: 1px solid rgba(5, 33, 96, 0.35);
            box-shadow: 0 8px 24px rgba(5, 33, 96, 0.22);
            transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
        }

        .gp-catalog-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(5, 33, 96, 0.28);
            filter: brightness(1.05);
        }

        .gp-catalog-link:focus-visible {
            outline: 2px solid var(--charte-cyan);
            outline-offset: 3px;
        }

        /* â€”â€”â€” Nos produits : ligne unique + dأ©filement horizontal au scroll page â€”â€”â€” */
        #nos-produits.gp-section--wide {
            max-width: min(1200px, 100%);
        }

        #nos-produits.gp-prod-section {
            position: relative;
            z-index: 7;
            isolation: isolate;
            overflow-x: visible;
            overflow-y: visible;
            padding-top: var(--gp-section-y);
            padding-bottom: clamp(3rem, 6vw, 4.5rem);
            background:
                linear-gradient(180deg, rgba(5, 33, 96, 0.06) 0%, transparent 42%),
                transparent;
        }

        #nos-produits.gp-prod-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(
                90deg,
                var(--charte-orange),
                var(--charte-pink),
                var(--charte-cyan),
                var(--charte-teal)
            );
        }

        #nos-produits .gp-section-head {
            max-width: min(56rem, 100%);
            margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
        }

        .gp-prod-section-head {
            display: block;
            margin-bottom: 0;
        }

        .gp-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;
        }

        .gp-prod-toolbar {
            margin-top: 1.65rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .gp-prod-toolbar {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                gap: 1rem 1.25rem;
            }
        }

        .gp-prod-toolbar__cats {
            flex: 1 1 auto;
            min-width: 0;
        }

        .gp-prod-sidebar__title {
            margin: 0 0 0.55rem 0;
            font-family: var(--gp-font);
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(5, 33, 96, 0.45);
        }

        .gp-prod-cat-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 0.45rem;
            align-items: center;
        }

        .gp-prod-cat-item {
            width: auto;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.5rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(5, 33, 96, 0.1);
            background: rgba(255, 255, 255, 0.85);
            color: var(--charte-navy);
            font: inherit;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
            white-space: nowrap;
        }

        .gp-prod-cat-item:hover {
            background: rgba(0, 173, 226, 0.08);
            border-color: rgba(0, 173, 226, 0.2);
        }

        .gp-prod-cat-item.is-active {
            background: linear-gradient(120deg, rgba(5, 33, 96, 0.08), rgba(0, 173, 226, 0.1));
            border-color: rgba(5, 33, 96, 0.12);
            box-shadow: 0 6px 20px rgba(5, 33, 96, 0.08);
            color: var(--charte-navy);
        }

        .gp-prod-cat-item:focus-visible {
            outline: 2px solid var(--charte-cyan);
            outline-offset: 2px;
        }

        .gp-prod-toolbar .gp-prod-search {
            flex: 1 1 16rem;
            max-width: min(100%, 22rem);
        }

        .gp-prod-search {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.6rem 0.95rem;
            border-radius: 12px;
            border: 1px solid rgba(5, 33, 96, 0.12);
            background: #fff;
            width: 100%;
            box-sizing: border-box;
            box-shadow: 0 4px 18px rgba(5, 33, 96, 0.05);
        }

        .gp-prod-search input {
            flex: 1;
            min-width: 0;
            border: 0;
            background: transparent;
            font: inherit;
            font-size: 0.95rem;
            color: var(--charte-navy);
        }

        .gp-prod-search input::placeholder {
            color: rgba(5, 33, 96, 0.42);
        }

        .gp-prod-search input:focus {
            outline: none;
        }

        .gp-prod-search:focus-within {
            border-color: var(--charte-cyan);
            box-shadow: 0 0 0 3px rgba(0, 173, 226, 0.18);
        }

        .gp-prod-count {
            margin: 0.75rem 0 0;
            font-size: 0.82rem;
            font-weight: 600;
            color: rgba(5, 33, 96, 0.55);
        }

        .gp-prod-reveal {
            margin-top: 1.35rem;
            position: relative;
        }

        .gp-prod-reveal.gp-prod-reveal--empty {
            display: none;
        }

        .gp-prod-reveal__viewport {
            position: relative;
            overflow: hidden;
            width: 100%;
            min-height: min(72vh, 520px);
            border-radius: 18px;
            border: 1px solid rgba(5, 33, 96, 0.08);
            background: linear-gradient(180deg, #fff 0%, var(--charte-bg) 100%);
            box-shadow: 0 14px 48px rgba(5, 33, 96, 0.08);
        }

        .gp-prod-track {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: stretch;
            gap: 1.15rem;
            width: max-content;
            height: 100%;
            min-height: inherit;
            padding: clamp(0.85rem, 2.5vw, 1.25rem);
            box-sizing: border-box;
            will-change: transform;
        }

        .gp-prod-track .gp-prod-card {
            flex: 0 0 auto;
            width: clamp(240px, 72vw, 300px);
            max-height: 100%;
            display: flex;
            flex-direction: column;
        }

        .gp-prod-track .gp-prod-card .gp-prod-card__body {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
        }

        .gp-prod-track .gp-prod-card .gp-prod-card__actions {
            margin-top: auto;
        }

        .gp-prod-hint {
            margin: 0.65rem 0 0;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(5, 33, 96, 0.38);
            text-align: center;
        }

        @media (prefers-reduced-motion: reduce) {
            .gp-prod-track {
                will-change: auto;
            }
        }

        .gp-prod-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(5, 33, 96, 0.08);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 14px 50px rgba(5, 33, 96, 0.10);
            transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s, border-color 0.22s, filter 0.22s;
        }

        .gp-prod-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            pointer-events: none;
            background: linear-gradient(135deg, rgba(0, 173, 226, 0.22), rgba(233, 31, 133, 0.14), rgba(249, 153, 32, 0.12));
            opacity: 0;
            transition: opacity 0.22s ease;
        }

        .gp-prod-card::after {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            right: 0;
            height: 3px;
            background: linear-gradient(
                90deg,
                var(--charte-orange),
                var(--charte-pink),
                var(--charte-cyan),
                var(--charte-teal)
            );
            opacity: 0.85;
            pointer-events: none;
        }

        .gp-prod-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 26px 80px rgba(5, 33, 96, 0.16);
            border-color: rgba(0, 173, 226, 0.30);
            filter: saturate(1.03);
        }

        .gp-prod-card:hover::before {
            opacity: 1;
        }

        .gp-prod-card--featured {
            border-color: rgba(233, 31, 133, 0.35);
            box-shadow:
                0 10px 36px rgba(233, 31, 133, 0.12),
                0 0 0 1px rgba(0, 173, 226, 0.2);
        }

        .gp-prod-card--featured::before {
            content: "أ€ la une";
            position: absolute;
            top: 0.65rem;
            left: 0.65rem;
            z-index: 2;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 0.32rem 0.5rem;
            border-radius: 8px;
            color: #fff;
            background: linear-gradient(120deg, var(--charte-pink), var(--charte-orange));
            box-shadow: 0 4px 14px rgba(233, 31, 133, 0.35);
        }

        .gp-prod-card.is-hidden {
            display: none !important;
        }

        .gp-prod-card__visual {
            display: block;
            aspect-ratio: 1;
            background: linear-gradient(160deg, #fff 0%, var(--charte-bg) 100%);
        }

        .gp-prod-card__visual img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 0.65rem;
            display: block;
            transform: scale(1.01);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .gp-prod-card:hover .gp-prod-card__visual img {
            transform: scale(1.06);
        }

        .gp-prod-card__body {
            padding: 0.7rem 0.9rem 0.95rem;
            border-top: 1px solid rgba(5, 33, 96, 0.06);
        }

        .gp-prod-card__title {
            margin: 0 0 0.4rem;
            font-family: var(--gp-font);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--charte-navy);
            line-height: 1.25;
        }

        .gp-prod-card__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }

        .gp-prod-card__tag {
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 0.22rem 0.45rem;
            border-radius: 6px;
            border: 1px solid transparent;
        }

        .gp-prod-card__tag--mur {
            background: rgba(0, 173, 226, 0.12);
            color: #036f8f;
            border-color: rgba(0, 173, 226, 0.25);
        }

        .gp-prod-card__tag--interieur {
            background: rgba(0, 173, 226, 0.12);
            color: #036f8f;
            border-color: rgba(0, 173, 226, 0.25);
        }

        .gp-prod-card__tag--plafond {
            background: rgba(120, 124, 255, 0.12);
            color: #2d2bb3;
            border-color: rgba(120, 124, 255, 0.28);
        }

        .gp-prod-card__tag--facade {
            background: rgba(0, 171, 186, 0.12);
            color: #047a85;
            border-color: rgba(0, 171, 186, 0.28);
        }

        .gp-prod-card__tag--bois {
            background: rgba(249, 153, 32, 0.14);
            color: #9a5a00;
            border-color: rgba(249, 153, 32, 0.35);
        }

        .gp-prod-card__tag--primaire {
            background: rgba(5, 33, 96, 0.08);
            color: var(--charte-navy);
            border-color: rgba(5, 33, 96, 0.14);
        }

        .gp-prod-card__tag--pro {
            background: rgba(233, 31, 133, 0.1);
            color: #a11862;
            border-color: rgba(233, 31, 133, 0.22);
        }

        .gp-prod-card__specs {
            margin-top: 0.55rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.35rem 0.5rem;
        }

        .gp-prod-spec {
            display: flex;
            align-items: baseline;
            gap: 0.4rem;
            padding: 0.38rem 0.48rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(5, 33, 96, 0.08);
            box-shadow: 0 10px 24px rgba(5, 33, 96, 0.06);
        }

        .gp-prod-spec span {
            color: rgba(5, 33, 96, 0.62);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .gp-prod-spec strong {
            margin-left: auto;
            color: rgba(5, 33, 96, 0.9);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .gp-prod-card__sizes {
            margin-top: 0.55rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
        }

        .gp-prod-size {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.22rem 0.45rem;
            border-radius: 999px;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(5, 33, 96, 0.76);
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(5, 33, 96, 0.1);
        }

        .gp-prod-card__actions {
            margin-top: 0.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }

        .gp-prod-card__btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-decoration: none;
            padding: 0.38rem 0.6rem;
            border-radius: 9px;
            border: 1px solid rgba(5, 33, 96, 0.15);
            color: var(--charte-navy);
            background: rgba(5, 33, 96, 0.04);
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }

        .gp-prod-card__btn:first-of-type {
            border-color: rgba(0, 173, 226, 0.4);
            color: #047a9a;
            background: rgba(0, 173, 226, 0.08);
        }

        .gp-prod-card__btn:first-of-type:hover {
            background: rgba(0, 173, 226, 0.16);
            border-color: var(--charte-cyan);
        }

        .gp-prod-card__btn:last-of-type:hover {
            background: rgba(233, 31, 133, 0.08);
            border-color: rgba(233, 31, 133, 0.35);
            color: #a11862;
        }

        .gp-prod-empty {
            display: none;
            margin-top: 1.5rem;
            padding: 1.35rem;
            text-align: center;
            border-radius: 14px;
            background: #fff;
            border: 1px dashed rgba(5, 33, 96, 0.2);
            color: rgba(5, 33, 96, 0.6);
            font-size: 0.9rem;
        }

        .gp-prod-empty.is-visible {
            display: block;
        }

        /* â€”â€”â€” Hero آ« premiأ¨re vue آ» : mأ©dia plein أ©cran + contenu par-dessus â€”â€”â€” */
        .atf-hero {
            --atf-hero-pad-x: clamp(1.25rem, 4vw, 2.75rem);
            position: relative;
            /*
             * The header (.atf-hero__head) is fixed.
             * Push the whole hero BELOW the header so the media is not hidden under it.
             */
            margin-top: var(--atf-head-h, 0px);
            min-height: calc(100vh - var(--atf-head-h, 0px));
            min-height: calc(100dvh - var(--atf-head-h, 0px));
            height: calc(100vh - var(--atf-head-h, 0px));
            height: calc(100dvh - var(--atf-head-h, 0px));
            box-sizing: border-box;
            padding-top: 0;
            background: #0a0a0a;
            color: #f4f2ea;
            font-family: "DM Sans", system-ui, sans-serif;
            overflow: hidden;
        }

        .atf-hero__mesh {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
            opacity: 0.28;
            mix-blend-mode: overlay;
            background:
                radial-gradient(closest-side at 18% 22%, rgba(247, 180, 196, 0.35), transparent 62%),
                radial-gradient(closest-side at 78% 28%, rgba(253, 217, 151, 0.28), transparent 58%),
                radial-gradient(closest-side at 50% 88%, rgba(116, 208, 237, 0.22), transparent 55%);
        }

        /* Slider = couche mأ©dia de la hero (plein أ©cran) */
        .atf-hero__backdrop {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            /*
             * Seau fixe â€” dأ©placement :
             *   plus de pad-bottom â†’ remonte | plus de pad-right â†’ va أ  gauche
             *   translate X plus nأ©gatif â†’ gauche | Y plus nأ©gatif â†’ haut
             *   justify-content: flex-end | center | flex-start â€” horizontal du bloc flex
             */
            --atf-soda-pad-bottom: clamp(4.5rem, 20vh, 13rem);
            --atf-soda-pad-right: clamp(-10rem, 30vw, -10rem);
            --atf-soda-pad-left: 0;
            --atf-soda-pad-top: 0;
            /* Plus nأ©gatif = seau tirأ© vers la gauche (depuis le coin bas-droit) */
            --atf-soda-translate-x: clamp(-7.25rem, -33vw, -19rem);
            --atf-soda-translate-y: clamp(2rem, -20vh, -10rem);
            --atf-soda-justify: flex-end;
            --atf-soda-align: flex-end;
        }

        .atf-hero__backdrop .atf-fw-slider {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            max-width: none;
        }

        .atf-hero__backdrop .atf-fw-slider__viewport {
            height: 100%;
            min-height: 100%;
        }

        .atf-hero__inner {
            position: relative;
            z-index: 3;
            min-height: 100%;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: clamp(6.75rem, 15vh, 9.5rem) var(--atf-hero-pad-x) clamp(2rem, 7vh, 4rem);
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            pointer-events: none;
        }

        .atf-hero__copy,
        .atf-hero__scroll {
            pointer-events: auto;
            width: 100%;
            max-width: min(36rem, 94vw);
        }

        .atf-hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.72);
            margin: 0 0 1rem;
        }

        .atf-hero__eyebrow span {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--brand-blush);
            box-shadow: 0 0 0 4px rgba(247, 180, 196, 0.4);
        }

        .atf-hero__h1 {
            font-family: var(--gp-font);
            font-weight: 800;
            font-size: clamp(1.85rem, 4.1vw, 2.75rem);
            line-height: 1.05;
            margin: 0 0 1rem;
            max-width: 18ch;
            letter-spacing: -0.03em;
            color: #fff;
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.45),
                0 4px 24px rgba(0, 0, 0, 0.35);
        }

        /* Sauts de ligne titre — uniquement mobile */
        .atf-hero__h1-br {
            display: none;
        }

        @media (max-width: 768px) {
            .atf-hero__h1-br {
                display: revert;
            }

            .atf-hero__h1 {
                line-height: 1.12;
            }
        }

        .atf-hero__h1 em {
            font-style: normal;
            color: #fff;
        }

        .atf-hero__lead {
            margin: 0 0 1.25rem;
            max-width: 42ch;
            font-size: 1.05rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.88);
        }

        .atf-hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.75rem;
        }

        .atf-btn {
            appearance: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.85rem 1.35rem;
            border-radius: 999px;
            cursor: pointer;
            border: 1px solid transparent;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
        }

        .atf-btn:hover {
            transform: translateY(-1px);
        }

        .atf-btn--primary {
            background: linear-gradient(135deg, var(--brand-honey), var(--brand-blush));
            color: #1a1a1a;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
        }

        .atf-btn--ghost {
            background: rgba(116, 208, 237, 0.12);
            color: #f4f2ea;
            border-color: rgba(116, 208, 237, 0.45);
        }

        .atf-hero__trust {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
            max-width: 560px;
            margin: 0 auto;
        }

        @media (max-width: 520px) {
            .atf-hero__trust {
                grid-template-columns: 1fr;
            }
        }

        .atf-stat {
            padding: 0.75rem 0.85rem;
            border-radius: 14px;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(253, 217, 151, 0.22);
            backdrop-filter: blur(10px);
        }

        .atf-stat strong {
            display: block;
            font-family: var(--gp-font);
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f4f2ea;
        }

        .atf-stat span {
            font-size: 0.78rem;
            color: rgba(244, 242, 234, 0.65);
        }

        /* Slider images pleine largeur (hors backdrop : pleine page) */
        .atf-fw-slider {
            position: relative;
            z-index: 1;
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
        }

        .atf-hero__backdrop .atf-fw-slider {
            width: 100%;
            margin: 0;
        }

        .atf-fw-slider__viewport {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: clamp(260px, 48vh, 560px);
            background: #111;
        }

        .atf-hero__backdrop .atf-fw-slider__viewport {
            height: 100%;
            min-height: 100dvh;
        }

        /* Carrousel hero : une diapo = toute la largeur du viewport */
        .atf-hero__backdrop .atf-fw-slider--carousel .atf-fw-slider__track {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0;
            height: 100%;
            width: max-content;
            transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .atf-hero__backdrop .atf-fw-slider--carousel .atf-fw-slider__slide {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            overflow: hidden;
            box-shadow: none;
            transition: box-shadow 0.45s ease;
            transform: scale(1);
            opacity: 1;
            filter: none;
        }

        .atf-hero__backdrop .atf-fw-slider--carousel .atf-fw-slider__slide.is-carousel-active {
            z-index: 2;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
        }

        .atf-fw-slider:not(.atf-fw-slider--carousel) .atf-fw-slider__track {
            display: flex;
            height: 100%;
            width: max-content;
            transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .atf-fw-slider__slide {
            position: relative;
            flex: 0 0 100vw;
            width: 100vw;
            max-width: 100vw;
            height: 100%;
        }

        .atf-fw-slider__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Hero : largeur des slides = viewport JS (أ©vite 100vw vs largeur utile = bande de la slide dâ€™avant) */
        .atf-hero__backdrop .atf-fw-slider__slide {
            --atf-corner-cut-x:70%;
            --atf-corner-cut-y: -15%;
            flex: 0 0 auto;
            width: auto;
            min-width: 0;
            max-width: none;
        }

        .atf-hero__backdrop .atf-fw-slider__slide::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(to top, #0f3a3d 0%, #1c565a 100%);
            clip-path: polygon(
                100% var(--atf-corner-cut-y),
                100% 100%,
                var(--atf-corner-cut-x) 100%
            );
        }

        /* Coin : dأ©gradأ© bas â†’ haut alignأ© sur la teinte du seau (slide 1 â†’ 4) */
        .atf-hero__backdrop .atf-fw-slider__slide:nth-child(1)::before {
            background: linear-gradient(to top, #0f3a3d 0%, #1c565a 48%, #2a8f94 100%);
        }

        .atf-hero__backdrop .atf-fw-slider__slide:nth-child(2)::before {
            background: linear-gradient(to top, #5c3815 0%, #90581d 48%, #c98a35 100%);
        }

        .atf-hero__backdrop .atf-fw-slider__slide:nth-child(3)::before {
            background: linear-gradient(to top, #0f1638 0%, #1a275e 48%, #3d5a9e 100%);
        }

        .atf-hero__backdrop .atf-fw-slider__slide:nth-child(4)::before {
            background: linear-gradient(to top, #651040 0%, #ab1b61 48%, #d9488f 100%);
        }

        .atf-hero__backdrop .atf-fw-slider__slide img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 22%;
            clip-path: polygon(
                0 0,
                100% 0,
                100% var(--atf-corner-cut-y),
                var(--atf-corner-cut-x) 100%,
                0 100%
            );
        }

        .atf-hero__backdrop .atf-fw-slider,
        .atf-hero__backdrop .atf-fw-slider__viewport,
        .atf-hero__backdrop .atf-fw-slider__track,
        .atf-hero__backdrop .atf-fw-slider__slide {
            height: 100%;
        }

        .atf-fw-slider__shade {
            pointer-events: none;
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                radial-gradient(1200px 700px at 18% 12%, rgba(0, 173, 226, 0.14), transparent 55%),
                radial-gradient(900px 560px at 82% 18%, rgba(233, 31, 133, 0.10), transparent 62%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.10) 28%, rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.74) 100%);
        }

        .atf-hero__backdrop .atf-fw-slider__slide .atf-fw-slider__shade {
            z-index: 2;
            /* Cinأ©matique: haut propre, bas plus dense + lأ©gأ¨re vignette */
            background:
                radial-gradient(120% 88% at 50% 16%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.06) 18%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.34) 78%, rgba(0, 0, 0, 0.62) 100%);
            clip-path: polygon(
                0 0,
                100% 0,
                100% var(--atf-corner-cut-y),
                var(--atf-corner-cut-x) 100%,
                0 100%
            );
        }

        /* Seau fixe (hors du rail) : au-dessus des slides, texture statique */
        .atf-hero__backdrop .atf-hero__slide-product {
            position: absolute;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            display: flex;
            align-items: var(--atf-soda-align, flex-end);
            justify-content: var(--atf-soda-justify, flex-end);
            padding-top: var(--atf-soda-pad-top, 0);
            padding-right: var(--atf-soda-pad-right);
            padding-bottom: var(--atf-soda-pad-bottom);
            padding-left: var(--atf-soda-pad-left, 0);
        }
        .atf-hero__bucket-wrap {
            position: relative;
            width: min(380px, 52vw);
            height: min(430px, 56vh);
            flex-shrink: 0;
            transform: translate(var(--atf-soda-translate-x), var(--atf-soda-translate-y));
        }

        .atf-hero__bucket-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: left bottom;
            display: block;
            pointer-events: none;
            will-change: transform, opacity;
            transform: translate3d(0, 0, 0);
        }

        @media (min-width: 769px) {
            .atf-hero__backdrop .atf-fw-slider__slide img {
                object-position: center bottom;
            }
        }

        /* â€”â€”â€” Hero responsive tuning â€”â€”â€” */
        @media (max-width: 900px) {
            .atf-hero__inner {
                padding-top: clamp(6.25rem, 14vh, 8rem);
            }

            .atf-hero__copy,
            .atf-hero__scroll {
                max-width: min(40rem, 96vw);
            }
        }

        /* Mobile / tablette : même composition que desktop (texte bas-gauche, seau bas-droite, médias identiques) */
        @media (max-width: 768px) {
            /* Hero plus basse sur mobile (réglable : premier nombre = % de la hauteur utile) */
            .atf-hero {
                min-height: min(58dvh, calc(100dvh - var(--atf-head-h, 0px)));
                min-height: min(58vh, calc(100vh - var(--atf-head-h, 0px)));
                height: min(58dvh, calc(100dvh - var(--atf-head-h, 0px)));
                height: min(58vh, calc(100vh - var(--atf-head-h, 0px)));
            }

            /*
             * Remplir toute la hauteur du .atf-hero (pas min 100dvh) + étirer les diapos sur la hauteur
             * (align-items: stretch sur le track évite des bandes au-dessus / en dessous du média).
             */
            .atf-hero__backdrop .atf-fw-slider__viewport {
                height: 100%;
                min-height: 100%;
                max-height: none;
            }

            .atf-hero__backdrop .atf-fw-slider--carousel .atf-fw-slider__track {
                align-items: stretch;
            }

            /* Remonte le bloc titre pour l’aligner sur la zone média (backdrop) */
            .atf-hero__inner {
                padding: clamp(4.75rem, 11vh, 6.5rem) var(--atf-hero-pad-x) clamp(0.75rem, 2.5vh, 1.75rem);
                text-align: left;
                align-items: flex-start;
                transform: translateY(-clamp(0.35rem, 1.5vh, 1rem));
            }

            .atf-hero__lead {
                font-size: 1.05rem;
                margin-left: 0;
                margin-right: 0;
            }

            .atf-hero__trust {
                max-width: min(560px, 96vw);
            }

            /*
             * Seau plus à droite : entre la zone flèche/safe-area et le bord découpé de l’image
             * (translate X moins négatif / léger positif = déplacement vers la droite)
             */
            .atf-hero__backdrop {
                height: 100%;
                min-height: 100%;
                --atf-soda-pad-bottom: clamp(1.85rem, 8vh, 6.5rem);
                --atf-soda-pad-right: max(
                    env(safe-area-inset-right, 0px),
                    clamp(1rem, 4.5vw, 2.15rem)
                );
                --atf-soda-pad-left: 0;
                --atf-soda-pad-top: 0;
                --atf-soda-translate-x: clamp(0.85rem, 2vw, 2.85rem);
                --atf-soda-translate-y: clamp(2rem, 3.5vh, 4rem);
                --atf-soda-justify: flex-end;
                --atf-soda-align: flex-end;
            }

            .atf-hero__bucket-wrap {
                width: min(260px, 44vw);
                height: min(300px, 48vh);
                aspect-ratio: auto;
                transform: translate(var(--atf-soda-translate-x), var(--atf-soda-translate-y));
                opacity: 1;
            }

            /*
             * Slide 3 (mobile) : cadrage object-fit. Deux valeurs = horizontal vertical.
             * Horizontal : 0 % = bord gauche, 50 % = centre, 100 % = bord droit — augmenter = vers la droite.
             * Vertical : aligné sur les autres diapos (22 %).
             */
            .atf-hero__backdrop .atf-fw-slider__slide:nth-child(3) img {
                object-position: 38% 22%;
            }

            .atf-fw-slider__btn {
                width: 46px;
                height: 46px;
            }
        }

        @media (max-width: 520px) {
            .atf-fw-slider__dots {
                bottom: 0.9rem;
            }
        }

        .atf-fw-slider__nav {
            position: absolute;
            inset: 0;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(0.5rem, 2vw, 1rem);
            pointer-events: none;
        }

        .atf-fw-slider__btn {
            pointer-events: auto;
            appearance: none;
            width: 46px;
            height: 46px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(0, 0, 0, 0.35);
            color: #fff;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
        }

        .atf-fw-slider__btn:hover {
            background: rgba(0, 0, 0, 0.55);
            border-color: rgba(255, 255, 255, 0.55);
            transform: scale(1.05);
        }

        .atf-fw-slider__btn-txt {
            font-size: 1.65rem;
            line-height: 1;
            font-weight: 400;
        }

        .atf-fw-slider__dots {
            position: absolute;
            left: 50%;
            bottom: clamp(0.75rem, 2.5vw, 1.25rem);
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            gap: 0.45rem;
            pointer-events: auto;
        }

        .atf-fw-slider__dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            border: 0;
            padding: 0;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.35);
            transition: width 0.25s, background 0.25s;
        }

        .atf-fw-slider__dot[aria-current="true"] {
            width: 26px;
            background: linear-gradient(90deg, var(--brand-blush), var(--brand-sky));
        }

        .atf-hero__scroll {
            margin-top: 0.5rem;
            padding-top: 0;
            text-align: left;
            max-width: none;
        }

        .atf-hero__scroll a,
        .atf-hero__scroll-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(244, 242, 234, 0.85);
            text-decoration: none;
            padding: 0.5rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(8px);
        }

        .atf-hero__scroll a:hover,
        .atf-hero__scroll-link:hover {
            color: #fff;
            border-color: rgba(0, 173, 226, 0.65);
            box-shadow: 0 0 24px rgba(0, 173, 226, 0.2);
        }

        /* â€”â€”â€” Pied de page : futuriste, charte â€”â€”â€” */
        .site-footer {
            position: relative;
            margin-top: -1px;
            padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.5rem);
            background:
                radial-gradient(ellipse 120% 80% at 10% 0%, rgba(233, 31, 133, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse 90% 70% at 90% 20%, rgba(0, 173, 226, 0.14) 0%, transparent 50%),
                linear-gradient(165deg, #01040f 0%, #052160 42%, #021030 100%);
            color: rgba(240, 248, 255, 0.9);
            font-family: "DM Sans", system-ui, sans-serif;
            overflow: hidden;
        }

        .site-footer::before {
            content: "";
            display: block;
            height: 4px;
            width: 100%;
            max-width: min(1120px, 100%);
            margin: 0 auto;
            background: linear-gradient(
                90deg,
                var(--charte-orange),
                var(--charte-pink),
                var(--charte-cyan),
                var(--charte-teal)
            );
            box-shadow: 0 0 32px rgba(0, 173, 226, 0.45);
        }

        .site-footer__grid-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.22;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
        }

        .site-footer__inner {
            position: relative;
            z-index: 1;
            max-width: min(1120px, 100%);
            margin: 0 auto;
            padding: clamp(2.25rem, 5vw, 3.5rem) 0 0;
            display: grid;
            gap: clamp(1.75rem, 4vw, 2.5rem);
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .site-footer__inner {
                grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
                align-items: start;
            }
        }

        .site-footer__brand-mark {
            font-family: var(--gp-font);
            font-weight: 800;
            font-size: clamp(1.35rem, 3vw, 1.75rem);
            letter-spacing: -0.02em;
            margin: 0 0 0.5rem;
            color: #f8fafc;
        }

        @supports ((-webkit-background-clip: text) or (background-clip: text)) {
            .site-footer__brand-mark {
                background: linear-gradient(105deg, #fff 0%, rgba(0, 173, 226, 0.95) 55%, var(--charte-pink) 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                -webkit-text-fill-color: transparent;
            }
        }

        .site-footer__brand-tag {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.55;
            color: rgba(226, 232, 240, 0.72);
            max-width: 28ch;
        }

        .site-footer__label {
            font-family: "IBM Plex Mono", ui-monospace, monospace;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--charte-cyan);
            margin: 0 0 0.85rem;
        }

        .site-footer__nav {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .site-footer__nav a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0;
            color: rgba(248, 250, 252, 0.88);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.92rem;
            border-radius: 6px;
            transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
        }

        .site-footer__nav a::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 2px;
            background: linear-gradient(135deg, var(--charte-cyan), var(--charte-teal));
            opacity: 0.85;
            box-shadow: 0 0 10px rgba(0, 173, 226, 0.6);
        }

        .site-footer__nav a:hover {
            color: #fff;
            transform: translateX(4px);
            text-shadow: 0 0 20px rgba(0, 173, 226, 0.35);
        }

        .site-footer__contact-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .site-footer__contact-list a {
            color: rgba(248, 250, 252, 0.9);
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.4rem 0.65rem;
            margin: 0 -0.65rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(10px);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }

        .site-footer__contact-list a:hover {
            border-color: rgba(249, 153, 32, 0.45);
            background: rgba(249, 153, 32, 0.08);
            box-shadow: 0 0 24px rgba(233, 31, 133, 0.12);
        }

        .site-footer__contact-list i {
            width: 1.1rem;
            text-align: center;
            color: var(--charte-orange);
        }

        .site-footer__hours {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.4rem 0.65rem;
            margin: 0 -0.65rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            font-size: 0.9rem;
            color: rgba(248, 250, 252, 0.88);
        }

        .site-footer__hours i {
            color: var(--charte-cyan);
        }

        .site-footer__bar {
            position: relative;
            z-index: 1;
            max-width: min(1120px, 100%);
            margin: clamp(1.75rem, 4vw, 2.25rem) auto 0;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem 1.25rem;
            font-size: 0.78rem;
            color: rgba(226, 232, 240, 0.55);
        }

        .site-footer__bar-code {
            font-family: "IBM Plex Mono", ui-monospace, monospace;
            letter-spacing: 0.12em;
            font-size: 0.68rem;
            color: var(--charte-teal);
        }

        @keyframes siteFooterPulse {
            0%, 100% { opacity: 0.35; }
            50% { opacity: 0.6; }
        }

        .site-footer__orb {
            position: absolute;
            width: min(420px, 70vw);
            height: min(420px, 70vw);
            border-radius: 50%;
            right: -12%;
            bottom: -25%;
            background: radial-gradient(circle, rgba(0, 173, 226, 0.18) 0%, transparent 70%);
            pointer-events: none;
            animation: siteFooterPulse 8s ease-in-out infinite;
        }














/* ——— Modal catalogue (flipbook, aligné charte site) ——— */
.gp-catpop {
    position: fixed;
    inset: 0;
    /* Must be above fixed header (.atf-hero__head uses 10000) and splash (12000) */
    z-index: 30000;
    display: none;
}

.gp-catpop[aria-hidden="false"] {
    display: block;
}

.gp-catpop__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.56);
    backdrop-filter: blur(10px) saturate(1.15);
    -webkit-backdrop-filter: blur(10px) saturate(1.15);
}

.gp-catpop__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1080px, calc(100vw - 24px));
    max-height: min(820px, calc(100dvh - 24px));
    display: flex;
    flex-direction: column;
    border-radius: var(--ui-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--ui-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    overflow: hidden;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.98) 0%,
        var(--charte-bg) 42%,
        #e4eef8 100%
    );
}

.gp-catpop__header {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 14px 56px 14px 18px;
    background: linear-gradient(
        90deg,
        var(--charte-navy) 0%,
        #0c3d86 52%,
        var(--charte-cyan) 115%
    );
    color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.gp-catpop__heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.gp-catpop__kicker {
    margin: 0;
    font-family: var(--gp-font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.82;
}

.gp-catpop__h2 {
    margin: 0;
    font-family: var(--gp-font);
    font-size: clamp(1.05rem, 2.2vw, 1.28rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gp-catpop__header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.gp-catpop__nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.gp-catpop__pager {
    min-width: 4.5rem;
    text-align: center;
    font-family: var(--gp-font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 6px;
}

.gp-catpop__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.96);
    font-family: var(--gp-font);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.gp-catpop__btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.38);
}

.gp-catpop__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 173, 226, 0.45);
}

.gp-catpop__btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    transform: none;
}

.gp-catpop__btn--dl {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.92));
    color: var(--charte-navy);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 28px rgba(5, 33, 96, 0.18);
}

.gp-catpop__btn--dl:hover {
    border-color: rgba(0, 173, 226, 0.55);
}

.gp-catpop__btn--icon {
    width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 999px;
}

.gp-catpop__btn--close {
    position: absolute;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    z-index: 4;
    width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.gp-catpop__body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.gp-catpop__stage {
    flex: 1;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: clamp(12px, 2.5vw, 22px);
    background:
        radial-gradient(900px 420px at 15% 10%, rgba(0, 173, 226, 0.08), transparent 55%),
        radial-gradient(700px 380px at 92% 88%, rgba(233, 31, 133, 0.06), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(233, 236, 241, 0.65));
}

#gpCatBook {
    width: 100%;
    max-width: 1000px;
    height: min(620px, calc(100dvh - 220px));
    margin: 0 auto;
}

.gp-catpage {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 18px rgba(5, 33, 96, 0.06);
}

.gp-catpage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gp-catcover {
    cursor: pointer;
}

@media (max-width: 640px) {
    .gp-catpop__header {
        flex-direction: column;
        align-items: stretch;
        padding: 48px 14px 12px 14px;
    }

    .gp-catpop__header-actions {
        justify-content: stretch;
    }

    .gp-catpop__btn--dl {
        width: 100%;
        justify-content: center;
    }

    .gp-catpop__nav {
        width: 100%;
        justify-content: center;
    }

    #gpCatBook {
        height: min(520px, calc(100dvh - 280px));
    }
}
