/* ==========================================================================
   CONCOURS D'ENTRÉE — Page redesign cinématographique
   Préfixe : .ce- (concours d'entrée)
   Inspiré des pages formation mais radicalement différent : full-bleed images,
   chapitres numérotés, typographie magazine, gros chiffres "credits".
   ========================================================================== */

.ce-page {
    --ce-cream: #f4ecdc;
    --ce-cream-dim: rgba(244, 236, 220, 0.72);
    --ce-cream-faint: rgba(244, 236, 220, 0.4);
    --ce-orange: #ff8a3a;
    --ce-orange-soft: #ffb16a;
    --ce-orange-deep: #d96a1a;
    --ce-ink: #0e0805;
    --ce-ink-2: #1a0f08;
    --ce-ink-3: #261912;
    color: var(--ce-cream);
    background: var(--ce-ink);
}

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

.ce-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 56px 120px;
    overflow: hidden;
    isolation: isolate;
}

.ce-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.ce-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(0.18) contrast(1.05);
}
.ce-hero-bg-grade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(14, 8, 5, 0.55) 0%,
            rgba(14, 8, 5, 0.7) 35%,
            rgba(14, 8, 5, 0.92) 80%,
            rgba(14, 8, 5, 1) 100%),
        radial-gradient(ellipse at 28% 50%,
            rgba(255, 138, 58, 0.12) 0%,
            transparent 55%);
}
.ce-hero-bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image: radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px);
    background-size: 3px 3px;
    pointer-events: none;
}

.ce-hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ce-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 138, 58, 0.5);
    background: rgba(255, 138, 58, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--ce-orange-soft);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.ce-hero-eyebrow svg {
    width: 14px;
    height: 14px;
}

.ce-hero-title {
    margin: 28px 0 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(54px, 8.6vw, 132px);
    line-height: 0.92;
    letter-spacing: -0.005em;
    color: var(--ce-cream);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
    text-wrap: balance;
}
.ce-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(110deg, #ffb16a 0%, #ff8a3a 50%, #ffb16a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ce-hero-deck {
    margin: 28px 0 0;
    max-width: 580px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.7;
    color: var(--ce-cream-dim);
}
.ce-hero-deck strong {
    color: var(--ce-cream);
    font-weight: 600;
}

.ce-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.ce-hero-marks {
    list-style: none;
    margin: 56px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 720px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
}
.ce-hero-marks li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}
.ce-hero-marks strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 3.6vw, 52px);
    color: var(--ce-orange-soft);
    letter-spacing: 0.5px;
    line-height: 1;
}
.ce-hero-marks span {
    font-size: 11.5px;
    color: var(--ce-cream-dim);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ce-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ce-cream-dim);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    z-index: 2;
}
.ce-hero-scroll:hover { color: var(--ce-orange-soft); }
.ce-hero-scroll svg {
    width: 18px;
    height: 18px;
    animation: ce-scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes ce-scroll-pulse {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ============================== CTA ===================================== */

.ce-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}
.ce-cta svg {
    width: 16px;
    height: 16px;
}

.ce-cta-primary {
    background: linear-gradient(110deg, #ffb16a 0%, #ff8a3a 50%, #d96a1a 100%);
    color: var(--ce-ink);
    box-shadow: 0 16px 40px -16px rgba(255, 138, 58, 0.65);
}
.ce-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -16px rgba(255, 138, 58, 0.85);
}

.ce-cta-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--ce-cream);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ce-cta-ghost:hover {
    border-color: rgba(255, 138, 58, 0.6);
    color: var(--ce-orange-soft);
    transform: translateY(-2px);
}

.ce-cta-lg {
    padding: 18px 32px;
    font-size: 15px;
}

/* ============================== PILL/SECTION HEAD ====================== */

.ce-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 138, 58, 0.32);
    background: rgba(255, 138, 58, 0.08);
    color: var(--ce-orange-soft);
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.ce-pill-light {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--ce-cream);
}

