:root {
    --films-black: #050506;
    --films-black-soft: #0b0b0d;
    --films-panel: #111114;
    --films-white: #ffffff;
    --films-cream: #eee9e1;
    --films-gold: #c9a86a;
    --films-gold-light: #e2c991;
    --films-muted: rgba(255,255,255,.64);
    --films-line: rgba(255,255,255,.13);
    --films-shell: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.films-page {
    margin: 0;
    overflow-x: hidden;
    color: var(--films-white);
    background: var(--films-black);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.films-page video {
    display: block;
    max-width: 100%;
}

.films-shell {
    width: min(calc(100% - 80px), var(--films-shell));
    margin: 0 auto;
}

.films-header {
    position: absolute;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 105px;
    padding: 27px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.films-brand {
    display: flex;
    flex-direction: column;
    color: var(--films-white);
    text-decoration: none;
}

.films-brand-main {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .32em;
}

.films-brand-signature {
    margin-top: 7px;
    color: var(--films-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
    letter-spacing: .08em;
}

.films-header-nav {
    display: flex;
    gap: 32px;
}

.films-header-nav a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.films-header-nav a:hover {
    color: var(--films-white);
}

.films-hero {
    position: relative;
    min-height: 920px;
    overflow: hidden;
    padding: 190px 0 110px;
    display: flex;
    align-items: flex-end;
    background: #080809;
}

.films-hero-video,
.films-hero-overlay,
.films-hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.films-hero-video {
    object-fit: cover;
    object-position: center;
}

.films-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.68) 48%,
            rgba(0,0,0,.28) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.10) 60%
        );
}

.films-hero-grid {
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 90px 90px;
}

.films-hero-content {
    position: relative;
    z-index: 4;
}

.films-kicker {
    margin: 0 0 23px;
    color: var(--films-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    line-height: 1.4;
    text-transform: uppercase;
}

.films-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(78px, 11vw, 160px);
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: .82;
}

.films-hero h1 span,
.films-hero h1 em {
    display: block;
}

.films-hero h1 em {
    margin-left: 8vw;
    color: var(--films-gold-light);
    font-weight: 400;
}

.films-hero-bottom {
    max-width: 1120px;
    margin-top: 60px;
    display: grid;
    grid-template-columns: minmax(0, 640px) auto;
    gap: 65px;
    align-items: end;
}

.films-hero-bottom > p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.55;
}

.films-hero-actions {
    display: flex;
    gap: 12px;
}

.films-button {
    min-height: 56px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.films-button:hover {
    transform: translateY(-2px);
}

.films-button-light {
    color: #080808;
    background: var(--films-white);
}

.films-button-outline {
    color: var(--films-white);
    border-color: rgba(255,255,255,.35);
}

.films-button-outline:hover {
    border-color: var(--films-gold);
}

.films-button-gold {
    color: #080808;
    background: var(--films-gold-light);
}

.films-hero-count {
    position: absolute;
    z-index: 5;
    right: 4vw;
    bottom: 30px;
    color: rgba(255,255,255,.48);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.films-introduction {
    padding: 120px 0;
    color: #171719;
    background: var(--films-cream);
}

.films-introduction-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 95px;
}

.films-introduction h2,
.films-final h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: 1;
}

.films-introduction-grid > p {
    margin: 0;
    color: #4a474b;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.63;
}

.films-library {
    padding: 100px 0 145px;
    background: #080809;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 75px 34px;
}

.films-card {
    min-width: 0;
}

.films-player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    background: #000;
    box-shadow: 0 35px 90px rgba(0,0,0,.38);
}

.films-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.films-player-number {
    position: absolute;
    z-index: 3;
    top: 17px;
    left: 17px;
    padding: 9px 11px;
    color: #fff;
    background: rgba(0,0,0,.68);
    backdrop-filter: blur(10px);
    font-size: 9px;
    letter-spacing: .17em;
}

.films-card-content {
    padding: 25px 4px 0;
}

.films-card-content > span {
    display: block;
    margin-bottom: 12px;
    color: var(--films-gold);
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.films-card-content h3 {
    margin: 0;
    color: var(--films-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 43px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.films-fullscreen-button {
    margin-top: 22px;
    padding: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 0;
    border-bottom: 1px solid rgba(201,168,106,.5);
    color: rgba(255,255,255,.73);
    background: transparent;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.films-fullscreen-button span {
    color: var(--films-gold);
}

.films-empty {
    padding: 100px 20px;
    text-align: center;
}

.films-empty h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 60px;
    font-weight: 400;
}

.films-empty p:last-child {
    color: var(--films-muted);
}

.films-final {
    position: relative;
    overflow: hidden;
    padding: 155px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(201,168,106,.18),
            transparent 38%
        ),
        #0b0b0d;
}

.films-final-orbit {
    position: absolute;
    top: -300px;
    left: 50%;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(201,168,106,.13);
    border-radius: 50%;
    transform: translateX(-50%);
}

.films-final-orbit::before,
.films-final-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(201,168,106,.09);
    border-radius: 50%;
}

.films-final-orbit::before {
    inset: 90px;
}

.films-final-orbit::after {
    inset: 190px;
}

.films-final-inner {
    position: relative;
    z-index: 2;
    max-width: 930px;
}

.films-final p:not(.films-kicker) {
    max-width: 670px;
    margin: 34px auto 42px;
    color: var(--films-muted);
    font-size: 18px;
    line-height: 1.75;
}

.films-footer {
    padding: 38px 0;
    border-top: 1px solid var(--films-line);
    background: #050506;
}

.films-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.films-footer-inner div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.films-footer strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.films-footer span,
.films-footer a {
    color: rgba(255,255,255,.44);
    font-size: 9px;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .films-hero-bottom,
    .films-introduction-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .films-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }
}

