/* =========================================================
   LaserMS3D — Page Organisateurs de marchés
   Expérience immersive : intro cinématique, simulateur de
   gravure, scrollytelling, galerie parallaxe, fiche stand.
   Dépend des variables globales définies dans styles.css.
   ========================================================= */

/* =========================================
   INTRO CINÉMATIQUE
   ========================================= */

.cine-text-stroke,
.cine-text-fill {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cine-text-stroke {
    fill: none;
    stroke: url(#cineGold);
    stroke-width: 1.4;
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
}

.cine.cine-run .cine-text-stroke {
    animation: cineDraw 1.7s cubic-bezier(.65, 0, .35, 1) forwards;
}

.cine-text-fill {
    fill: #f0f0f5;
    opacity: 0;
}

.cine.cine-run .cine-text-fill {
    animation: cineFill .8s ease 1.45s forwards;
}

.cine-underline {
    stroke: url(#cineGold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    opacity: .9;
}

.cine.cine-run .cine-underline {
    animation: cineUnderline .9s cubic-bezier(.65, 0, .35, 1) 1.15s forwards;
}

.cine-dot {
    fill: #ffe9c8;
    opacity: 0;
}

.cine.cine-run .cine-dot {
    animation: cineDot .9s cubic-bezier(.65, 0, .35, 1) 1.15s forwards;
}

@keyframes cineDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes cineFill {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cineUnderline {
    from { stroke-dashoffset: 400; }
    to { stroke-dashoffset: 0; }
}

@keyframes cineDot {
    0% { opacity: 0; transform: translateX(0); }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% { opacity: 0; transform: translateX(400px); }
}

/* =========================================
   CONSEIL ORDINATEUR (téléphone)
   ========================================= */

.orga-phone-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 14px 11px 16px;
    background: rgba(22, 18, 12, 0.97);
    border-bottom: 1px solid rgba(232, 160, 74, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.orga-phone-banner-text {
    flex: 1;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.orga-phone-banner-text strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.orga-phone-banner-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin: -2px -4px 0 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.orga-phone-banner-close:hover,
.orga-phone-banner-close:focus-visible {
    color: var(--text-primary);
    background: rgba(232, 160, 74, 0.15);
    outline: none;
}

body.orga-phone-notice {
    --orga-phone-banner-h: 76px;
}

body.orga-phone-notice .orga-nav {
    top: var(--orga-phone-banner-h);
}

body.orga-phone-notice .read-progress {
    top: var(--orga-phone-banner-h);
}

/* =========================================
   CURSEUR LASER (desktop pointer fin)
   ========================================= */

.laser-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 233, 200, .95) 0%, rgba(232, 160, 74, .55) 38%, transparent 72%);
    box-shadow: 0 0 18px 6px rgba(232, 160, 74, .25);
    pointer-events: none;
    z-index: 9000;
    opacity: 0;
    transition: opacity .3s ease, transform .18s ease;
    will-change: transform;
}

.laser-cursor.on {
    opacity: 1;
}

.laser-cursor.boost {
    transform: scale(2.1);
}

.laser-spark {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ffd9a0;
    pointer-events: none;
    z-index: 8999;
    animation: sparkFall .55s ease-out forwards;
}

@keyframes sparkFall {
    from { opacity: .9; transform: translate(0, 0) scale(1); }
    to { opacity: 0; transform: translate(var(--sx, 6px), var(--sy, 14px)) scale(.4); }
}

@media (hover: none), (pointer: coarse) {
    .laser-cursor { display: none; }
}

/* =========================================
   HERO
   ========================================= */

.orga-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 24px 90px;
}

.orga-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orga-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) brightness(.8);
}

.orga-hero-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 38%, rgba(232, 160, 74, .12) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10, 10, 15, .82) 0%, rgba(10, 10, 15, .58) 45%, rgba(10, 10, 15, .96) 100%);
}

.orga-laser {
    position: absolute;
    height: 1px;
    width: 200%;
    left: -100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .2;
    animation: orgaSweep 9s ease-in-out infinite;
}

.orga-laser-1 { top: 22%; animation-delay: 0s; }
.orga-laser-2 { top: 46%; animation-delay: 3s; }
.orga-laser-3 { top: 68%; animation-delay: 6s; }

@keyframes orgaSweep {
    0%, 100% { transform: translateX(-18%); opacity: 0; }
    18% { opacity: .28; }
    50% { opacity: .18; }
    82% { opacity: .28; }
    92% { transform: translateX(18%); opacity: 0; }
}

.orga-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
}

.orga-hero-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid rgba(232, 160, 74, .3);
    border-radius: 100px;
    background: rgba(232, 160, 74, .08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 28px;
}

.orga-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 26px;
    text-wrap: balance;
}

.orga-hero-sub {
    font-size: 1.12rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 42px;
    line-height: 1.8;
}

.orga-hero-sub strong { color: var(--text-primary); }