.ce-section-head {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
}
.ce-section-title {
    margin: 22px 0 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.96;
    letter-spacing: 0;
    color: var(--ce-cream);
    text-wrap: balance;
}
.ce-section-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ce-orange-soft);
}
.ce-section-sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(14.5px, 1.1vw, 16px);
    line-height: 1.75;
    color: var(--ce-cream-dim);
    text-wrap: balance;
}
.ce-section-sub strong {
    color: var(--ce-cream);
    font-weight: 600;
}

/* ============================== CHAPITRES ============================== */

.ce-chapters {
    padding: 140px 56px 120px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(255, 138, 58, 0.08) 0%, transparent 60%),
        var(--ce-ink);
}

.ce-chapter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.ce-chapter {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ce-chapter.is-reverse {
    grid-template-columns: 1fr 1.1fr;
}
.ce-chapter.is-reverse .ce-chapter-img {
    order: 2;
}
.ce-chapter.is-reverse .ce-chapter-body {
    order: 1;
}

.ce-chapter-img {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 5 / 6;
    box-shadow:
        0 32px 80px -32px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    isolation: isolate;
}
.ce-chapter-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ce-chapter:hover .ce-chapter-img img {
    transform: scale(1.04);
}
.ce-chapter-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(14, 8, 5, 0.1) 0%,
        rgba(14, 8, 5, 0.4) 60%,
        rgba(14, 8, 5, 0.85) 100%);
    pointer-events: none;
}

.ce-chapter-num {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 7vw, 100px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 138, 58, 0.85);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 30px rgba(255, 138, 58, 0.35);
}
.ce-chapter.is-final .ce-chapter-num {
    color: var(--ce-orange-soft);
    -webkit-text-stroke: 0;
}

.ce-chapter-time {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(14, 8, 5, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 178, 110, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ce-orange-soft);
}

.ce-chapter-body {
    padding: 12px 0;
}
.ce-chapter-eyebrow {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ce-orange-soft);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.ce-chapter-title {
    margin: 0 0 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5.6vw, 72px);
    line-height: 0.96;
    letter-spacing: 0;
    color: var(--ce-cream);
}
.ce-chapter-body p {
    margin: 0 0 22px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.15vw, 16.5px);
    line-height: 1.75;
    color: var(--ce-cream-dim);
    max-width: 520px;
}
.ce-chapter-body p em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ce-cream);
}
.ce-chapter-marks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ce-chapter-marks li {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ce-cream-dim);
    letter-spacing: 0.06em;
}

/* ============================== POSTER STATS =========================== */

.ce-poster {
    position: relative;
    padding: 160px 56px;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.ce-poster-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.ce-poster-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) contrast(1.05);
}
.ce-poster-bg-grade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(14, 8, 5, 0.65) 0%, rgba(14, 8, 5, 0.92) 75%, rgba(14, 8, 5, 0.98) 100%),
        linear-gradient(180deg, rgba(14, 8, 5, 0.7) 0%, rgba(14, 8, 5, 0.85) 100%);
}

.ce-poster-content {
    max-width: 900px;
    margin: 0 auto;
}
.ce-poster-title {
    margin: 28px 0 56px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7.5vw, 110px);
    line-height: 0.88;
    letter-spacing: 0;
    color: var(--ce-cream);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}
.ce-poster-line {
    display: block;
}
.ce-poster-line-em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(110deg, #ffb16a 0%, #ff8a3a 50%, #ffb16a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}

.ce-seats {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 24px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(14, 8, 5, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 0 auto;
}
.ce-seat {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 178, 110, 0.6);
    position: relative;
    transition: transform 0.3s ease;
}
.ce-seat::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(255, 178, 110, 0.12);
}
.ce-seat.is-taken {
    border-color: var(--ce-orange);
}
.ce-seat.is-taken::before {
    background: linear-gradient(180deg, #ffb16a 0%, #ff8a3a 60%, #d96a1a 100%);
    box-shadow: 0 0 18px rgba(255, 138, 58, 0.5);
}

.ce-poster-foot {
    margin: 36px auto 0;
    max-width: 560px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ce-cream-dim);
}
.ce-poster-foot strong {
    color: var(--ce-cream);
    font-weight: 600;
}

