        :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 03 — IDENTITÉ « PROGRAMME DE GALA »
           Papier crème, actes numérotés, filets ornementaux, grandes
           années en sérif ; rupture sombre pour 1973.
        ══════════════════════════════════════════════════════════ */
        .c100-gala {
            /* Palette alignée sur le site et sur les épisodes 1-2 (demande du chef de projet) :
               le crème + or d’origine est remplacé par le papier clair de l’épisode 2 et
               l’orange de la charte. Seules ces variables changent : la mise en page
               « actes de programme », validée par le client, est conservée telle quelle. */
            --paper:        #faf8f4;              /* ex-crème #f6f1e7 — papier de l’épisode 2 */
            --paper-deep:   var(--taupe-light);   /* ex-#efe6d6 — bandes alternées */
            --ink:          var(--taupe-dark);    /* ex-#2b241e — titres */
            --ink-soft:     var(--taupe);         /* ex-#4a4138 — corps de texte */
            --accent:       var(--orange);        /* ex-or #a8833c — accents */
            --accent-soft:  color-mix(in srgb, var(--orange) 34%, transparent);
            --accent-faint: color-mix(in srgb, var(--orange) 13%, transparent);
            --rule:         var(--taupe-border);  /* filets et contours de blocs */
            background: var(--paper); color: var(--ink);
        }

        /* Révélations (fondu + montée) */
        [data-reveal] { opacity: 0; transform: translateY(34px);
            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; } }

        /* ---- ACTE (section éditoriale) ---- */
        .gala-acte { position: relative; padding: clamp(4rem, 9vw, 8rem) 0; overflow: hidden; }
        .gala-acte--deep { background: var(--paper-deep); }
        .acte-wrap { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

        /* En-tête d'acte : eyebrow + ornement + titre */
        .acte-head { text-align: center; margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
        .acte-eyebrow { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .84rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
        .acte-orn { display: flex; align-items: center; justify-content: center; gap: .9rem; color: var(--accent); font-size: .8rem; line-height: 1; }
        .acte-orn::before, .acte-orn::after { content: ""; width: 64px; height: 1px; background: var(--accent-soft); }
        .acte-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2.1rem, 4.8vw, 3.8rem); line-height: 1.06; color: var(--ink); max-width: 22ch; margin: 1.1rem auto 0; }
        .acte-lead { font-size: clamp(1.02rem, 1.35vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); max-width: 720px; margin: 1.25rem auto 0; }

        /* Grande année décorative en marge */
        .acte-year { position: absolute; z-index: 0; top: clamp(.5rem, 3vw, 2rem); left: clamp(-1rem, -.5vw, 0rem); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: clamp(5rem, 15vw, 11rem); line-height: 1; color: var(--accent-faint); pointer-events: none; user-select: none; }
        .acte-year--right { left: auto; right: clamp(-1rem, -.5vw, 0rem); }

        /* Grille éditoriale image + texte */
        .acte-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
        .acte-grid--flip .acte-figure { order: 2; }
        .acte-text { font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.72; color: var(--ink-soft); }
        .acte-text p + p { margin-top: 1rem; }
        .acte-text--drop > p:first-child::first-letter { font-family: 'Playfair Display', serif; font-size: 3.3em; float: left; line-height: .82; padding: .04em .12em 0 0; color: var(--accent); }
        .acte-exergue { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.22em; color: var(--accent); }

        /* Figure « tirage monté » (cadre blanc de programme) */
        .acte-figure { margin: 0; background: #fff; padding: .85rem .85rem 1rem; box-shadow: 0 18px 44px color-mix(in srgb, var(--taupe-dark) 16%, transparent); border: 1px solid color-mix(in srgb, var(--taupe-dark) 6%, transparent); }
        /* Ratio natif conservé : les photos d’archive du chapitre vont du panoramique (2.26)
           au portrait (0.75). Un cadrage 4/3 imposé coupait les drapeaux en haut et les
           obstacles en bas (même problème que celui signalé sur les épisodes 1 et 2). */
        .acte-figure img { display: block; width: 100%; height: auto; filter: grayscale(1); }
        /* Crédit photo, discret, à la suite de la légende. */
        .acte-credit { display: block; font-family: 'Barlow Condensed', sans-serif; font-style: normal; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-top: .3rem; }
        .acte-figure figcaption { font-family: 'Playfair Display', serif; font-style: italic; font-size: .92rem; color: var(--ink-soft); text-align: center; padding-top: .8rem; }

        /* ---- À L'AFFICHE (liste façon programme de soirée) ---- */
        .affiche-list { list-style: none; max-width: 760px; margin: 0 auto; padding: 0; }
        .affiche-item { display: flex; align-items: baseline; gap: 1.1rem; padding: 1.15rem .25rem; border-bottom: 1px dotted var(--accent-soft); }
        .affiche-item:first-child { border-top: 1px dotted var(--accent-soft); }
        .affiche-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(1.25rem, 2.4vw, 1.8rem); color: var(--ink); }
        .affiche-fill { flex: 1; }
        .affiche-from { font-family: 'Barlow Condensed', sans-serif; font-size: .84rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
        .affiche-note { text-align: center; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 620px; margin: clamp(1.75rem, 4vw, 2.5rem) auto 0; }
        .affiche-note strong { color: var(--accent); font-weight: 600; }

        /* ---- CITATION D'ARCHIVE ---- */
        .gala-quote { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; padding-top: clamp(1.5rem, 4vw, 2.5rem); }
        .gala-quote blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(1.35rem, 2.9vw, 2.2rem); line-height: 1.38; color: var(--ink); margin: 0; }
        .gala-quote blockquote::before { content: "«"; display: block; font-size: 2.2em; line-height: .6; color: var(--accent); margin-bottom: .35em; font-style: normal; }
        .gala-quote-src { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin-top: 1.35rem; }

        /* ---- CONTRASTE HIER / AUJOURD'HUI ---- */
        .contrast-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; margin-top: clamp(2rem, 5vw, 3rem); background: #fff; }
        .contrast-cell { padding: clamp(1.75rem, 4vw, 3rem); }
        .contrast-cell--hier { background: var(--ink); color: color-mix(in srgb, var(--taupe-light) 88%, transparent); }
        .contrast-label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
        .contrast-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.5; margin: 0 0 1rem; }
        .contrast-note { font-size: .98rem; line-height: 1.6; opacity: .85; }
        .contrast-list { list-style: none; padding: 0; margin: 0; }
        .contrast-list li { display: flex; align-items: baseline; gap: .7rem; padding: .55rem 0; font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--ink-soft); border-bottom: 1px dotted var(--accent-faint); }
        .contrast-list li:last-child { border-bottom: 0; }
        .contrast-list i { color: var(--accent); font-size: 1.05rem; flex-shrink: 0; transform: translateY(1px); }

        /* ---- LES DEUX GRANDES ANNÉES (1963 / 1983) ---- */
        .palmares { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); max-width: 980px; margin: 0 auto; }
        .palmares-cell { text-align: center; padding: clamp(1.5rem, 3.5vw, 2.5rem) 1rem; border: 1px solid var(--rule); border-radius: 6px; background: rgba(255,255,255,.55); }
        .palmares-year { display: block; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; color: var(--accent); }
        .palmares-text { font-size: clamp(.98rem, 1.25vw, 1.12rem); line-height: 1.6; color: var(--ink-soft); max-width: 34ch; margin: 1rem auto 0; }

        /* ---- 1973, RUPTURE SOMBRE ---- */
        .gala-dark { background: #2b2521; color: color-mix(in srgb, var(--taupe-light) 90%, transparent); padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; }
        .gala-dark::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: #000; }
        .gala-dark .acte-eyebrow { color: var(--orange); }
        .gala-dark .acte-orn { color: var(--orange); }
        .gala-dark .acte-orn::before, .gala-dark .acte-orn::after { background: rgba(220, 79, 10, .4); }
        .gala-dark .acte-title { color: var(--taupe-light); }
        .gala-dark .acte-text { color: color-mix(in srgb, var(--taupe-light) 78%, transparent); }
        .gala-dark .acte-figure { background: #3a322c; border-color: color-mix(in srgb, var(--taupe-light) 8%, transparent); box-shadow: 0 22px 55px rgba(0,0,0,.45); }
        .gala-dark .acte-figure figcaption { color: color-mix(in srgb, var(--taupe-light) 65%, transparent); }
        .gala-dark .acte-figure img { filter: grayscale(1) brightness(.92); }
        .gala-dark .acte-year { color: color-mix(in srgb, var(--taupe-light) 6%, transparent); }
        .dark-band { display: block; width: 130px; height: 12px; background: #000; border: 1px solid color-mix(in srgb, var(--taupe-light) 18%, transparent); margin: 0 auto clamp(1.75rem, 4vw, 2.5rem); transform: rotate(-2deg); }

        /* ---- ÉPILOGUE ---- */
        .gala-epilogue { background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); padding: clamp(4.5rem, 10vw, 8.5rem) 0; text-align: center; }
        .epilogue-wrap { max-width: 860px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
        .epilogue-kicker { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem; }
        .epilogue-quote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(1.55rem, 3.4vw, 2.7rem); line-height: 1.3; color: var(--ink); margin: 0 0 1.5rem; }
        .epilogue-note { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.65; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

        /* ---- Responsive gala ---- */
        @media (max-width: 991.98px) {
            .acte-grid { grid-template-columns: 1fr; gap: 2rem; }
            .acte-grid--flip .acte-figure { order: 0; }
            .acte-year { font-size: clamp(4rem, 18vw, 7rem); }
        }
        @media (max-width: 767.98px) {
            .gala-acte { padding: 3.25rem 0; }
            .gala-dark, .gala-epilogue { padding: 3.5rem 0; }
            .acte-figure { transform: none; }
            .acte-grid--flip .acte-figure { transform: none; }
            .contrast-grid, .palmares { grid-template-columns: 1fr; }
            .affiche-item { flex-wrap: wrap; gap: .3rem .8rem; }
            .affiche-fill { display: none; }
            .affiche-from { width: 100%; }
        }