.orga-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.orga-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Bannière de découverte : page Organisateurs 2.0 (expérience 3D) */
.orga-v2-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding: 11px 20px 11px 12px;
    border-radius: 100px;
    border: 1px solid rgba(232, 160, 74, 0.35);
    background: linear-gradient(110deg, rgba(232, 160, 74, 0.12), rgba(232, 160, 74, 0.04));
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    max-width: min(92vw, 640px);
}
.orga-v2-banner:hover {
    border-color: var(--accent);
    background: linear-gradient(110deg, rgba(232, 160, 74, 0.2), rgba(232, 160, 74, 0.07));
    transform: translateY(-2px);
}
.orga-v2-badge {
    flex-shrink: 0;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 100px;
}
.orga-v2-text strong {
    color: var(--accent-light);
}
.orga-v2-arrow {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.05rem;
    transition: transform 0.25s ease;
}
.orga-v2-banner:hover .orga-v2-arrow {
    transform: translateX(4px);
}
@media (max-width: 560px) {
    .orga-v2-banner {
        flex-direction: column;
        gap: 8px;
        border-radius: 18px;
        text-align: center;
        padding: 14px 18px;
    }
}

.orga-dot {
    color: var(--accent);
    font-size: .6rem;
}

.orga-scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 26px;
    height: 44px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.orga-scroll-line {
    width: 2px;
    height: 10px;
    border-radius: 2px;
    background: var(--accent);
    animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(16px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* =========================================
   BANDEAU DÉFILANT
   ========================================= */

.orga-marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: 16px 0;
    position: relative;
    z-index: 2;
}

.orga-marquee-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.orga-marquee-track span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.orga-marquee-track i {
    font-style: normal;
    color: var(--accent);
    font-size: .65rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================
   SECTIONS COMMUNES
   ========================================= */

.orga-section {
    padding: 110px 0;
    position: relative;
}

.orga-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.orga-section-head .section-description {
    margin-top: 8px;
}

/* =========================================
   SIMULATEUR DE GRAVURE
   ========================================= */

.orga-simu {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 160, 74, .06) 0%, transparent 55%),
        var(--bg-primary);
}

.simu-stage {
    max-width: 880px;
    margin: 0 auto;
}

.simu-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    background: #15171c;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    transition: box-shadow .5s ease;
}

.simu-frame.engraving {
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(232, 160, 74, .18);
}

.simu-frame canvas {
    display: block;
    width: 100%;
    height: auto;
}

.simu-hud {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: linear-gradient(180deg, rgba(10, 10, 15, .55), transparent);
    pointer-events: none;
}

.simu-hud-status {
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    white-space: nowrap;
}

.simu-hud-progress {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.simu-hud-progress i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: var(--gradient-accent);
    transition: width .15s linear;
}

.simu-hud-percent {
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 44px;
    text-align: right;
}

.simu-done-msg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #ffe9c8;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
    animation: simuDoneIn .8s ease both;
    padding: 0 16px;
}

@keyframes simuDoneIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

.simu-form {
    margin-top: 26px;
    text-align: center;
}

.simu-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.simu-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 620px;
    margin: 0 auto;
}

.simu-row input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-hover);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.simu-row input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232, 160, 74, .14);
}

.simu-hint {
    margin-top: 14px;
    font-size: .85rem;
    color: var(--text-muted);
}

/* =========================================
   ATOUTS + COMPTEURS
   ========================================= */

.orga-atouts {
    background: var(--bg-secondary);
}

.atout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.atout-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 30px;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.atout-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 160, 74, .35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .35), 0 0 30px rgba(232, 160, 74, .08);
}

.atout-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(232, 160, 74, .1);
    border: 1px solid rgba(232, 160, 74, .2);
    margin-bottom: 22px;
}

.atout-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.atout-card p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.75;
}

.atout-card p strong { color: var(--text-primary); }

.counter-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-card);
    padding: 38px 26px;
}

.counter {
    text-align: center;
}

.counter-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.15;
}

.counter-label {
    display: block;
    margin-top: 6px;
    font-size: .85rem;
    color: var(--text-muted);
}

/* =========================================
   VIDÉOS — format vertical TikTok / Reels (9:16)
   ========================================= */

.orga-videos .container {
    max-width: 1100px;
}

.video-grid {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    padding: 8px 24px 24px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 160, 74, .35) transparent;
}

.video-grid::-webkit-scrollbar {
    height: 6px;
}

.video-grid::-webkit-scrollbar-thumb {
    background: rgba(232, 160, 74, .35);
    border-radius: 6px;
}

.video-card {
    margin: 0;
    flex: 0 0 auto;
    width: min(272px, 78vw);
    scroll-snap-align: center;
}

.video-shell {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    aspect-ratio: 9 / 16;
    background: #0a0a0f;
    box-shadow: 0 22px 56px rgba(0, 0, 0, .5);
}

.video-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-card figcaption {
    margin-top: 14px;
    font-size: .92rem;
    color: var(--text-secondary);
    text-align: center;
}

/* =========================================
   AVANT / APRÈS
   ========================================= */

.orga-ba {
    background: var(--bg-secondary);
}

.ba-layout {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 320px);
    gap: 56px;
    align-items: center;
}