/* ============================== JURY =================================== */

.ce-jury {
    padding: 140px 56px 120px;
    background: var(--ce-ink-2);
}

.ce-jury-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ce-jury-card {
    position: relative;
    padding: 40px 32px 36px;
    border-radius: 24px;
    background: linear-gradient(160deg,
        rgba(28, 18, 12, 0.85) 0%,
        rgba(20, 12, 8, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.ce-jury-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 58, 0.18) 0%, transparent 70%);
    z-index: -1;
    transition: transform 0.6s ease;
}
.ce-jury-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 58, 0.32);
    box-shadow: 0 28px 60px -28px rgba(255, 138, 58, 0.4);
}
.ce-jury-card:hover::before {
    transform: scale(1.2);
}

.ce-jury-portrait {
    position: relative;
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
}
.ce-jury-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 178, 110, 0.32);
    box-shadow:
        inset 0 0 0 2px rgba(20, 12, 6, 0.55),
        0 14px 32px -18px rgba(0, 0, 0, 0.85);
    background: linear-gradient(160deg, #2c1d13 0%, #1a0f08 100%);
    z-index: 1;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.ce-jury-card:hover .ce-jury-photo {
    transform: scale(1.04);
    box-shadow:
        inset 0 0 0 2px rgba(20, 12, 6, 0.55),
        0 18px 38px -16px rgba(255, 124, 0, 0.45);
}
.ce-jury-spot {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ce-orange) 0%, transparent 75%);
    filter: blur(2px);
    z-index: 0;
}

.ce-jury-role {
    display: inline-block;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ce-orange);
}
.ce-jury-name {
    margin: 0 0 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: var(--ce-cream);
}
.ce-jury-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ce-cream-dim);
}

/* ============================== CRITÈRES =============================== */

.ce-criteria {
    padding: 140px 56px 120px;
    background:
        radial-gradient(ellipse at 20% 100%, rgba(255, 138, 58, 0.08) 0%, transparent 55%),
        var(--ce-ink);
}

.ce-criteria-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.ce-criteria-item:nth-child(1) { grid-column: span 4; }
.ce-criteria-item:nth-child(2) { grid-column: span 2; }
.ce-criteria-item:nth-child(3) { grid-column: span 2; }
.ce-criteria-item:nth-child(4) { grid-column: span 4; }
.ce-criteria-item:nth-child(5) { grid-column: span 6; }

.ce-criteria-item {
    position: relative;
    padding: 36px 32px 30px;
    border-radius: 22px;
    background:
        linear-gradient(160deg,
            rgba(28, 18, 12, 0.55) 0%,
            rgba(20, 12, 8, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.ce-criteria-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 138, 58, 0.32);
}

.ce-criteria-num {
    position: absolute;
    top: 14px;
    right: 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 8vw, 130px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(255, 138, 58, 0.25);
    pointer-events: none;
}

.ce-criteria-item h3 {
    margin: 0 0 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 2.2vw, 32px);
    letter-spacing: 0.5px;
    color: var(--ce-cream);
    position: relative;
    z-index: 1;
}
.ce-criteria-item p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ce-cream-dim);
    max-width: 540px;
    position: relative;
    z-index: 1;
}

/* ============================== SESSIONS =============================== */

.ce-sessions {
    padding: 140px 56px 120px;
    background: var(--ce-ink-2);
}

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

.ce-session-card {
    position: relative;
    padding: 40px 32px 32px;
    border-radius: 22px;
    background:
        linear-gradient(160deg,
            rgba(28, 18, 12, 0.7) 0%,
            rgba(20, 12, 8, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.ce-session-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 58, 0.4);
}

.ce-session-month {
    display: block;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1;
    background: linear-gradient(110deg, #ffb16a 0%, #ff8a3a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ce-session-card h3 {
    margin: 0 0 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: var(--ce-cream);
}
.ce-session-card ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}
.ce-session-card li {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: baseline;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ce-cream-dim);
}
.ce-session-card li strong {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ce-orange-soft);
}
.ce-session-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 178, 110, 0.32);
    background: rgba(255, 138, 58, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ce-orange-soft);
}