@media (max-width: 680px) {
    .films-shell {
        width: calc(100% - 32px);
    }

    .films-header {
        min-height: 82px;
        padding: 18px 16px;
    }

    .films-brand-main {
        font-size: 13px;
    }

    .films-brand-signature {
        font-size: 11px;
    }

    .films-header-nav {
        gap: 13px;
    }

    .films-header-nav a {
        font-size: 8px;
    }

    .films-hero {
        min-height: 780px;
        padding: 140px 0 80px;
    }

    .films-hero h1 {
        font-size: clamp(66px, 22vw, 96px);
    }

    .films-hero h1 em {
        margin-left: 0;
    }

    .films-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .films-button {
        width: 100%;
    }

    .films-hero-count {
        display: none;
    }

    .films-introduction {
        padding: 80px 0;
    }

    .films-library {
        padding: 70px 0 95px;
    }

    .films-player {
        aspect-ratio: 16 / 9;
    }

    .films-final {
        padding: 100px 0;
    }

    .films-final h2 {
        font-size: 52px;
    }

    .films-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }
}

/* ==========================================================
   FILMS — CHARGEMENT VIDÉO À LA DEMANDE
========================================================== */

.films-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 76% 30%,
            rgba(201,168,106,.17),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #050506 0%,
            #111014 55%,
            #050506 100%
        );
}

.films-player {
    isolation: isolate;
}

.films-video-load {
    position: absolute;
    z-index: 5;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(
            circle at center,
            rgba(201,168,106,.13),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(14,14,17,.98),
            rgba(4,4,5,.98)
        );
    cursor: pointer;
    transition:
        opacity .3s ease,
        visibility .3s ease,
        background .3s ease;
}

.films-video-load:hover {
    background:
        radial-gradient(
            circle at center,
            rgba(201,168,106,.23),
            transparent 43%
        ),
        linear-gradient(
            135deg,
            rgba(18,17,19,.98),
            rgba(4,4,5,.98)
        );
}

.films-video-load.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.films-video-play {
    width: 74px;
    height: 74px;
    padding-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226,201,145,.64);
    border-radius: 50%;
    color: #e2c991;
    background: rgba(0,0,0,.35);
    font-size: 22px;
    transition:
        transform .25s ease,
        background .25s ease;
}

.films-video-load:hover .films-video-play {
    background: rgba(201,168,106,.13);
    transform: scale(1.06);
}

.films-video-load-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.films-lazy-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

@media (max-width: 680px) {
    .films-video-play {
        width: 62px;
        height: 62px;
        font-size: 19px;
    }
}

/* ==========================================================
   FILMS — POSTERS VIDÉO
========================================================== */

.films-video-load {
    position: absolute;
    z-index: 5;
    inset: 0;
    overflow: hidden;
    background:
        var(--film-poster),
        linear-gradient(135deg, #111114, #050506) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.films-video-load::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.16) 0%,
            rgba(0,0,0,.28) 46%,
            rgba(0,0,0,.72) 100%
        );
    transition: background .3s ease;
}

.films-video-load:hover::before {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08) 0%,
            rgba(0,0,0,.20) 46%,
            rgba(0,0,0,.62) 100%
        );
}

.films-video-load-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    box-shadow: inset 0 0 90px rgba(0,0,0,.35);
    pointer-events: none;
}

.films-video-play,
.films-video-load-text {
    position: relative;
    z-index: 2;
}

.films-video-play {
    box-shadow:
        0 12px 40px rgba(0,0,0,.35),
        inset 0 0 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.films-video-load-text {
    padding: 9px 13px;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(8px);
}

/* ==========================================================
   FILMS — CHAPITRE 2 · PRODUCTIONS SHAYLA
   ========================================================== */

.films-production-introduction {
    position: relative;
    margin-top: 40px;
    padding-top: clamp(90px, 11vw, 160px);
    border-top: 1px solid rgba(211, 177, 108, .24);
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(202, 166, 92, .11),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(18, 16, 14, 1),
            rgba(11, 10, 9, 1)
        );
}

.films-production-introduction::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(420px, 70vw);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(236, 205, 139, .88),
            transparent
        );
}

.films-production-introduction h2 {
    max-width: 920px;
}