.ba-text .section-tag { margin-bottom: 16px; }

.ba-points {
    list-style: none;
    margin-top: 22px;
    padding: 0;
}

.ba-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.ba-points li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-size: .7rem;
}

.ba-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    background: #0a0a0f;
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
    margin-inline: auto;
    width: 100%;
    max-width: 320px;
}

.ba-wrap--vertical {
    aspect-ratio: 9 / 16;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    background: #0a0a0f;
}

.ba-before {
    clip-path: inset(0 0 0 var(--ba, 50%));
}

.ba-beam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ba, 50%);
    width: 0;
    z-index: 2;
    outline: none;
}

.ba-beam::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background: linear-gradient(180deg, transparent, #ffe9c8 18%, var(--accent) 50%, #ffe9c8 82%, transparent);
    box-shadow: 0 0 14px 3px rgba(232, 160, 74, .55);
}

.ba-beam:focus-visible::before {
    box-shadow: 0 0 18px 6px rgba(232, 160, 74, .8);
}

.ba-knob {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 10, 15, .8);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 0 22px rgba(232, 160, 74, .35);
}

.ba-chip {
    position: absolute;
    bottom: 14px;
    z-index: 1;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(10, 10, 15, .72);
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.ba-chip-left { left: 14px; color: var(--accent); border-color: rgba(232, 160, 74, .3); }
.ba-chip-right { right: 14px; }

/* =========================================
   SCROLLYTELLING « 4 ACTES »
   ========================================= */

.story {
    padding: 0;
    height: 380vh;
}

.story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(232, 160, 74, .05) 0%, transparent 50%),
        var(--bg-primary);
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.story-left .section-title { margin-bottom: 34px; }

.story-steps {
    position: relative;
    min-height: 240px;
}

.story-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}

.story-step.active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.story-num {
    font-family: 'Courier New', monospace;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
}

.story-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    margin: 10px 0 14px;
}

.story-step p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 460px;
}

.story-rail {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.story-dot {
    width: 34px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
    transition: background .4s ease;
}

.story-dot.active {
    background: var(--gradient-accent);
}

.story-right {
    position: relative;
    aspect-ratio: 9 / 16;
    max-height: 72vh;
    max-width: 360px;
    width: 100%;
    margin-inline: auto;
    transition: max-width .45s ease, aspect-ratio .45s ease;
}

/* Étape machines : format plus large pour voir les photos produit entières */
.story-right:has(.story-visual--machines.active) {
    aspect-ratio: 4 / 5;
    max-width: min(440px, 42vw);
    max-height: min(78vh, 720px);
}

.story-visual {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    opacity: 0;
    transform: scale(.96);
    transition: opacity .6s ease, transform .6s ease;
    background: var(--bg-card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.story-visual.active {
    opacity: 1;
    transform: none;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-visual--vertical img {
    object-fit: contain;
    background: #0a0a0f;
}

/* Parc machines (étape 3) */
.story-visual--machines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 52px 16px 16px;
    background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
    overflow-y: auto;
}

.machines-duo {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
    min-height: 0;
}

.machine-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.machine-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    background: #f5f5f7;
}

.machine-card-media picture,
.machine-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.machine-card-media picture {
    position: absolute;
    inset: 0;
}

.machine-card figcaption {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.35;
}

.machine-card-fallback {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(232, 160, 74, .12) 0%, transparent 55%),
        var(--bg-card);
}

.machine-card-media--fallback picture,
.machine-card-media--fallback img {
    display: none;
}

.machine-card-media--fallback .machine-card-fallback {
    display: flex;
}

.machine-card-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.machine-card-model {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.story-visual--machines .story-hud {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
    margin-top: 4px;
}

.story-visual--machines .story-hud-line {
    position: static;
}

.story-visual picture {
    position: absolute;
    inset: 0;
    display: block;
}

.story-img-prep {
    filter: grayscale(1) contrast(1.35) brightness(1.05);
}

.story-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(232, 160, 74, .25) 50%, transparent 100%);
    background-size: 100% 220px;
    background-repeat: no-repeat;
    animation: storyScan 2.6s linear infinite;
    mix-blend-mode: screen;
}

@keyframes storyScan {
    from { background-position: 0 -220px; }
    to { background-position: 0 calc(100% + 220px); }
}

.story-visual-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(10, 10, 15, .72);
    border: 1px solid rgba(232, 160, 74, .3);
    color: var(--accent);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.story-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.story-hud-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    letter-spacing: 1px;
    color: #ffe9c8;
    background: rgba(10, 10, 15, .68);
    border: 1px solid rgba(232, 160, 74, .35);
    border-radius: 8px;
    padding: 6px 12px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
}

.story-hud-1 { right: 16px; top: 52%; }
.story-hud-2 { left: 16px; bottom: 18px; }

/* Sans JS ou écran étroit : étapes empilées, visuels masqués sauf machine */
.story.story-flat {
    height: auto;
    padding: 110px 0;
}

.story.story-flat .story-sticky {
    position: static;
    height: auto;
    overflow: visible;
}