.ce-sessions-launch {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 28px 32px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(255, 138, 58, 0.22) 0%, rgba(255, 138, 58, 0) 60%),
        linear-gradient(160deg, rgba(38, 22, 12, 0.85) 0%, rgba(20, 12, 8, 0.72) 100%);
    border: 1px solid rgba(255, 178, 110, 0.32);
    box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.6);
}
.ce-sessions-launch::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 178, 110, 0.18) 0%, transparent 30%);
    mix-blend-mode: screen;
    opacity: 0.55;
}

.ce-sessions-launch-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 178, 110, 0.55);
    background: rgba(255, 138, 58, 0.16);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ce-orange-soft);
}

.ce-sessions-launch-body {
    margin-top: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
}

.ce-sessions-launch-month {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.15;
    padding-bottom: 0.12em;
    background: linear-gradient(110deg, #ffc187 0%, #ff8a3a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ce-sessions-launch-text h3 {
    margin: 0 0 6px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: 0.6px;
    color: var(--ce-cream);
}

.ce-sessions-launch-text p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ce-cream-dim);
}

.ce-sessions-launch-text strong {
    color: var(--ce-orange-soft);
    font-weight: 600;
}

/* ============================== FINALE ================================= */

.ce-finale {
    position: relative;
    padding: 120px 56px;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ce-finale-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.ce-finale-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: grayscale(0.25) contrast(1.05);
}
.ce-finale-bg-grade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(14, 8, 5, 0.55) 0%, rgba(14, 8, 5, 0.88) 70%, rgba(14, 8, 5, 0.98) 100%),
        linear-gradient(135deg,
            rgba(255, 138, 58, 0.08) 0%,
            transparent 40%,
            rgba(14, 8, 5, 0.6) 100%);
}

.ce-finale-content {
    max-width: 820px;
    margin: 0 auto;
}
.ce-finale-title {
    margin: 28px 0 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(54px, 8vw, 130px);
    line-height: 0.9;
    letter-spacing: 0;
    color: var(--ce-cream);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}
.ce-finale-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(110deg, #ffb16a 0%, #ff8a3a 50%, #ffb16a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ce-finale-deck {
    margin: 0 auto 22px;
    max-width: 580px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.75;
    color: var(--ce-cream-dim);
}

.ce-finale-cta-primary-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 380px;
}

.ce-finale-pointer {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 78px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.5;
    color: var(--ce-cream);
    text-align: center;
}
.ce-finale-pointer em {
    font-style: italic;
}
.ce-finale-pointer-word {
    color: var(--ce-orange);
    background: linear-gradient(110deg, #ffc187 0%, #ff8a3a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}
.ce-finale-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 72px;
    height: 82px;
    transform: translateX(-50%) rotate(-4deg);
    color: var(--ce-orange);
    filter: drop-shadow(0 6px 18px rgba(255, 138, 58, 0.4));
    animation: ce-arrow-nudge 2.2s ease-in-out infinite;
}
@keyframes ce-arrow-nudge {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-4deg); }
    50%      { transform: translateX(-50%) translateY(8px) rotate(-4deg); }
}

.ce-cta-pulse {
    box-shadow:
        0 0 0 0 rgba(255, 138, 58, 0.55),
        0 18px 42px -22px rgba(255, 138, 58, 0.7);
    animation: ce-cta-pulse 2.4s ease-out infinite;
}
@keyframes ce-cta-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 138, 58, 0.55), 0 18px 42px -22px rgba(255, 138, 58, 0.7); }
    70%  { box-shadow: 0 0 0 18px rgba(255, 138, 58, 0),  0 18px 42px -22px rgba(255, 138, 58, 0.7); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 58, 0),     0 18px 42px -22px rgba(255, 138, 58, 0.7); }
}

.ce-finale-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 14px 22px;
}
.ce-finale-foot {
    margin: 36px 0 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ce-cream-faint);
    letter-spacing: 0.04em;
}

