/*
Theme Name: Papatango
Theme URI: https://papatango.ch
Author: Papatango
Author URI: https://papatango.ch
Description: Thème sur mesure pour l'agence Papatango — Communication & Branding, Genève.
Version: 1.1.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: papatango
*/


        /* ============================================
           PAPATANGO V2 — BROKEN GRID / EDITORIAL
           Bold, asymmetric, kinetic agency feel
           ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --black: #0a0a0a;
            --white: #f5f2ed;
            --yellow: #ffff00;
            --grey-blue: #ccd9db;
            --grey-dark: #1a1a1a;
            --grey-mid: #2a2a2a;
            --grey-light: #e8e4de;
            --font-display: 'DM Serif Display', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
            --font-accent: 'Syne', sans-serif;
            --pad: clamp(24px, 6vw, 80px);
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            font-size: clamp(16px, 1.1vw, 18px);
            line-height: 1.7;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        ::selection { background: var(--yellow); color: var(--black); }
        a { color: inherit; text-decoration: none; }
        ul { list-style: none; }
        img { display: block; max-width: 100%; }

        /* ========== ACCESSIBILITÉ ========== */
        .skip-link {
            position: absolute; top: -100%; left: 16px;
            background: var(--yellow); color: var(--black);
            padding: 12px 24px; z-index: 9999;
            font-family: var(--font-accent); font-size: 0.78rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            text-decoration: none;
        }
        .skip-link:focus { top: 16px; }
        *:focus-visible {
            outline: 3px solid var(--yellow);
            outline-offset: 3px;
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .reveal { opacity: 1; transform: none; }
        }

        /* ========== GLOBAL HELPERS ========== */
        .reveal { opacity: 0; transform: translateY(50px) rotate(1deg); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
        .reveal.visible { opacity: 1; transform: translateY(0) rotate(0); }

        .tag {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            display: inline-flex; align-items: center; gap: 10px;
        }
        .tag::before { content: ''; width: 32px; height: 1.5px; background: currentColor; }

        .btn {
            display: inline-flex; align-items: center; gap: 12px;
            font-family: var(--font-accent);
            font-size: 0.78rem; font-weight: 700;
            letter-spacing: 0.12em; text-transform: uppercase;
            padding: 20px 44px; border: none; cursor: pointer;
            position: relative; overflow: hidden;
            transition: all 0.45s var(--ease);
        }
        .btn--primary { background: var(--yellow); color: var(--black); }
        .btn--primary:hover { transform: scale(1.04); box-shadow: 0 20px 60px rgba(255,255,0,0.2); }
        .btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
        .btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
        .btn--dark { background: var(--black); color: var(--white); }
        .btn--dark:hover { background: var(--yellow); color: var(--black); }
        .btn--outline-dark { background: transparent; color: var(--black); border: 1px solid rgba(10,10,10,0.12); }
        .btn--outline-dark:hover { border-color: var(--black); }

        .btn-arrow { font-size: 1.2em; transition: transform 0.3s var(--ease); }
        .btn:hover .btn-arrow { transform: translateX(4px); }

        /* ========== NAV — STICKY, MINIMAL ========== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px var(--pad);
            mix-blend-mode: difference; color: var(--white);
            transition: background 0.5s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.5s;
        }
        .nav--scrolled {
            mix-blend-mode: normal;
            background: rgba(10,10,10,0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px var(--pad);
        }
        .nav-logo { display: flex; align-items: center; }
        .nav-logo img { height: 36px; width: auto; }
        .nav-links { display: flex; gap: 36px; }
        .nav-links a {
            font-size: 0.76rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase;
            opacity: 0.6; transition: opacity 0.3s;
        }
        .nav-links a:hover { opacity: 1; }
        .nav-cta { font-size: 0.76rem; padding: 14px 28px; }
        .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 0; }
        .hamburger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s; }
        .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* Mobile menu overlay */
        .mobile-menu {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: var(--black);
            z-index: 999; display: flex;
            flex-direction: column; justify-content: center; align-items: center;
            gap: 32px; opacity: 0; pointer-events: none;
            transition: opacity 0.4s var(--ease);
        }
        .mobile-menu.open { opacity: 1; pointer-events: all; }
        .mobile-menu a {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--white); font-weight: 400;
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--yellow); }
        .mobile-menu .btn { margin-top: 16px; }

        /* ==============================================
           1. HERO — VIDEO CONTAIN ON RIGHT + DIAGONAL
           ============================================== */
        .hero {
            min-height: 90vh;
            display: flex; flex-direction: column; justify-content: center;
            color: var(--white);
            padding: 72px var(--pad) clamp(24px,2.5vw,36px);
            position: relative; overflow: hidden;
            background: var(--black);
        }
        .hero__content { position: relative; z-index: 6; max-width: 50%; }

        .hero__video-wrap {
            position: absolute;
            top: 50%; right: 0;
            transform: translateY(-50%);
            width: 60%;
            aspect-ratio: 16/9;
            z-index: 1;
        }

        .hero__video-glow {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(1.35);
            width: 100%; height: 100%;
            object-fit: contain;
            filter: blur(60px) saturate(2) brightness(0.9);
            opacity: 0.75;
            z-index: 0;
            pointer-events: none;
        }

        .hero__video-bg {
            position: relative;
            width: 100%; height: 100%;
            object-fit: contain;
            z-index: 1;
            -webkit-mask-image:
                linear-gradient(to right, transparent 0%, black 20%, black 90%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-composite: destination-in;
            mask-image:
                linear-gradient(to right, transparent 0%, black 20%, black 90%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-composite: intersect;
        }

        .hero__diagonal-mask {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            background:
                linear-gradient(
                    112deg,
                    var(--black) 36%,
                    rgba(10,10,10,0.85) 40%,
                    rgba(10,10,10,0.25) 44%,
                    transparent 48%
                );
            z-index: 3; pointer-events: none;
        }

        .hero__vignette {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background:
                linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, transparent 12%),
                linear-gradient(to top, var(--white) 0%, transparent 8%);
            z-index: 4; pointer-events: none;
        }

        .hero__badge {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 600;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            margin-bottom: 32px;
            display: inline-flex; align-items: center; gap: 10px;
            opacity: 0; animation: fadeSlide 0.8s 0.2s forwards;
        }
        .hero__badge__icon {
            width: 16px; height: 16px;
            flex-shrink: 0;
        }

        .hero__title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.2vw, 2.8rem);
            font-weight: 400; font-style: italic;
            line-height: 1.18;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
            color: var(--white);
            opacity: 0; animation: fadeSlide 0.8s 0.35s forwards;
        }
        .hero__title .em { color: var(--yellow); }

        .hero__sub {
            font-family: var(--font-body);
            font-size: clamp(1rem, 1.3vw, 1.2rem);
            font-weight: 300; line-height: 1.6;
            color: rgba(255,255,255,0.65);
            margin-bottom: 40px;
            opacity: 0; animation: fadeSlide 0.8s 0.5s forwards;
        }

        .hero__actions {
            display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
            opacity: 0; animation: fadeSlide 0.8s 0.65s forwards;
        }

        .hero__scroll-hint {
            position: absolute; bottom: 40px; left: 50%;
            transform: translateX(-50%); z-index: 10;
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
            color: rgba(255,255,255,0.55);
        }
        .hero__scroll-hint span {
            width: 1px; height: 48px;
            background: linear-gradient(to bottom, var(--yellow), transparent);
            animation: scrollPulse 2s infinite;
        }

        /* ==============================================
           2. CLIENTS — LOGO MARQUEE
           ============================================== */
        .clients {
            background: var(--white);
            padding: clamp(16px, 2vw, 24px) 0 clamp(18px, 2vw, 24px);
            text-align: center;
        }
        .clients__phrase {
            font-family: var(--font-accent);
            font-size: clamp(0.82rem, 1vw, 0.92rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(10,10,10,0.5);
            margin-bottom: clamp(14px, 1.5vw, 20px);
            padding: 0 var(--pad);
        }
        .clients__marquee {
            overflow: hidden;
            position: relative;
            width: 100%;
        }
        .clients__marquee::before,
        .clients__marquee::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }
        .clients__marquee::before {
            left: 0;
            background: linear-gradient(to right, var(--white), transparent);
        }
        .clients__marquee::after {
            right: 0;
            background: linear-gradient(to left, var(--white), transparent);
        }
        .clients__track {
            display: flex;
            align-items: center;
            gap: clamp(48px, 6vw, 80px);
            width: max-content;
            animation: marqueeScroll 50s linear infinite;
        }
        .clients__logo {
            height: clamp(20px, 2.5vw, 28px);
            max-width: clamp(80px, 10vw, 120px);
            width: auto;
            object-fit: contain;
            opacity: 0.35;
            flex-shrink: 0;
        }
        .clients__logo--invert { filter: invert(1); }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.333%); }
        }

        /* ==============================================
           3. PROBLÈME — FULL-SCREEN IMMERSIVE
           ============================================== */
        .probleme {
            position: relative;
            background: var(--black);
            display: flex; align-items: center; justify-content: center;
            padding: clamp(64px, 6vw, 100px) var(--pad);
            overflow: hidden;
        }
        .probleme::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 600px; height: 600px;
            background: var(--yellow); border-radius: 50%;
            filter: blur(200px); opacity: 0.05;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .probleme__word-bg {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-display);
            font-size: clamp(18vw, 22vw, 28rem);
            font-style: italic; font-weight: 400;
            line-height: 0.85;
            color: var(--white);
            opacity: 0;
            white-space: nowrap;
            user-select: none;
            pointer-events: none;
            transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
            z-index: 0;
        }
        .probleme__word-bg.active {
            opacity: 0.06;
            transform: translate(-50%, -50%) scale(1);
        }

        .probleme__content {
            position: relative; z-index: 2;
            max-width: 720px;
            text-align: center;
            display: flex; flex-direction: column; align-items: center;
        }

        .probleme__tag-line {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            display: inline-flex; align-items: center; gap: 10px;
            margin-bottom: 28px;
        }
        .probleme__tag-line::before { content: ''; width: 32px; height: 1.5px; background: rgba(255,255,255,0.3); }

        .probleme__word-front {
            position: relative;
            height: clamp(44px, 6vw, 64px);
            width: 100%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .probleme__word {
            position: absolute;
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 4.5vw, 4rem);
            font-style: italic; font-weight: 400;
            color: var(--yellow);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
            white-space: nowrap;
        }
        .probleme__word.active {
            opacity: 1;
            transform: translateY(0);
        }

        .probleme__symptom-text {
            position: relative;
            height: clamp(40px, 5vw, 56px);
            width: 100%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 24px;
        }
        .probleme__symptom {
            position: absolute;
            font-size: clamp(1rem, 1.3vw, 1.15rem);
            line-height: 1.7;
            color: rgba(255,255,255,0.5);
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s;
            white-space: nowrap;
        }
        .probleme__symptom.active {
            opacity: 1;
            transform: translateY(0);
        }

        .probleme__dots {
            display: flex; gap: 10px;
            margin-bottom: 32px;
        }
        .probleme__dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: background 0.4s var(--ease), transform 0.4s var(--ease);
        }
        .probleme__dot.active {
            background: var(--yellow);
            transform: scale(1.3);
        }

        .probleme__title {
            font-size: clamp(0.92rem, 1.1vw, 1.02rem);
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            margin-bottom: 28px;
        }
        .probleme__punchline {
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .probleme__punch-text {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.2vw, 2.8rem);
            font-weight: 400; font-style: italic;
            color: var(--white);
            line-height: 1.2;
        }
        .probleme__punch-em { color: var(--yellow); }

        /* ==============================================
           4. BÉNÉFICES — GRID BLOCKS
           ============================================== */
        .benefices {
            background: var(--white);
            padding: clamp(56px, 7vw, 80px) var(--pad) clamp(48px, 5vw, 64px);
            position: relative;
            overflow: hidden;
        }
        .benefices::before {
            content: '';
            position: absolute;
            top: -1px; left: 0; right: 0;
            height: clamp(50px, 5vw, 80px);
            background: var(--black);
            clip-path: polygon(0 0, 100% 0, 0% 100%);
        }

        .benefices__title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.1;
            margin-bottom: clamp(32px, 4vw, 44px);
            color: var(--black);
            white-space: nowrap;
        }
        .benefices__title em {
            color: var(--black);
            text-decoration: underline;
            text-decoration-color: var(--yellow);
            text-underline-offset: 6px;
            text-decoration-thickness: 3px;
            font-style: italic;
        }

        .benefices__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: clamp(32px, 3vw, 40px);
        }

        .benefice-card {
            position: relative;
            background: var(--black);
            padding: clamp(24px, 2.5vw, 32px);
            overflow: hidden;
            cursor: default;
            opacity: 0;
            transform: translateY(24px) scale(0.97);
            transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
        }
        .benefice-card.benefice--visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .benefice-card:nth-child(4) { grid-column: 1 / 2; }
        .benefice-card:nth-child(5) { grid-column: 2 / 4; }

        .benefice-card__num {
            font-family: var(--font-accent);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            line-height: 1;
            color: var(--yellow);
            opacity: 0.9;
            display: block;
            margin-bottom: 14px;
            position: relative;
            top: auto; right: auto;
            transition: opacity 0.3s var(--ease);
        }
        .benefice-card:hover .benefice-card__num {
            opacity: 1;
            transform: none;
        }

        .benefice-card__text {
            font-family: var(--font-body);
            font-size: clamp(0.95rem, 1.2vw, 1.08rem);
            font-weight: 400;
            line-height: 1.6;
            color: rgba(255,255,255,0.65);
            position: relative;
            z-index: 1;
            transition: color 0.3s var(--ease);
        }
        .benefice-card:hover .benefice-card__text { color: rgba(255,255,255,0.9); }
        .benefice-card__text strong { font-weight: 600; color: var(--white); }

        .benefice-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0%;
            height: 2px;
            background: var(--yellow);
            transition: width 0.5s var(--ease);
        }
        .benefice-card:hover::after { width: 100%; }

        .benefices__bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .benefices__closing-text {
            font-family: var(--font-display);
            font-size: clamp(1.25rem, 2vw, 1.65rem);
            font-style: italic;
            color: var(--black);
            max-width: 520px;
            line-height: 1.35;
        }

        /* ==============================================
           5. AVIS GOOGLE — COMPACT, DARK
           ============================================== */
        .avis-google {
            background: var(--black);
            color: var(--white);
            padding: clamp(48px, 6vw, 72px) var(--pad);
            text-align: center;
            position: relative;
        }
        .avis-google__header { margin-bottom: clamp(28px, 3vw, 40px); }
        .avis-google__title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 400; font-style: italic;
            margin-top: 16px;
            white-space: nowrap;
        }
        .avis-google__stars {
            display: inline-flex; align-items: center; gap: 10px;
            margin-top: 12px;
        }
        .avis-google__stars svg { width: 22px; height: 22px; fill: #FBBC04; }
        .avis-google__score {
            font-family: var(--font-display);
            font-size: 1.8rem; font-weight: 400;
            color: var(--white);
        }
        .avis-google__count {
            font-size: 0.72rem; color: rgba(255,255,255,0.45);
            margin-top: 4px;
            font-family: var(--font-body);
            letter-spacing: 0.02em;
        }
        .avis-google__grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 16px; max-width: 1000px; margin: 0 auto;
            text-align: left;
        }
        .avis-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            padding: clamp(20px, 2.5vw, 28px); position: relative;
            transition: transform 0.4s var(--ease), background 0.4s var(--ease);
        }
        .avis-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.07); }
        .avis-card__stars { display: flex; gap: 2px; margin-bottom: 12px; }
        .avis-card__stars svg { width: 12px; height: 12px; fill: #FBBC04; }
        .avis-card__text {
            font-size: 0.82rem; line-height: 1.65;
            color: rgba(255,255,255,0.65); margin-bottom: 16px;
            font-style: italic;
        }
        .avis-card__author { font-weight: 700; font-size: 0.78rem; color: var(--white); }
        .avis-card__via {
            font-size: 0.72rem; color: rgba(255,255,255,0.5);
            display: flex; align-items: center; gap: 6px; margin-top: 4px;
        }
        .avis-card__via svg { width: 12px; height: 12px; }
        .avis-google__link {
            display: inline-block; margin-top: 28px;
            font-size: 0.82rem; text-decoration: underline;
            text-underline-offset: 6px; text-decoration-color: var(--yellow);
            color: rgba(255,255,255,0.55);
            transition: color 0.3s;
        }
        .avis-google__link:hover { color: var(--white); }

        /* ==============================================
           5c. PRESSE — EDITORIAL CARDS
           ============================================== */
        .presse {
            background: var(--white);
            padding: clamp(40px, 5vw, 64px) var(--pad);
        }
        .presse__header {
            text-align: center;
            margin-bottom: clamp(24px, 3vw, 40px);
        }
        .presse__tag {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            color: rgba(10,10,10,0.4); margin-bottom: 20px;
        }
        .presse__title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 400; font-style: italic;
            color: var(--black);
        }
        .presse__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 1040px; margin: 0 auto;
        }
        .presse__card {
            display: block;
            background: transparent;
            border: 1px solid rgba(10,10,10,0.06);
            padding: clamp(20px, 2.5vw, 32px);
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
        }
        .presse__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,10,10,0.06); border-color: rgba(10,10,10,0.12); }
        .presse__card-source {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: rgba(10,10,10,0.4); margin-bottom: 16px;
        }
        .presse__card-title {
            font-family: var(--font-display);
            font-size: clamp(1.05rem, 1.4vw, 1.25rem);
            line-height: 1.35; margin-bottom: 12px;
        }
        .presse__card-excerpt {
            font-size: 0.85rem; line-height: 1.7;
            color: rgba(10,10,10,0.6); margin-bottom: 20px;
        }
        .presse__card-link {
            font-family: var(--font-accent);
            font-size: 0.7rem; font-weight: 600;
            color: var(--black); letter-spacing: 0.08em;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: var(--yellow);
            text-decoration-thickness: 2px;
        }
        .presse__card-link:hover { color: rgba(10,10,10,0.6); }

        /* ==============================================
           6. RÉALISATIONS — STAGGERED GRID
           ============================================== */
        .realisations {
            background: var(--white);
            padding: clamp(48px, 5vw, 72px) var(--pad) clamp(48px, 5vw, 72px);
            position: relative;
        }
        .realisations__header {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: clamp(28px, 3.5vw, 44px);
        }
        .realisations__title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            font-weight: 400; font-style: italic;
            line-height: 1.1;
        }
        .realisations__counter {
            text-align: right;
            flex-shrink: 0;
        }
        .realisations__counter-num {
            font-family: var(--font-display);
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-style: italic;
            line-height: 1;
            color: var(--black);
            opacity: 0.18;
            display: block;
        }
        .realisations__counter-label {
            font-family: var(--font-accent);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(10,10,10,0.4);
            display: block;
            margin-top: 6px;
        }
        .realisations__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .real-card {
            position: relative; overflow: hidden;
            cursor: pointer;
        }
        .real-card:nth-child(2) { margin-top: 40px; }
        .real-card:nth-child(3) { margin-top: 80px; }
        .real-card__img {
            width: 100%; aspect-ratio: 4/5;
            transition: transform 0.8s var(--ease);
            position: relative;
            overflow: hidden;
        }
        .real-card__img img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.8s var(--ease);
        }
        .real-card:hover .real-card__img { transform: scale(1.05); }

        .real-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                rgba(10,10,10,0.88) 0%,
                rgba(10,10,10,0.25) 45%,
                transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(20px, 2.5vw, 28px);
            transition: background 0.5s var(--ease);
        }
        .real-card:hover .real-card__overlay {
            background: linear-gradient(to top,
                rgba(10,10,10,0.94) 0%,
                rgba(10,10,10,0.55) 55%,
                rgba(10,10,10,0.15) 100%);
        }
        .real-card__cat {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.16em; text-transform: uppercase;
            color: var(--yellow);
            margin-bottom: 10px;
        }
        .real-card__name {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 2vw, 1.8rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 12px;
        }
        .real-card__services {
            font-family: var(--font-body);
            font-size: 0.78rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.5;
            margin-bottom: 0;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
        }
        .real-card:hover .real-card__services {
            opacity: 1; transform: translateY(0);
        }
        /* Carte statement "en cours" */
        .real-card--statement .real-card__img { display: none; }
        .real-card--statement {
            aspect-ratio: 4/5;
            background: var(--black);
            display: flex;
            align-items: flex-end;
        }
        .real-card__statement {
            padding: clamp(28px, 3vw, 40px);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .real-card__statement-num {
            font-family: var(--font-display);
            font-size: clamp(4rem, 7vw, 6.5rem);
            font-style: italic;
            line-height: 0.9;
            color: var(--yellow);
            display: block;
        }
        .real-card__statement-text {
            font-family: var(--font-display);
            font-size: clamp(1rem, 1.4vw, 1.25rem);
            font-style: italic;
            line-height: 1.45;
            color: rgba(245,242,237,0.65);
        }
        .real-card__statement-dot {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-accent);
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            color: rgba(245,242,237,0.4);
        }
        .real-card__statement-dot::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--yellow);
            border-radius: 50%;
            flex-shrink: 0;
            animation: wip-pulse 2.2s ease-in-out infinite;
        }
        .real-card__statement-dot::after {
            content: 'Visuels en cours';
        }
        .real-card__statement-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-accent);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--yellow);
            text-decoration: none;
            margin-top: 8px;
            transition: gap 0.3s var(--ease);
        }
        .real-card__statement-cta:hover { gap: 14px; }

        .realisations__wip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-accent);
            font-size: 0.7rem;
            letter-spacing: 0.04em;
            color: rgba(10,10,10,0.45);
            margin-top: 20px;
            font-style: italic;
        }
        .realisations__wip::before {
            content: '';
            flex-shrink: 0;
            width: 7px; height: 7px;
            background: var(--yellow);
            border-radius: 50%;
            animation: wip-pulse 2.2s ease-in-out infinite;
        }
        @keyframes wip-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.35; transform: scale(0.75); }
        }

        .realisations__more {
            margin-top: 56px; text-align: right;
        }
        .realisations__more a {
            font-size: 0.95rem; text-decoration: underline;
            text-underline-offset: 6px; text-decoration-color: var(--yellow);
        }

        /* ==============================================
           INTERSTITIAL — BANDEAU CITATION
           ============================================== */
        .interstitial {
            background: var(--grey-dark);
            padding: clamp(40px, 5vw, 64px) var(--pad);
            text-align: center;
            position: relative; overflow: hidden;
        }
        .interstitial__text {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.5vw, 4rem);
            font-weight: 400; font-style: italic;
            line-height: 1.05;
            color: var(--white);
            position: relative; z-index: 2;
        }
        .interstitial__text .em { color: var(--yellow); font-style: italic; }
        .interstitial__author {
            font-family: var(--font-accent);
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.45);
            margin-top: 28px;
            position: relative; z-index: 2;
        }
        .interstitial__line {
            display: block; width: 60px; height: 3px;
            background: var(--yellow);
            margin: 0 auto 32px;
            opacity: 0; transform: scaleX(0);
            animation: lineReveal 0.8s 0.2s var(--ease) forwards;
        }
        @keyframes lineReveal { to { opacity: 1; transform: scaleX(1); } }
        .interstitial__ghost {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-display);
            font-size: clamp(8rem, 18vw, 16rem);
            font-weight: 400; font-style: italic;
            color: rgba(255,255,255,0.02);
            white-space: nowrap;
            pointer-events: none; user-select: none;
            z-index: 1;
        }

        /* RUBAN ALERTE — supprimé, fusionné dans CTA final */

        /* ==============================================
           8. APPROCHE — NUMBERED STEPS (REFONTE)
           ============================================== */
        .approche {
            background: var(--white);
            color: var(--black);
            position: relative;
            clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
            margin-top: -52px;
            padding: clamp(80px, 10vw, 120px) var(--pad) 0;
        }
        .approche__intro {
            max-width: 760px;
            margin-left: clamp(20%, 25vw, 35%);
            margin-bottom: clamp(28px, 3.5vw, 44px);
        }
        .approche__title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            font-weight: 400; font-style: italic;
            line-height: 1.05; margin-bottom: 24px;
            white-space: nowrap;
        }
        .approche__subtitle {
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
            color: rgba(10,10,10,0.65);
            line-height: 1.8;
        }
        .approche__steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(16px, 2vw, 24px);
        }
        .step {
            background: var(--white);
            border: 1px solid rgba(10,10,10,0.08);
            border-radius: 2px;
            padding: clamp(28px, 3vw, 40px);
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-shadow: 0 8px 40px rgba(10,10,10,0.04);
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
        }
        .step:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(10,10,10,0.08);
        }
        .step__num {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 3.5vw, 3.2rem);
            font-style: italic; line-height: 1;
            color: var(--black);
            opacity: 0.15;
        }
        .step__content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .step__label {
            font-family: var(--font-accent);
            font-size: 0.72rem; font-weight: 700;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: var(--black); opacity: 0.65;
        }
        .step__title {
            font-family: var(--font-display);
            font-size: clamp(1.15rem, 1.8vw, 1.55rem);
            font-weight: 400; font-style: italic;
            line-height: 1.35;
        }
        .approche__cta {
            border-top: 1px solid rgba(10,10,10,0.08);
            padding: clamp(24px, 3vw, 36px) 0 clamp(40px, 5vw, 64px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px; flex-wrap: wrap;
        }
        .approche__cta-text {
            font-family: var(--font-display);
            font-size: clamp(1.3rem, 2.2vw, 1.9rem);
            font-style: italic;
            color: rgba(10,10,10,0.7);
            max-width: 480px; line-height: 1.3;
        }

        /* ==============================================
           7b. QUI SOMMES-NOUS — TEAM TEASER
           ============================================== */
        .equipe {
            position: relative;
            min-height: clamp(420px, 55vw, 620px);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 44px, 100% 100%, 0 100%);
            margin-top: -44px;
        }
        .equipe__bg {
            position: absolute; inset: 0;
            z-index: 1;
        }
        .equipe__bg img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center 30%;
            filter: blur(3px);
            transform: scale(1.04); /* compense le blur qui rogne les bords */
        }
        .equipe__bg::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10,10,10,0.82) 0%,
                rgba(10,10,10,0.55) 50%,
                rgba(10,10,10,0.3) 100%
            );
        }
        .equipe__content {
            position: relative; z-index: 2;
            padding: clamp(72px, 9vw, 110px) var(--pad);
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .equipe__tag {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 20px;
        }
        .equipe__title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 2.8vw, 2.4rem);
            font-style: italic;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--white);
            white-space: nowrap;
        }
        .equipe__subtitle {
            font-size: clamp(0.92rem, 1.1vw, 1.02rem);
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
        }
        .equipe__subtitle + .equipe__subtitle {
            margin-top: clamp(6px, 0.8vw, 10px);
        }
        .equipe__link {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 28px;
            font-family: var(--font-accent);
            font-size: 0.78rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--yellow);
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-color: var(--yellow);
            text-decoration-thickness: 2px;
            transition: all 0.3s var(--ease);
        }
        .equipe__link:hover { letter-spacing: 0.16em; }
        .equipe__link .btn-arrow { transition: transform 0.3s var(--ease); }
        .equipe__link:hover .btn-arrow { transform: translateX(6px); }

        /* ==============================================
           8. OFFRES — GATEWAY (PORTE D'ENTRÉE)
           ============================================== */
        .offres-full {
            background: var(--grey-light); color: var(--black);
            padding: clamp(72px, 9vw, 110px) var(--pad) clamp(60px, 7vw, 80px);
            position: relative; overflow: hidden;
        }
        .offres-full::before {
            content: '';
            position: absolute;
            top: -1px; left: 0; right: 0;
            height: clamp(50px, 5vw, 80px);
            background: var(--black);
            clip-path: polygon(0 0, 100% 0, 100% 100%);
        }
        .offres-full__header {
            text-align: center;
            margin-bottom: clamp(40px, 5vw, 60px);
        }
        .offres-full__tag {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: var(--black); opacity: 0.45;
            margin-bottom: 20px;
        }
        .offres-full__title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400; font-style: italic;
            line-height: 1.1; margin-bottom: 16px;
            color: var(--black);
        }
        .offres-full__sub {
            font-size: clamp(0.9rem, 1.1vw, 1rem);
            color: rgba(10,10,10,0.65);
            max-width: 520px; margin: 0 auto;
            line-height: 1.7;
        }
        .offres-gateway {
            display: grid; grid-template-columns: repeat(2, 1fr);
            gap: clamp(16px, 2.5vw, 28px); max-width: 900px; margin: 0 auto;
        }
        .offres-gate-card {
            padding: clamp(36px, 4vw, 56px);
            background: var(--black); color: var(--white);
            display: flex; flex-direction: column;
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
        }
        .offres-gate-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(10,10,10,0.15); }
        .offres-gate-card--accent { background: var(--grey-dark); }
        .offres-gate-card__icon {
            font-size: 1.4rem; color: var(--yellow); opacity: 0.5;
            margin-bottom: 20px;
        }
        .offres-gate-card__label {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: var(--yellow); margin-bottom: 12px;
        }
        .offres-gate-card__title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 2.2vw, 1.9rem);
            font-weight: 400; font-style: italic;
            line-height: 1.15; margin-bottom: 16px;
            color: var(--white);
        }
        .offres-gate-card__desc {
            font-size: 0.88rem; line-height: 1.7;
            color: rgba(255,255,255,0.65);
            flex: 1; margin-bottom: 24px;
        }
        .offres-gate-card__price {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 1.8vw, 1.5rem);
            font-style: italic;
            color: var(--yellow); margin-bottom: 24px;
        }
        .offres-gate-card__cta {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font-accent); font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--yellow);
            padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06);
            transition: all 0.35s var(--ease);
        }
        .offres-gate-card__cta:hover { letter-spacing: 0.18em; }
        .offres-gate-card__cta .btn-arrow { transition: transform 0.3s var(--ease); }
        .offres-gate-card__cta:hover .btn-arrow { transform: translateX(6px); }
        @media (max-width: 768px) { .offres-gateway { grid-template-columns: 1fr; } }

        /* ==============================================
           9. DÉCLENCHEUR — SPLIT YELLOW/BLACK
           ============================================== */
        .declencheur {
            background: var(--black); color: var(--white);
            padding: clamp(48px, 6vw, 72px) var(--pad);
            position: relative; z-index: 1;
        }
        .declencheur__statement {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.2vw, 3rem);
            font-weight: 400; font-style: italic;
            line-height: 1.25;
            color: var(--white);
            max-width: 900px;
        }
        .declencheur__statement em {
            color: var(--yellow);
            font-style: italic;
        }

        /* ==============================================
           10. CTA FINAL — FULL BLACK, CENTERED
           ============================================== */
        .cta-final {
            background: var(--grey-dark);
            display: flex; align-items: center; justify-content: center;
            padding: clamp(72px, 9vw, 100px) var(--pad) clamp(48px, 6vw, 72px);
            text-align: center; position: relative;
            z-index: 1;
            color: var(--white);
            clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
            margin-top: -52px;
        }
        .cta-final::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 800px; height: 800px;
            background: var(--yellow); border-radius: 50%;
            filter: blur(260px); opacity: 0.1;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .cta-final__content { max-width: 800px; position: relative; z-index: 1; }
        .cta-final__title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            font-weight: 400; line-height: 1.1;
            color: var(--white); margin-bottom: 28px;
        }
        .cta-final__title em { font-style: italic; color: var(--yellow); }
        .cta-final__text {
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
            color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 14px;
        }
        .cta-final__text--muted { font-style: italic; margin-bottom: 40px; color: rgba(255,255,255,0.45); }
        .cta-final__mention {
            margin-top: 16px; font-size: 0.72rem;
            color: rgba(255,255,255,0.35);
        }

        /* ==============================================
           11. FOOTER
           ============================================== */
        footer {
            background: var(--black);
            color: var(--white);
            padding: clamp(48px, 6vw, 72px) var(--pad) 0;
        }
        .footer__body {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            padding-bottom: clamp(40px, 5vw, 60px);
            border-bottom: 1px solid rgba(255,255,255,0.07);
            align-items: start;
        }
        .footer__brand img { height: 40px; width: auto; display: block; margin-bottom: 20px; }
        .footer__address {
            font-size: 0.82rem; line-height: 1.8;
            color: rgba(255,255,255,0.5);
            margin-bottom: 20px;
        }
        .footer__socials { display: flex; gap: 20px; margin-top: 4px; }
        .footer__socials a {
            font-family: var(--font-accent); font-size: 0.65rem;
            font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
            color: rgba(255,255,255,0.5); transition: color 0.3s;
        }
        .footer__socials a:hover { color: var(--white); }
        .footer__col-title {
            font-family: var(--font-accent);
            font-size: 0.62rem; font-weight: 700;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            margin-bottom: 20px;
        }
        .footer__col-links { display: flex; flex-direction: column; gap: 12px; }
        .footer__col-links a {
            font-size: 0.84rem; color: rgba(255,255,255,0.5);
            transition: color 0.3s var(--ease);
        }
        .footer__col-links a:hover { color: var(--white); }
        .footer__cta-wrap { display: flex; flex-direction: column; gap: 16px; }
        .footer__cta-text {
            font-family: var(--font-display);
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            font-style: italic; line-height: 1.4;
            color: rgba(255,255,255,0.7);
        }
        .footer__bar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 0;
            font-size: 0.7rem; color: rgba(255,255,255,0.42);
        }
        .footer__bar a { color: rgba(255,255,255,0.42); transition: color 0.3s; }
        .footer__bar a:hover { color: rgba(255,255,255,0.6); }
        .footer__bar-links { display: flex; gap: 20px; }

        /* ========== RESPONSIVE BR ========== */
        .br { display: block; }
        @media (max-width: 768px) { .br { display: inline; } .br::before { content: ' '; } }

        /* ========== KEYFRAMES ========== */
        @keyframes fadeSlide { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
        @keyframes scrollPulse { 0% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.3; } 100% { transform: scaleY(1); opacity: 1; } }
        @keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .probleme__symptom { white-space: normal; text-align: center; font-size: 0.9rem; }
            /* declencheur — single element, no override needed */
            .declencheur__left { min-height: 30vh; }
            .step { gap: 20px; }
        }
        @media (max-width: 768px) {
            .nav-links, .nav-cta { display: none; }
            .hamburger { display: flex; }
            .hero__content { max-width: 100%; }
            .hero__video-wrap { width: 100%; top: 50%; right: 0; opacity: 0.18; }
            .hero__video-glow { display: none; }
            .hero__diagonal-mask { display: none; }
            .hero__title { font-size: clamp(1.5rem, 4vw, 2rem); }
            .hero__sub { font-size: 0.95rem; }
            .avis-google__grid { grid-template-columns: 1fr; }
            .benefices__grid { grid-template-columns: 1fr; }
            .benefice-card:nth-child(5) { grid-column: auto; }
            .benefices__bottom { flex-direction: column; align-items: flex-start; }
            .benefices__title { white-space: normal; }
            .offre__grid { grid-template-columns: 1fr; }
            .presse__grid { grid-template-columns: 1fr; }
            .presse__grid .presse__card:last-child { border-top: 1px solid rgba(10,10,10,0.08); }
            .realisations__grid { grid-template-columns: 1fr; }
            .real-card:nth-child(2), .real-card:nth-child(3) { margin-top: 0; }
            .real-card__img { aspect-ratio: 4/5; }
            .real-card--statement { aspect-ratio: 4/5; }
            .real-card:nth-child(2), .real-card:nth-child(3) { margin-top: 0; }
            .realisations__header { flex-direction: column; align-items: flex-start; gap: 8px; }
            .footer__body { grid-template-columns: 1fr; gap: 32px; }
            .footer__tagline { max-width: 100%; }
            .footer__bar { flex-direction: column; gap: 12px; text-align: center; }
            .footer__bar-links { flex-wrap: wrap; justify-content: center; }
            .approche__steps { grid-template-columns: 1fr; }
            .step__content { gap: 6px; }
            .approche__cta { flex-direction: column; align-items: flex-start; }
            .approche { clip-path: none; margin-top: 0; }
            .approche__intro { margin-left: 0; }
            .approche__title { white-space: normal; }
            .equipe__title { white-space: normal; }
            .equipe { min-height: 380px; clip-path: none; margin-top: 0; }
            .cta-final { clip-path: none; margin-top: 0; padding-top: clamp(56px, 7vw, 88px); }
            /* declencheur — single element, no override needed */
        }
        @media (max-width: 480px) {
            :root { --pad: 20px; }
            .hero__title { font-size: 1.4rem; }
            .hero__clients-logos img { height: 18px; }
            .btn { padding: 16px 32px; font-size: 0.72rem; }
            .probleme__punch-text { font-size: 1.2rem; }
        }
    