.story.story-flat .story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
}

.story.story-flat .story-steps {
    min-height: 0;
    display: grid;
    gap: 28px;
}

.story.story-flat .story-step {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border-left: 2px solid rgba(232, 160, 74, .35);
    padding-left: 20px;
}

.story.story-flat .story-rail { display: none; }

.story.story-flat .story-right {
    max-height: none;
}

.story.story-flat .story-visual {
    display: none;
}

.story.story-flat .story-visual.active {
    display: block;
    position: relative;
    opacity: 1;
    transform: none;
}

.story.story-flat .story-visual--machines.active {
    display: flex;
}

/* =========================================
   GALERIE MARQUEE
   ========================================= */

.orga-gal {
    background: var(--bg-secondary);
    overflow: hidden;
    padding-bottom: 130px;
}

.gal-unique-badge {
    display: inline-block;
    margin: 20px auto 0;
    padding: 10px 18px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(232, 160, 74, .35);
    border-radius: 999px;
    background: rgba(232, 160, 74, .08);
    box-shadow: 0 0 24px rgba(232, 160, 74, .1);
}

.gal-row {
    --gal-h: 260px;
    overflow: hidden;
    margin-bottom: 22px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gal-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: galLeft 52s linear infinite;
}

.gal-row[data-direction="right"] .gal-track {
    animation-name: galRight;
}

.gal-row:hover .gal-track {
    animation-play-state: paused;
}

@keyframes galLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes galRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.gal-item {
    margin: 0;
    flex-shrink: 0;
    height: var(--gal-h);
    width: auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    background: #0a0a0f;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

/* Plaques 14 × 22 cm — photos produit 1400 × 2100 (2:3) */
.gal-item--vertical {
    aspect-ratio: 2 / 3;
}

/* Plaques 20 × 20 cm — format carré */
.gal-item--square {
    aspect-ratio: 1 / 1;
}

/* Paysages produit — ex. 2CV, port des barques */
.gal-item--landscape {
    aspect-ratio: 3 / 2;
}

.gal-item--panorama {
    aspect-ratio: 7 / 4;
}

.gal-item--wide {
    aspect-ratio: 4 / 3;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gal-item:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(232, 160, 74, .4);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .45), 0 0 26px rgba(232, 160, 74, .12);
}

/* =========================================
   MON STAND — photos du barnum sur marché
   ========================================= */

.orga-stand {
    background:
        radial-gradient(ellipse at 75% 40%, rgba(232, 160, 74, .07) 0%, transparent 52%),
        var(--bg-primary);
    overflow: hidden;
}

.stand-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.stand-intro .section-tag { margin-bottom: 16px; }

.stand-points {
    list-style: none;
    margin: 22px 0 28px;
    padding: 0;
}

.stand-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.65;
}

.stand-points li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: .65rem;
}

.stand-points li strong { color: var(--text-primary); }

.stand-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.stand-photo {
    margin: 0;
}

.stand-photo-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    background: #0a0a0f;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.stand-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    opacity: 1;
    transition: opacity .4s ease;
}

.stand-photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease;
}

.stand-photo--wide .stand-photo-frame img {
    aspect-ratio: 3 / 2;
}

.stand-photo:hover .stand-photo-frame {
    transform: translateY(-6px);
    border-color: rgba(232, 160, 74, .4);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 36px rgba(232, 160, 74, .12);
}

.stand-photo:hover .stand-photo-frame img {
    transform: scale(1.04);
}

.stand-photo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(10, 10, 15, .78);
    border: 1px solid rgba(232, 160, 74, .35);
    color: var(--accent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .45s ease, transform .45s ease;
}

.stand-photo.aos-in .stand-photo-tag,
.stand-photo:hover .stand-photo-tag {
    opacity: 1;
    transform: none;
}

.stand-photo figcaption {
    margin-top: 14px;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    text-align: center;
}

@media (max-width: 1024px) {
    .stand-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .stand-intro { text-align: center; }
    .stand-points { display: inline-block; text-align: left; }
    .stand-intro .btn { justify-content: center; width: 100%; max-width: 320px; }
}

@media (max-width: 640px) {
    .stand-gallery { grid-template-columns: 1fr; }
    .stand-photo-tag { opacity: 1; transform: none; }
}

/* =========================================
   FORMATS & TARIFS
   ========================================= */

.orga-formats {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 160, 74, .06) 0%, transparent 55%),
        var(--bg-primary);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.format-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.format-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 160, 74, .35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .35), 0 0 30px rgba(232, 160, 74, .08);
}

.format-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #0a0a0f;
    overflow: hidden;
}

.format-card-media--vertical {
    aspect-ratio: 2 / 3;
}

.format-card-media--square {
    aspect-ratio: 1 / 1;
}

.format-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.format-card:hover .format-card-media img {
    transform: scale(1.04);
}

.format-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 18px rgba(232, 160, 74, .35);
}

.format-card-body {
    padding: 26px 24px 30px;
}

