        :root {
            --orange: #dc4f0a;
            --orange-dark: #b63e07;
            --orange-light: rgba(220, 79, 10, .08);
            --taupe: #76685f;
            --taupe-dark: #3d3630;
            --taupe-light: #f5f1ee;
            --taupe-border: #ddd5cf;
            --surface: #fcfbf9;
            --white: #ffffff;
            --primary: #76685f;
            --secondary: #dc4f0a;
            --background: #fcfbf9;
            --on-surface: #3d3630;
            --surface-container-low: #f5f1ee;
            --surface-container-high: #ddd5cf;
            --outline-variant: #ddd5cf;
            --anim-duration: 1.2s;
            --anim-ease: cubic-bezier(0.25, 1, 0.5, 1);
        }

        body {
            font-family: 'Barlow Condensed', sans-serif;
            background-color: var(--surface);
            color: var(--taupe-dark);
            overflow-x: hidden;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
        }

        h1, h2, h3, h4, h5, .font-headline {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
        }

        .text-primary-custom   { color: var(--primary) !important; }
        .text-secondary-custom { color: var(--secondary) !important; }
        .bg-primary-custom     { background-color: var(--primary) !important; }
        .bg-secondary-custom   { background-color: var(--secondary) !important; }
        .border-secondary-custom { border-color: var(--secondary) !important; }

        /* Scrolly Reveal (hero commun) */
        .scrolly-reveal {
            opacity: 0; transform: translateY(40px);
            transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        }
        .is-visible { opacity: 1; transform: translate(0) scale(1); }

        /* Progress Dots */
        #scroll-progress-container {
            position: fixed; right: 2rem; top: 50%; transform: translateY(-50%);
            z-index: 1050; display: flex; flex-direction: column; gap: 1.5rem; align-items: center;
        }
        .progress-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: rgba(220, 79, 10, 0.2); transition: all .3s ease;
            cursor: pointer; text-decoration: none;
        }
        .progress-dot.active { background: var(--secondary); transform: scale(1.5); }

        header { transition: transform .3s ease-in-out; }
        header.hide { transform: translateY(-100%); }

        .label-caps { font-family: 'Barlow Condensed'; font-size: 14px; letter-spacing: .1em; font-weight: 600; text-transform: uppercase; }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .scrolly-reveal { opacity: 1; transform: none; transition: none; }
            * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
        }

        @supports (height: 100svh) { #hero { height: 100svh; } }

        @media (max-width: 767.98px) {
            body { font-size: 15px; }
            #hero { min-height: 100svh; height: auto; }
            #scroll-progress-container { display: flex !important; top: auto; bottom: 1rem; right: 50%; transform: translateX(50%); flex-direction: row; gap: .55rem; background: rgba(252,251,249,.92); backdrop-filter: blur(8px); padding: .45rem .8rem; border-radius: 999px; box-shadow: 0 4px 14px rgba(61,54,48,.1); }
            .progress-dot { width: 6px; height: 6px; }
            .progress-dot.active { transform: scale(1.6); }
            h1, h2, h3 { line-height: 1.15; }
        }

        /* ═══════════════════════════════════════════════════════════
           HEADER + NAVIGATION 7 CHAPITRES (chrome dupliqué des chapitres)
        ═══════════════════════════════════════════════════════════ */
        .chi-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; background: white; color: var(--taupe-dark); transition: transform .35s ease; }
        .chi-header.hide { transform: translateY(-100%); }
        .chi-header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem; padding: .75rem clamp(1rem, 3vw, 2rem); max-width: 1700px; margin: 0 auto; }
        .chi-header-logos { display: flex; align-items: center; gap: 1.1rem; min-width: 0; }
        .chi-logo-link { display: inline-flex; align-items: center; }
        .chi-logo { height: 72px; width: auto; background: #fff; border-radius: 0.5rem; padding-right: 22px; }
        .chi-ubs { height: 22px; width: auto; opacity: .8; }
        .chi-header-actions { display: flex; align-items: center; gap: .65rem; justify-self: end; }
        .chi-link-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--taupe-dark); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .55rem .65rem; transition: color .2s, opacity .2s; min-height: 44px; }
        .chi-link-back:hover { color: var(--orange); }
        .chi-link-back i { font-size: 1.1rem; }
        .chi-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; border: 1.5px solid var(--taupe-dark); border-radius: 0.5rem; color: var(--taupe-dark); cursor: pointer; transition: border-color .2s, color .2s; }
        .chi-menu-toggle:hover { border-color: var(--orange); color: var(--orange); }
        .chi-menu-toggle i { font-size: 1.3rem; }

        /* Nav overlay */
        .chapter-nav { position: fixed; inset: 0; background: var(--taupe-dark); color: var(--taupe-light); z-index: 1029; padding-top: 110px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .4s ease, visibility .4s; overflow-y: auto; }
        .chapter-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
        body.chapter-nav-open { overflow: hidden; }
        .chapter-nav-inner { max-width: 980px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem); min-height: calc(100% - 110px); display: flex; flex-direction: column; }
        .chapter-nav-eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-bottom: 2.5rem; }
        .chapter-nav-dash { letter-spacing: 0; }
        .chapter-nav-bullet { opacity: .7; }
        .chapter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
        .chapter-item { border-bottom: 1px solid rgba(245,241,238,.14); }
        .chapter-item:first-child { border-top: 1px solid rgba(245,241,238,.14); }
        .chapter-link { display: flex; align-items: center; gap: 1.5rem; padding: .8rem .15rem; text-decoration: none; color: rgba(245,241,238,.55); font-family: 'Barlow Condensed', sans-serif; transition: color .25s ease, padding-left .25s ease, background .25s ease; min-height: 50px; }
        a.chapter-link:hover, a.chapter-link:focus { color: var(--taupe-light); padding-left: 1rem; background: linear-gradient(to right, rgba(220,79,10,.06), transparent 80%); }
        .chapter-item.is-active .chapter-link { color: #fff; }
        .chapter-item.is-active .chapter-num { color: var(--orange); }
        .chapter-num { flex-shrink: 0; width: 44px; font-size: .82rem; font-weight: 700; letter-spacing: .14em; color: var(--orange); opacity: .85; }
        .chapter-item.is-locked .chapter-num { color: rgba(245,241,238,.3); }
        .chapter-body { flex: 1; min-width: 0; display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
        .chapter-title { font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1.1; }
        .chapter-period { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,241,238,.4); font-weight: 500; white-space: nowrap; }
        .chapter-item.is-locked .chapter-link { cursor: not-allowed; }
        .chapter-soon { flex-shrink: 0; display: inline-flex; align-items: center; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); background: rgba(220,79,10,.12); border: 1px solid rgba(220,79,10,.35); padding: 4px 10px; border-radius: 4px; font-weight: 700; line-height: 1; height: 22px; }
        .chapter-nav-footer { margin-top: auto; padding-top: 3rem; display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 1.25rem; }
        .chapter-nav-copy { font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,241,238,.4); }
        .chapter-extra { margin-top: 2.5rem; }
        .chapter-extra-eyebrow { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--orange); margin-bottom: 1.25rem; }
        .chapter-extra-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        .chapter-extra-link { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; background: rgba(245,241,238,.04); border: 1px solid rgba(245,241,238,.14); border-radius: 0.5rem; color: rgba(245,241,238,.85); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; transition: background .25s, border-color .25s, color .25s, transform .25s; min-height: 56px; }
        .chapter-extra-link:hover, .chapter-extra-link:focus { background: rgba(220,79,10,.1); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
        .chapter-extra-link > i:first-child { font-size: 1.2rem; color: var(--orange); flex-shrink: 0; }
        .chapter-extra-link > span { flex: 1; line-height: 1.2; }
        .chapter-extra-arrow { font-size: 1rem; opacity: .5; transition: opacity .2s, transform .25s; }
        .chapter-extra-link:hover .chapter-extra-arrow { opacity: 1; transform: translate(2px, -2px); }
        @media (max-width: 767.98px) { .chapter-extra-list { grid-template-columns: 1fr; gap: .65rem; } .chapter-extra { margin-top: 2rem; } }

        main { margin-top: 98px !important; }

        @media (max-width: 1299.98px) {
            .chi-logo { height: 52px; padding: 0; }
            .chi-header-logos { gap: .85rem; }
        }
        @media (max-width: 1023.98px) {
            .chi-ubs { height: 22px; }
            .chi-logo { height: 52px; }
            main { margin-top: 78px !important; }
            .chapter-nav { padding-top: 78px; }
            .chapter-nav-inner { min-height: calc(100% - 78px); }
        }
        @media (max-width: 767.98px) {
            .chi-header-inner { gap: .5rem; padding: .6rem .75rem; }
            .chi-header-logos { gap: .65rem; }
            .chi-logo { height: 52px; }
            .chi-ubs { height: 22px; opacity: .7; }
            .chi-link-back .d-md-inline { display: none !important; }
            main { margin-top: 64px !important; }
            .chapter-nav { padding-top: 64px; }
            .chapter-nav-inner { min-height: calc(100% - 64px); }
        }
        @media (max-width: 480px) {
            .chi-logo { height: 56px; }
            .chapter-link { flex-wrap: wrap; gap: .6rem 1rem; padding: 1rem .25rem; }
            .chapter-num { width: 36px; }
            .chapter-body { flex-direction: column; align-items: flex-start; gap: .25rem; }
            .chapter-title { font-size: 1.15rem; }
            .chapter-period { font-size: .7rem; letter-spacing: .12em; }
            .chapter-soon { order: 3; font-size: .58rem; padding: 3px 8px; height: 20px; margin-left: 36px; }
        }
        @media (max-width: 380px) {
            .chi-ubs { display: none; }
            .chi-link-back { padding: .55rem .35rem; }
        }

        /* ══════════════════════════════════════════════════════════
           HERO VIDEO (commun aux chapitres)
        ══════════════════════════════════════════════════════════ */
        .hero-play-btn { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 1.6rem; background: transparent; border: none; padding: 0; color: #fff; cursor: pointer; outline: none; }
        .hero-play-btn:focus-visible .hero-play-icon { box-shadow: 0 0 0 4px rgba(220,79,10,.35), 0 14px 40px rgba(0,0,0,.5); }
        .hero-play-icon { position: relative; width: 96px; height: 96px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 3rem; line-height: 1; color: #fff; box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 0 0 rgba(220,79,10,.55); transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s; z-index: 2; }
        .hero-play-icon i { margin-left: 6px; }
        .hero-play-btn:hover .hero-play-icon { transform: scale(1.08); background: var(--orange-dark); }
        .hero-play-ring, .hero-play-ring-2 { position: absolute; top: 0; left: 50%; width: 96px; height: 96px; border-radius: 50%; border: 2px solid rgba(220,79,10,.55); transform: translateX(-50%); animation: heroPlayPulse 2.4s cubic-bezier(.2,.8,.2,1) infinite; pointer-events: none; }
        .hero-play-ring-2 { animation-delay: 1.2s; }
        @keyframes heroPlayPulse { 0% { opacity: .7; transform: translateX(-50%) scale(1); } 70% { opacity: 0; transform: translateX(-50%) scale(2.2); } 100% { opacity: 0; transform: translateX(-50%) scale(2.2); } }
        @media (prefers-reduced-motion: reduce) { .hero-play-ring, .hero-play-ring-2 { animation: none; opacity: .3; } }
        .hero-play-label { display: flex; flex-direction: column; align-items: center; gap: .55rem; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
        .hero-play-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: var(--orange); }
        .hero-play-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.95); }
        .hero-video-modal { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; opacity: 0; visibility: hidden; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 3vw, 3rem); transition: opacity .35s ease, visibility .35s; }
        .hero-video-modal.is-open { opacity: 1; visibility: visible; }
        .hero-video-wrap { width: 100%; max-width: 1280px; aspect-ratio: 16/9; box-shadow: 0 30px 80px rgba(0,0,0,.5); border-radius: 0.5rem; overflow: hidden; background: #000; }
        .hero-video-wrap video { width: 100%; height: 100%; display: block; background: #000; }
        .hero-video-close { position: absolute; top: clamp(.75rem, 2vw, 1.5rem); right: clamp(.75rem, 2vw, 1.5rem); width: 48px; height: 48px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, transform .2s; }
        .hero-video-close:hover { background: var(--orange); border-color: var(--orange); transform: rotate(90deg); }
        body.hero-video-open { overflow: hidden; }
        @media (max-width: 575.98px) { .hero-play-icon { width: 78px; height: 78px; font-size: 2.5rem; } .hero-play-ring, .hero-play-ring-2 { width: 78px; height: 78px; } .hero-play-btn { gap: 1.2rem; } }


        /* ══════════════════════════════════════════════════════════
           CHAPITRE 04 — IDENTITÉ « ARRÊT SUR IMAGE »
           Le chapitre se lit comme un dépouillement du film : chaque
           passage marquant devient un PLAN plein cadre, révélé par un
           balayage, légendé par une fiche et repéré par un timecode.
           Deux modules signature : le MUR de puissance qui se construit
           au scroll, et la bande « attractions ».
           Palette : celle du site (papier clair + orange), comme les
           épisodes 1 à 3. Aucune couleur propre au chapitre.
        ══════════════════════════════════════════════════════════ */
        .c100-frames {
            --paper:    #faf8f4;               /* papier clair, comme l'épisode 2 */
            --ice:      #eef2f3;               /* neutre froid : la glace des Vernets */
            --ink:      var(--taupe-dark);
            --ink-soft: var(--taupe);
            --rule:     var(--taupe-border);
            background: var(--paper); color: var(--ink);
        }

        /* Révélations douces (mêmes conventions que les épisodes 2 et 3) */
        [data-reveal] { opacity: 0; transform: translateY(30px);
            transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
        [data-reveal].is-in { opacity: 1; transform: none; }
        @media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

        /* ---- LE PLAN : section plein cadre + fiche de légende ---- */
        .frame { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
        .frame-media { position: absolute; inset: 0; z-index: 0; }
        .frame-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(1) contrast(1.05); }
        .frame-media::after { content: ""; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(20,16,12,.20) 0%, rgba(20,16,12,.10) 40%, rgba(20,16,12,.78) 100%); }

        /* Balayage de révélation : le plan se dévoile de bas en haut */
        .frame-wipe { position: absolute; inset: 0; z-index: 1; background: var(--paper);
            transform: scaleY(1); transform-origin: bottom center;
            transition: transform 1.1s cubic-bezier(.7,0,.2,1); pointer-events: none; }
        .frame.is-in .frame-wipe { transform: scaleY(0); }
        @media (prefers-reduced-motion: reduce) { .frame-wipe { display: none; } }

        .frame-inner { position: relative; z-index: 2; width: 100%; max-width: 1500px; margin: 0 auto;
            padding: clamp(2.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 5rem); display: flex; }
        .frame--right .frame-inner { justify-content: flex-end; }
        .frame--center .frame-inner { justify-content: center; text-align: center; }

        /* Fiche de légende : carte claire posée sur le plan */
        .frame-card { max-width: 620px; background: color-mix(in srgb, var(--paper) 94%, transparent);
            -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
            border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0;
            padding: clamp(1.5rem, 3vw, 2.6rem); box-shadow: 0 24px 70px rgba(20,16,12,.34); }
        .frame--center .frame-card { border-left: 0; border-top: 4px solid var(--orange); border-radius: 0 0 12px 12px; max-width: 760px; }
        .frame-kicker { display: inline-flex; align-items: center; gap: .7rem; font-family: 'Barlow Condensed', sans-serif;
            font-size: .8rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
        .frame-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(1.9rem, 4.2vw, 3.4rem);
            line-height: 1.06; color: var(--ink); margin: 0 0 1.1rem; }
        .frame-text { font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.68; color: var(--ink-soft); }
        .frame-text p + p { margin-top: .85rem; }
        .frame-quote { font-family: 'Playfair Display', serif; font-style: italic; color: var(--orange); font-size: 1.12em; }

        /* Timecode : repère discret, comme sur une table de montage */
        /* ---- SOUVENIR : le témoignage d'enfance ---- */
        .souvenir { background: var(--ice); padding: clamp(4rem, 10vw, 8.5rem) 0; }
        .souvenir-wrap { max-width: 900px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2rem); text-align: center; }
        .souvenir-kicker { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700;
            letter-spacing: .3em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.4rem; }
        .souvenir-quote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
            font-size: clamp(1.35rem, 2.9vw, 2.25rem); line-height: 1.4; color: var(--ink); margin: 0 0 1.6rem; }
        .souvenir-quote::before { content: "\00AB"; display: block; font-size: 2.4em; line-height: .5; font-style: normal;
            color: var(--orange); margin-bottom: .3em; }
        .souvenir-src { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: .8rem;
            font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

        /* ---- LE MUR DE PUISSANCE : module signature, se construit au scroll ---- */
        .wall { background: var(--paper); padding: clamp(4rem, 9vw, 8rem) 0; overflow: hidden; }
        .wall-wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2rem); }
        .wall-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
        .wall-kicker { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700;
            letter-spacing: .3em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
        .wall-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.4rem);
            line-height: 1.06; color: var(--ink); margin: 0 0 1.2rem; }
        .wall-lead { font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.7; color: var(--ink-soft); max-width: 700px; margin: 0 auto; }

        /* Le mur : chaque barre monte à sa hauteur, la plus haute en dernier */
        /* --wall-max = hauteur de la barre la plus haute. Les barres portent un RATIO
           (--h) et non un pourcentage : un pourcentage se resoudrait contre la hauteur
           du parent, qui est auto ici (align-items:flex-end n’etire pas les items),
           donc les barres restaient a 0 et la section paraissait vide. */
        .wall-chart { --wall-max: clamp(160px, 26vh, 260px);
            display: flex; align-items: flex-end; justify-content: center; gap: clamp(.75rem, 3vw, 2.5rem);
            padding-top: 1rem; }
        .wall-bar { flex: 1 1 0; max-width: 190px; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
        .wall-brick { width: 100%; border-radius: 4px 4px 0 0; height: 0;
            background: linear-gradient(180deg, color-mix(in srgb, var(--orange) 82%, transparent), var(--orange));
            transition: height 1.1s cubic-bezier(.2,.8,.2,1); }
        .wall.is-in .wall-brick { height: calc(var(--h, .7) * var(--wall-max)); }
        @media (prefers-reduced-motion: reduce) { .wall-brick { transition: none; } }
        .wall-h { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(1.35rem, 3vw, 2.2rem);
            line-height: 1; color: var(--orange); }
        .wall-meta { text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem;
            letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.35; }
        .wall-year { display: block; font-weight: 700; color: var(--ink); letter-spacing: .16em; }
        .wall-base { height: 6px; background: var(--rule); border-radius: 3px; margin-top: -3px; }
        .wall-note { text-align: center; font-family: 'Playfair Display', serif; font-style: italic;
            font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 700px; margin: clamp(2rem, 4vw, 3rem) auto 0; }
        .wall-note strong { color: var(--orange); font-weight: 600; font-style: normal; }

        /* ---- ATTRACTIONS : bande de petites cartes ---- */
        .attractions { background: var(--ice); padding: clamp(4rem, 9vw, 8rem) 0; }
        .attractions-wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2rem); }
        .attractions-head { text-align: center; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
        .attractions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
        .attraction { background: #fff; border: 1px solid var(--rule); border-radius: 12px;
            padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; gap: .7rem;
            box-shadow: 0 10px 28px color-mix(in srgb, var(--taupe-dark) 7%, transparent); }
        .attraction i { font-size: 1.9rem; color: var(--orange); }
        .attraction-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
            letter-spacing: .05em; font-size: 1.1rem; line-height: 1.2; color: var(--ink); margin: 0; }
        .attraction-text { font-size: .98rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

        /* ---- PALMARÈS : le sport reprend le dessus ---- */
        .palmares-vernets { background: var(--paper); padding: clamp(4rem, 9vw, 8rem) 0; }
        .palmares-vernets .attractions-wrap { max-width: 1000px; }
        .pv-list { list-style: none; padding: 0; margin: 0; }
        .pv-item { display: flex; align-items: baseline; gap: 1.1rem; padding: 1.15rem .25rem;
            border-bottom: 1px dotted var(--rule); }
        .pv-item:first-child { border-top: 1px dotted var(--rule); }
        .pv-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(1.2rem, 2.3vw, 1.7rem); color: var(--ink); }
        .pv-fill { flex: 1; }
        .pv-note { font-family: 'Barlow Condensed', sans-serif; font-size: .84rem; font-weight: 700;
            letter-spacing: .16em; text-transform: uppercase; color: var(--orange); text-align: right; }

        /* ---- FINALE : Milton, l'Ange blanc ---- */
        .finale { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
            text-align: center; overflow: hidden; background: var(--ink); }
        .finale-media { position: absolute; inset: 0; z-index: 0; }
        .finale-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.75); }
        .finale-media::after { content: ""; position: absolute; inset: 0; background: rgba(18,14,10,.45); }
        .finale-inner { position: relative; z-index: 1; max-width: 860px; padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2rem); color: #fff; }
        .finale-kicker { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700;
            letter-spacing: .3em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.3rem; }
        .finale-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2.2rem, 6vw, 4.4rem);
            line-height: 1.04; margin: 0 0 1.4rem; }
        .finale-text { font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.68; color: rgba(255,255,255,.86); }
        .finale-text p + p { margin-top: .9rem; }
        .finale-sign { font-family: 'Playfair Display', serif; font-style: italic; color: var(--orange); font-size: 1.1em; }

        /* ---- Responsive ---- */
        @media (max-width: 991.98px) {
            .attractions-grid { grid-template-columns: 1fr; }
            .wall-chart { --wall-max: clamp(140px, 22vh, 200px); gap: .6rem; }
        }
        @media (max-width: 767.98px) {
            .frame { min-height: 88vh; }
            .frame-inner { padding: 2.25rem 1.1rem; }
            .frame--right .frame-inner, .frame--center .frame-inner { justify-content: stretch; }
            .frame-card { max-width: 100%; padding: 1.35rem 1.15rem; }
            .souvenir, .wall, .attractions, .palmares-vernets { padding: 3.25rem 0; }
            .finale { min-height: 80vh; }
            .wall-chart { --wall-max: 120px; gap: .4rem; padding-top: .5rem; }
            .wall-h { font-size: 1.05rem; }
            .wall-meta { font-size: .66rem; letter-spacing: .06em; }
            .pv-item { flex-wrap: wrap; gap: .25rem .8rem; }
            .pv-fill { display: none; }
            .pv-note { width: 100%; text-align: left; }
        }