/* ===== REVEAL FALLBACK — elements auto-reveal after 1.5s if JS fails ===== */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: revealFallback 0.9s ease 1.5s forwards;
}
.reveal.visible {
  animation: none;
}

/* ===== PMT logo fix – square image needs taller display height ===== */
img.clients__logo[src*="logo-pmt"] {
  height: 48px;
}

/* Phrase d'intro section problème */
.probleme__intro {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--white, #f5f2ed);
  opacity: 0.75;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}


/* ===================================================
   PRESSE --- Carte "À paraître"
   =================================================== */
.presse__card--coming-soon {
  opacity: 0.42;
  filter: grayscale(1);
  pointer-events: none;
  cursor: default;
}
.presse__card--coming-soon .presse__card-link {
  font-style: italic;
  letter-spacing: 0.06em;
}

/* ===================================================
   ACCESSIBILITÉ --- prefers-reduced-motion
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee__track {
    animation: none !important;
  }
  .hero__text-anim,
  .slider__word {
    animation: none !important;
    transition: none !important;
  }
  video {
    display: none;
  }
}

/* =====================================================
   MOBILE — max-width: 768px
   Fixes: nav hamburger / hero overlap / Calendly iframe
   ===================================================== */
@media (max-width: 768px) {

    /* 1. NAV MOBILE — show hamburger, hide desktop links */
    .nav-links,
    .nav-cta { display: none !important; }
    .hamburger { display: flex !important; }

    /* 2. HERO MOBILE — hide video overlay so text is readable */
    .hero__video-wrap { display: none !important; }
    .hero { min-height: 100svh; }
    .hero__content { position: relative; z-index: 2; padding: 100px 24px 60px; }

    /* 3. CALENDLY — give iframe proper dimensions */
    .booking__embed { width: 100%; }
    .booking__embed iframe {
        width: 100%;
        min-height: 630px;
        border: none;
        display: block;
    }
}

/* ==============================================
   PAPATANGO — CookieYes Banner Colors Override
   ============================================== */
/* Boutons "Personnaliser" et "Tout refuser" — bordure noire */
.cky-btn-customize,
.cky-btn-reject {
    color: #000000 !important;
    background-color: transparent !important;
    border-color: #000000 !important;
}
/* Bouton "Tout accepter" — jaune Papatango */
.cky-btn-accept {
    color: #000000 !important;
    background-color: #E2FF04 !important;
    border-color: #E2FF04 !important;
}
/* Bouton revisit (icône cookie) */
.cky-btn-revisit-wrapper {
    background-color: #000000 !important;
}
/* Preference Centre — même logique */
.cky-btn-preferences {
    color: #000000 !important;
    border-color: #000000 !important;
}