.format-card-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.format-card-dims {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.format-card-desc {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   FICHE PRATIQUE
   ========================================= */

.fiche-card {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(232, 160, 74, .25);
    border-radius: 22px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 160, 74, .07) 0%, transparent 55%),
        var(--bg-card);
    padding: 44px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.fiche-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid var(--border-hover);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.fiche-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.fiche-sub {
    font-size: .85rem;
    color: var(--text-muted);
}

.fiche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

.fiche-item h3 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.fiche-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fiche-item li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.fiche-item li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: .55rem;
    color: var(--accent);
}

.fiche-item li strong { color: var(--text-primary); }

.fiche-item a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 160, 74, .4);
}

.fiche-item a:hover { color: var(--accent); }

.fiche-print-banner,
.fiche-print-footer {
    display: none;
}

.fiche-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-hover);
}

.fiche-export-hint {
    margin: 0;
    max-width: 420px;
    text-align: center;
    font-size: .8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* =========================================
   MON SITE INTERNET
   ========================================= */

.orga-site {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 160, 74, .06) 0%, transparent 50%),
        var(--bg-primary);
    overflow: hidden;
}

.site-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
}

.site-intro .section-tag { margin-bottom: 16px; }

.site-url {
    margin: 20px 0 24px;
}

.site-url a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid rgba(232, 160, 74, .35);
    transition: color .3s ease, border-color .3s ease;
}

.site-url a:hover {
    color: var(--accent-light);
    border-color: var(--accent);
}

.site-perks {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.site-perks li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.6;
}

.site-perks li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: .65rem;
}

/* Façade navigateur */
.site-browser {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-hover);
    background: var(--bg-card);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04);
    transition: transform .4s ease, box-shadow .4s ease;
}

.site-browser:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 40px rgba(232, 160, 74, .08);
}

.site-browser-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.site-browser-dots {
    display: flex;
    gap: 6px;
}

.site-browser-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.site-browser-dots i:first-child { background: rgba(232, 100, 90, .55); }
.site-browser-dots i:nth-child(2) { background: rgba(232, 180, 74, .55); }
.site-browser-dots i:nth-child(3) { background: rgba(90, 200, 120, .45); }

.site-browser-bar {
    flex: 1;
    font-size: .78rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    letter-spacing: .3px;
}

.site-browser-screen {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    text-decoration: none;
}

.site-browser-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s ease;
}

.site-browser-screen:hover img {
    transform: scale(1.03);
}

.site-browser-cta {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(10, 10, 15, .82);
    border: 1px solid rgba(232, 160, 74, .45);
    color: var(--accent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .3s ease, color .3s ease;
}

.site-browser-screen:hover .site-browser-cta {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    border-color: transparent;
}

/* Grille des pages du site */
.site-pages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.site-page-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    text-decoration: none;
    color: inherit;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-page-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 160, 74, .4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35), 0 0 24px rgba(232, 160, 74, .08);
}

.site-page-card--highlight {
    border-color: rgba(232, 160, 74, .35);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(232, 160, 74, .1) 0%, transparent 55%),
        var(--bg-card);
}

.site-page-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(232, 160, 74, .1);
    border: 1px solid rgba(232, 160, 74, .2);
    margin-bottom: 4px;
}

.site-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.site-page-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =========================================
   RÉSEAUX SOCIAUX
   ========================================= */

.orga-social {
    background: var(--bg-secondary);
}

.social-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 230px;
    padding: 36px 44px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.social-card svg { color: var(--accent); }

.social-handle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
}

.social-net {
    font-size: .78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.social-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 160, 74, .4);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .4), 0 0 30px rgba(232, 160, 74, .1);
}

/* =========================================
   FORMULAIRE D'INVITATION
   ========================================= */

.orga-invite {
    position: relative;
    overflow: hidden;
}

.orga-invite::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: .14;
    pointer-events: none;
}

.invite-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 52px;
    max-width: 1060px;
    margin: 0 auto;
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    background: var(--bg-card);
    padding: 52px;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .45);
}

.invite-intro .section-title { margin-bottom: 14px; }

.invite-direct {
    list-style: none;
    margin-top: 26px;
    padding: 0;
}

.invite-direct li { margin-bottom: 10px; }

.invite-direct a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 160, 74, .4);
}

.invite-direct a:hover { color: var(--accent); }

.invite-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* =========================================
   IMPRESSION — la fiche devient un dossier papier A4
   ========================================= */