/* ============================== REVEAL ================================ */
/* Réutilise .fm-reveal du formation-figma.css mais avec un fallback ici. */
.ce-page .fm-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ce-page .fm-reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .ce-page .fm-reveal { opacity: 1; transform: none; transition: none; }
}

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

@media (max-width: 1080px) {
    .ce-hero, .ce-chapters, .ce-poster, .ce-jury, .ce-criteria, .ce-sessions, .ce-finale {
        padding-left: 36px;
        padding-right: 36px;
    }
    .ce-chapter {
        gap: 40px;
    }
    .ce-jury-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
    .ce-criteria-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .ce-criteria-list .ce-criteria-item {
        grid-column: span 1 !important;
    }
    .ce-sessions-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
}

@media (max-width: 720px) {
    .ce-hero {
        padding: 120px 24px 100px;
        min-height: 90vh;
    }
    .ce-hero-marks {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 14px;
        margin-top: 40px;
    }

    .ce-chapters, .ce-poster, .ce-jury, .ce-criteria, .ce-sessions, .ce-finale {
        padding-left: 24px;
        padding-right: 24px;
    }
    .ce-chapters {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .ce-chapter-list {
        gap: 80px;
    }
    .ce-chapter,
    .ce-chapter.is-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ce-chapter.is-reverse .ce-chapter-img {
        order: 0;
    }
    .ce-chapter.is-reverse .ce-chapter-body {
        order: 1;
    }
    .ce-chapter-img {
        aspect-ratio: 4 / 5;
    }

    .ce-poster {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .ce-seats {
        padding: 18px 22px;
        gap: 10px;
    }
    .ce-seat {
        width: 26px;
        height: 26px;
    }

    .ce-criteria-list {
        grid-template-columns: 1fr;
    }

    .ce-section-head {
        margin-bottom: 56px;
    }

    .ce-finale {
        padding-top: 110px;
        padding-bottom: 100px;
    }
    .ce-finale-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .ce-finale-cta-row .ce-cta {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .ce-sessions-launch {
        padding: 24px 22px;
    }
    .ce-sessions-launch-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ce-session-card li {
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }
}

/* ═══════════════════════════════════════════
   SLIDES PLEIN-ÉCRAN — Concours d'entrée
   Décompose « Le déroulé » en slides 100vh successives :
   1 slide pour l'intro (Quatre étapes / un passage, un verdict)
   + 1 slide par chapitre (L'arrivée, L'audition, L'entretien, Le verdict).
   Image dominante (≈ 1.7fr) pour un rendu cinématographique homogène
   avec les pages de parcours.
   ═══════════════════════════════════════════ */

.ce-chapters {
    padding: 0 56px !important;
}

.ce-chapters > .ce-section-head {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 920px;
}

.ce-chapter-list {
    gap: 0 !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.ce-chapter {
    min-height: 100vh;
    min-height: 100svh;
    padding: 80px 0;
    align-items: center;
    align-content: center;
    grid-template-columns: 1.7fr 1fr;
    gap: 64px;
}
.ce-chapter.is-reverse {
    grid-template-columns: 1fr 1.7fr;
}

/* Image du chapitre : plein hauteur de la slide, format vertical cinéma */
.ce-chapter .ce-chapter-img {
    aspect-ratio: auto;
    height: min(82vh, 800px);
    border-radius: 28px;
}
.ce-chapter .ce-chapter-num {
    font-size: clamp(80px, 9vw, 150px);
}
.ce-chapter .ce-chapter-title {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.04;
}
.ce-chapter .ce-chapter-body p {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .ce-chapter,
    .ce-chapter.is-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ce-chapter.is-reverse .ce-chapter-img {
        order: 0;
    }
    .ce-chapter .ce-chapter-img {
        aspect-ratio: 4 / 5;
        height: auto;
    }
}

@media (max-width: 760px) {
    .ce-chapters {
        padding: 0 22px !important;
    }
    .ce-chapters > .ce-section-head,
    .ce-chapter {
        min-height: auto;
        padding: 80px 0;
    }
}