.films-production-library {
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(192, 151, 76, .07),
            transparent 28%
        ),
        #0b0a09;
}

.films-production-card {
    border-color: rgba(213, 179, 108, .18);
}

.films-production-card:hover {
    border-color: rgba(231, 199, 132, .46);
}

@media (max-width: 820px) {
    .films-production-introduction {
        margin-top: 20px;
        padding-top: 80px;
    }
}

/* ==========================================================
   CHAPITRE 2 — PRODUCTIONS SHAYLA · PREMIUM V2
   ========================================================== */

.films-production-introduction {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 0;
    padding:
        clamp(110px, 12vw, 190px)
        0
        clamp(76px, 8vw, 120px);
    border-top: 1px solid rgba(213, 178, 108, .25);
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(205, 166, 88, .16),
            transparent 34%
        ),
        radial-gradient(
            circle at 8% 86%,
            rgba(142, 104, 47, .1),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #15120e 0%,
            #0d0c0a 52%,
            #080807 100%
        );
}

.films-production-introduction::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );
}

.films-production-introduction::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(560px, 74vw);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244, 215, 151, .92),
            transparent
        );
    box-shadow:
        0 0 30px rgba(222, 184, 107, .28);
}

.films-production-introduction .films-introduction-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, .75fr);
    gap: clamp(44px, 7vw, 110px);
    align-items: end;
}

.films-production-introduction .films-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: #d9b878;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.films-production-introduction .films-kicker::before {
    content: "";
    width: 48px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #d9b878,
            rgba(217, 184, 120, .15)
        );
}

.films-production-introduction h2 {
    max-width: 980px;
    margin: 0;
    color: #f5efe4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5.7vw, 82px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.films-production-introduction
.films-introduction-grid > p {
    position: relative;
    max-width: 520px;
    margin: 0 0 8px;
    padding: 26px 0 0 28px;
    border-left: 1px solid rgba(216, 179, 105, .34);
    color: rgba(245, 239, 228, .7);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.75;
}

.films-production-library {
    position: relative;
    padding-top: clamp(65px, 8vw, 110px);
    padding-bottom: clamp(110px, 12vw, 180px);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(198, 157, 78, .09),
            transparent 32%
        ),
        #090807;
}

.films-production-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap:
        clamp(34px, 4vw, 62px)
        clamp(24px, 3vw, 48px);
}

.films-production-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218, 181, 108, .17);
    background:
        linear-gradient(
            145deg,
            rgba(28, 24, 19, .98),
            rgba(13, 12, 10, .98)
        );
    box-shadow:
        0 28px 80px rgba(0, 0, 0, .28);
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.films-production-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(242, 211, 145, .7),
            transparent
        );
    opacity: .45;
}

.films-production-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 196, 128, .45);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, .42),
        0 0 40px rgba(191, 145, 66, .07);
}

.films-production-card .films-player {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(
            145deg,
            #19150f,
            #060605
        );
}

.films-production-card .films-card-content {
    min-height: 180px;
    padding:
        clamp(24px, 3vw, 40px)
        clamp(22px, 3vw, 38px)
        clamp(28px, 3vw, 42px);
}

.films-production-card
.films-card-content > span {
    color: #cba965;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.films-production-card h3 {
    margin-top: 15px;
    color: #f3ede2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.25vw, 34px);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -.02em;
}

.films-production-card
.films-fullscreen-button {
    margin-top: 24px;
}

@media (max-width: 900px) {
    .films-production-introduction
    .films-introduction-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .films-production-introduction
    .films-introduction-grid > p {
        max-width: 680px;
    }

    .films-production-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .films-production-introduction {
        padding-top: 90px;
        padding-bottom: 65px;
    }

    .films-production-introduction
    .films-introduction-grid > p {
        padding-left: 20px;
    }

    .films-production-card:hover {
        transform: none;
    }
}


/* ==========================================================
   FILMS — LANGUAGE SWITCH
   ========================================================== */

.films-language-switch {
    position: fixed;
    z-index: 9997;
    top: 22px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 6px 18px 6px 7px;
    border: 1px solid rgba(226, 193, 126, .48);
    border-radius: 999px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 15, 13, .96),
            rgba(38, 31, 23, .94)
        );
    color: #f7f1e7;
    text-decoration: none;
    box-shadow:
        0 14px 38px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        transform .3s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.films-language-switch:hover,
.films-language-switch:focus-visible {
    color: #f0d292;
    border-color: rgba(241, 210, 145, .9);
    transform: translateY(-2px);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, .42),
        0 0 26px rgba(205, 164, 82, .14);
    outline: none;
}

.films-language-switch-code {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(238, 208, 145, .36);
    border-radius: 50%;
    color: #e4c37e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.films-language-switch-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .films-language-switch {
        top: 14px;
        right: 14px;
        min-height: 42px;
        padding: 5px;
    }

    .films-language-switch-code {
        width: 32px;
        height: 32px;
    }

    .films-language-switch-label {
        display: none;
    }
}