@media print {
    @page {
        size: A4 portrait;
        margin: 10mm 12mm;
    }

    html, body {
        width: auto;
        height: auto;
        background: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body.fiche-print-active > *:not(#fichePrintRoot) {
        display: none !important;
    }

    body.fiche-print-active #fichePrintRoot {
        display: block !important;
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff !important;
    }

    body.fiche-print-active .orga-fiche {
        padding: 0 !important;
        background: #fff !important;
    }

    body.fiche-print-active .orga-fiche .container {
        max-width: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    body.fiche-print-active .orga-section-head {
        margin: 0 0 6mm;
        text-align: left;
    }

    body.fiche-print-active .orga-fiche .section-tag,
    body.fiche-print-active .fiche-actions,
    body.fiche-print-active .fiche-export-hint {
        display: none !important;
    }

    body.fiche-print-active .orga-fiche .section-title {
        font-size: 17pt;
        margin: 0 0 2mm;
        color: #111 !important;
    }

    body.fiche-print-active .orga-fiche .section-description {
        margin: 0;
        font-size: 9.5pt;
        color: #444 !important;
    }

    body.fiche-print-active .orga-fiche .section-title .text-gradient {
        -webkit-text-fill-color: #111;
        color: #111;
        background: none;
    }

    body.fiche-print-active .fiche-card {
        max-width: none;
        border: 1px solid #bbb;
        border-radius: 0;
        background: #fff !important;
        box-shadow: none;
        padding: 5mm 6mm 4mm;
        page-break-inside: avoid;
    }

    body.fiche-print-active .fiche-print-banner {
        display: block;
        border-bottom: 1px solid #ccc;
        padding-bottom: 3mm;
        margin-bottom: 4mm;
    }

    body.fiche-print-active .fiche-print-title {
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 13pt;
        font-weight: 700;
        color: #8a5a17;
    }

    body.fiche-print-active .fiche-print-meta {
        margin: 1.5mm 0 0;
        font-size: 8.5pt;
        color: #555;
    }

    body.fiche-print-active .fiche-head {
        padding-bottom: 3mm;
        margin-bottom: 4mm;
        border-bottom-color: #ddd;
    }

    body.fiche-print-active .fiche-brand {
        font-size: 11pt;
        color: #8a5a17;
    }

    body.fiche-print-active .fiche-sub {
        font-size: 8.5pt;
        color: #555;
    }

    body.fiche-print-active .fiche-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5mm 6mm;
    }

    body.fiche-print-active .fiche-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    body.fiche-print-active .fiche-item h3 {
        font-size: 7.5pt;
        letter-spacing: 1.5px;
        margin-bottom: 1.5mm;
        color: #8a5a17;
    }

    body.fiche-print-active .fiche-item li {
        font-size: 8.5pt;
        line-height: 1.45;
        margin-bottom: 1mm;
        color: #222;
    }

    body.fiche-print-active .fiche-item li::before {
        color: #8a5a17;
    }

    body.fiche-print-active .fiche-item li strong,
    body.fiche-print-active .fiche-item a {
        color: #111;
        text-decoration: none;
        border: 0;
    }

    body.fiche-print-active .fiche-print-footer {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2mm;
        margin-top: 4mm;
        padding-top: 2.5mm;
        border-top: 1px solid #ccc;
        font-size: 7.5pt;
        color: #555;
    }
}

/* =========================================
   BARRE DE PROGRESSION DE LECTURE
   ========================================= */

.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10000;
    background: transparent;
    pointer-events: none;
}

.read-progress i {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-dark, #c47e2a), var(--accent), #f0c878);
    box-shadow: 0 0 12px rgba(232, 160, 74, .55);
    transform-origin: 0 50%;
    transform: scaleX(0);
}

/* =========================================
   BRAISES DORÉES DU HERO
   ========================================= */

.orga-embers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ember {
    position: absolute;
    bottom: -8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe9c8 0%, var(--accent) 55%, transparent 75%);
    opacity: 0;
    animation: emberRise var(--dur, 9s) linear var(--delay, 0s) infinite;
    filter: blur(.4px);
}

@keyframes emberRise {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    8% { opacity: var(--op, .7); }
    60% { opacity: var(--op, .7); }
    100% { transform: translate(var(--driftX, 30px), -86vh) scale(.25); opacity: 0; }
}

/* =========================================
   TITRE HERO — RÉVÉLATION MOT À MOT
   ========================================= */

.orga-hero-title .hw {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: .12em;
    margin-bottom: -.12em;
}

.orga-hero-title .hw > span {
    display: inline-block;
    transform: translateY(115%);
}

.orga-hero-title.play .hw > span {
    animation: heroWord .85s cubic-bezier(.22, .9, .26, 1) forwards;
    animation-delay: var(--hd, 0s);
}

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

/* =========================================
   SCROLL-SPY NAVIGATION
   ========================================= */

.orga-nav .nav-links a:not(.nav-cta) {
    position: relative;
}

.orga-nav .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.orga-nav .nav-links a:not(.nav-cta).nav-active {
    color: var(--text-primary);
}

.orga-nav .nav-links a:not(.nav-cta).nav-active::after,
.orga-nav .nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

/* =========================================
   SPOTLIGHT + TILT 3D SUR LES CARTES
   ========================================= */

.atout-card,
.doc-card,
.format-card,
.site-page-card,
.social-card {
    position: relative;
    overflow: hidden;
}

.card-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 160, 74, .12), transparent 65%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: 0;
}

.card-glow:hover::before {
    opacity: 1;
}

.card-glow > * {
    position: relative;
    z-index: 1;
}

[data-tilt],
.tilt-on {
    transform-style: preserve-3d;
    will-change: transform;
}

/* =========================================
   DOSSIER ADMINISTRATIF
   ========================================= */

.orga-docs {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(232, 160, 74, .05) 0%, transparent 55%),
        var(--bg-secondary);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
}

.doc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px 28px 30px;
    text-align: left;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.doc-card:hover {
    border-color: rgba(232, 160, 74, .4);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .4), 0 0 32px rgba(232, 160, 74, .1);
}

.doc-card-paper {
    position: relative;
    width: 72px;
    height: 86px;
    border-radius: 10px;
    background: linear-gradient(160deg, #20202c 0%, #181822 100%);
    border: 1px solid rgba(232, 160, 74, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
    transition: transform .4s ease, box-shadow .4s ease;
}

.doc-card:hover .doc-card-paper {
    transform: translateY(-4px) rotate(-2.5deg);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .45), 0 0 22px rgba(232, 160, 74, .14);
}

.doc-card-corner {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 18px;
    height: 18px;
    background: var(--bg-secondary);
    border-left: 1px solid rgba(232, 160, 74, .3);
    border-bottom: 1px solid rgba(232, 160, 74, .3);
    border-radius: 0 0 0 10px;
}

.doc-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.22rem;
    margin-bottom: 10px;
}

.doc-card p {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.doc-card-state {
    display: inline-block;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #7ed6a2;
    background: rgba(93, 200, 138, .08);
    border: 1px solid rgba(93, 200, 138, .28);
    border-radius: 100px;
    padding: 7px 14px;
}

.docs-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 36px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: .84rem;
    color: var(--text-muted);
}

.docs-note svg { flex-shrink: 0; color: var(--accent); }

/* =========================================
   DÉROULEMENT — 3 ÉTAPES
   ========================================= */

.orga-deroule {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(232, 160, 74, .06) 0%, transparent 50%),
        var(--bg-primary);
    overflow: hidden;
}

.deroule-line {
    position: relative;
    max-width: 880px;
    margin: 0 auto -26px;
    height: 2px;
    background: rgba(255, 255, 255, .07);
    border-radius: 2px;
    top: 52px;
}

.deroule-line i {
    position: absolute;
    inset: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-dark, #c47e2a), var(--accent), #f0c878);
    box-shadow: 0 0 14px rgba(232, 160, 74, .5);
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition: transform 1.4s cubic-bezier(.3, .6, .2, 1);
}

.deroule-line.lit i {
    transform: scaleX(1);
}

.deroule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    counter-reset: deroule;
}

.deroule-step {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 64px 28px 30px;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.deroule-step:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 160, 74, .35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .35), 0 0 30px rgba(232, 160, 74, .08);
}

.deroule-num {
    position: absolute;
    top: -26px;
    left: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid rgba(232, 160, 74, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .45), 0 0 18px rgba(232, 160, 74, .18);
}

.deroule-num i {
    font-style: normal;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.deroule-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.deroule-step p {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.deroule-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232, 160, 74, .08);
    border: 1px solid rgba(232, 160, 74, .25);
    border-radius: 100px;
    padding: 6px 14px;
}

/* =========================================
   FAQ ORGANISATEURS
   ========================================= */

.orga-faq {
    background:
        radial-gradient(ellipse at 85% 15%, rgba(232, 160, 74, .05) 0%, transparent 50%),
        var(--bg-primary);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color .35s ease, box-shadow .35s ease;
}

.faq-item[open] {
    border-color: rgba(232, 160, 74, .35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .3), 0 0 24px rgba(232, 160, 74, .06);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: color .3s ease;
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent-light); }

.faq-chevron {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(232, 160, 74, .35);
    background: rgba(232, 160, 74, .07);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), background .3s ease;
}

.faq-chevron::before,
.faq-chevron::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-chevron::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    background: rgba(232, 160, 74, .16);
}

.faq-item[open] .faq-chevron::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1), padding .4s ease;
}

.faq-item[open] .faq-answer {
    padding: 0 24px 22px;
    max-height: 400px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: .93rem;
    line-height: 1.75;
    margin: 0;
}

.faq-answer strong { color: var(--text-primary); }

/* =========================================
   CTA STICKY MOBILE
   ========================================= */

.orga-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 950;
    display: none;
    gap: 10px;
    padding: 10px;
    border-radius: 100px;
    background: rgba(16, 16, 24, .88);
    border: 1px solid rgba(232, 160, 74, .3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .55), 0 0 28px rgba(232, 160, 74, .1);
    transform: translateY(calc(100% + 22px));
    transition: transform .45s cubic-bezier(.22, .9, .26, 1);
}

.orga-sticky-cta.show {
    transform: translateY(0);
}

.orga-sticky-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 13px 18px;
    font-size: .92rem;
}

.orga-sticky-call {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(232, 160, 74, .4);
    background: rgba(232, 160, 74, .08);
}

@media (max-width: 768px) {
    .orga-sticky-cta { display: flex; }
    body.orga-body { padding-bottom: 6px; }
}

/* =========================================
   VARIANTES DE RÉVÉLATION AU SCROLL
   ========================================= */

[data-aos="fade-left"] { transform: translateX(-34px); }
[data-aos="fade-right"] { transform: translateX(34px); }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos="fade-left"].aos-in,
[data-aos="fade-right"].aos-in,
[data-aos="zoom-in"].aos-in { transform: none; }

/* =========================================
   ACCESSIBILITÉ — MOUVEMENT RÉDUIT
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .orga-laser,
    .orga-scroll-line,
    .story-scan {
        animation: none;
    }
    .orga-marquee-track,
    .gal-track {
        animation: none;
        width: auto;
    }
    .orga-marquee { overflow-x: auto; }
    .gal-row {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .laser-cursor, .laser-spark { display: none; }
    .atout-card:hover, .social-card:hover, .gal-item:hover,
    .site-browser:hover, .site-page-card:hover,
    .stand-photo:hover .stand-photo-frame,
    .stand-photo:hover .stand-photo-frame img,
    .format-card:hover,
    .format-card:hover .format-card-media img { transform: none; }
    .ember { display: none; }
    .orga-hero-title .hw > span { transform: none; animation: none; }
    .deroule-line i { transition: none; transform: scaleX(1); }
    .doc-card:hover, .doc-card:hover .doc-card-paper,
    .deroule-step:hover { transform: none; }
    .card-glow::before { display: none; }
    .faq-answer { transition: none; }
    .orga-sticky-cta { transition: none; }
    .read-progress i { box-shadow: none; }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .ba-layout { gap: 36px; }
    .fiche-grid { grid-template-columns: repeat(2, 1fr); }
    .site-layout { grid-template-columns: 1fr; gap: 40px; }
    .site-pages { grid-template-columns: repeat(2, 1fr); }
    .stand-layout { grid-template-columns: 1fr; gap: 40px; }
    .docs-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 900px) {
    .orga-section { padding: 80px 0; }

    .format-grid { grid-template-columns: 1fr; max-width: 400px; }
    .atout-grid { grid-template-columns: 1fr; }
    .counter-band { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
    .video-grid {
        justify-content: flex-start;
        padding-inline: 20px;
        margin-inline: -20px;
    }

    .video-card { width: min(240px, 72vw); }

    .ba-layout { grid-template-columns: 1fr; }
    .ba-text { text-align: center; }
    .ba-points { display: inline-block; text-align: left; }
    .ba-wrap { max-width: min(320px, 88vw); }
    .story-right { max-width: min(320px, 88vw); }

    /* Scrollytelling : version empilée */
    .story { height: auto; padding: 80px 0; }
    .story-sticky { position: static; height: auto; overflow: visible; }
    .story-inner { grid-template-columns: 1fr; gap: 36px; }
    .story-steps { min-height: 0; display: grid; gap: 28px; }
    .story-step {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        border-left: 2px solid rgba(232, 160, 74, .35);
        padding-left: 20px;
    }
    .story-rail { display: none; }
    .story-right { max-height: none; }
    .story-visual { display: none; }
    .story-visual[data-step="2"],
    .story-visual.story-visual--machines {
        display: flex;
        position: relative;
        opacity: 1;
        transform: none;
        aspect-ratio: auto;
        height: auto;
        max-width: min(400px, 92vw);
        margin-inline: auto;
    }

    .story-right:has(.story-visual--machines.active) {
        aspect-ratio: auto;
        max-width: min(400px, 92vw);
        max-height: none;
    }

    .invite-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }

    .deroule-line { display: none; }
    .deroule-grid { grid-template-columns: 1fr; max-width: 520px; gap: 44px; }
}

@media (max-width: 640px) {
    .orga-hero { padding: 120px 18px 80px; }
    .orga-hero-kicker { letter-spacing: 2.5px; font-size: .68rem; }
    .orga-hero-meta { font-size: .72rem; gap: 10px; }

    .simu-row { flex-direction: column; }
    .simu-row .btn { justify-content: center; }
    .simu-hud { padding: 10px 12px; gap: 10px; }

    .counter-band { padding: 28px 16px; }
    .fiche-card { padding: 28px 20px; }
    .fiche-grid { grid-template-columns: 1fr; }
    .gal-row { --gal-h: 200px; }

    .machines-duo { grid-template-columns: 1fr; }

    .invite-form .form-row { grid-template-columns: 1fr; }
    .social-card { width: 100%; }
    .site-pages { grid-template-columns: 1fr; }
    .site-intro { text-align: center; }
    .site-perks { display: inline-block; text-align: left; }
    .site-intro .btn { justify-content: center; width: 100%; }

    .doc-card { padding: 28px 22px 26px; }
    .faq-item summary { padding: 17px 18px; font-size: .94rem; }
    .faq-answer { padding: 0 18px; }
    .faq-item[open] .faq-answer { padding: 0 18px 18px; }
    .docs-note { font-size: .78rem; padding: 0 12px; }
}

/* Très petits écrans : titre hero plus compact, boutons confortables */
@media (max-width: 400px) {
    .orga-hero-title { font-size: 2rem; line-height: 1.18; }
    .orga-hero-sub { font-size: .95rem; }
    .orga-hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.6rem; }
}
