:root {
    color-scheme: dark;
    --bg: #05060a;
    --ink: #f4efe3;
    --muted: #aaa49a;
    --panel: #11131a;
    --panel-2: #191c25;
    --line: #2a2f3c;
    --red: #d9302f;
    --blue: #63b7ff;
    --gold: #d6a84f;
    --green: #65c68a;
    --shadow: 0 22px 70px rgba(0, 0, 0, .42);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
    padding: 14px 34px;
    border-bottom: 1px solid rgba(244, 239, 227, .12);
    background: rgba(5, 6, 10, .88);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 13px;
    color: var(--muted);
    font-weight: 700;
}

.site-nav a.active,
.site-nav a:hover {
    background: rgba(244, 239, 227, .08);
    color: var(--ink);
}

.menu-button {
    display: none;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel-2);
    color: var(--ink);
    padding: 0 14px;
    font-weight: 800;
}

.hero {
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 120px 0 54px;
}

.eyebrow,
.kicker {
    margin: 0 0 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.film-hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: 84px;
    line-height: .92;
}

.hero-description {
    max-width: 850px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.62;
}

.hero-actions,
.section-heading,
.platform-row,
.stream-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 900;
}

.button.primary {
    background: var(--red);
    color: #fff;
}

.button.secondary {
    border: 1px solid var(--line);
    background: rgba(244, 239, 227, .08);
}

.section,
.page-hero,
.film-hero-inner,
.trailer-panel {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.section {
    padding: 70px 0;
}

.intro-strip {
    border-bottom: 1px solid var(--line);
}

.section-heading {
    justify-content: space-between;
    margin-bottom: 24px;
}

.section h2,
.page-hero h1 {
    margin-top: 0;
}

.section h2 {
    font-size: 42px;
    line-height: 1;
}

.section p,
.page-hero p,
.film-hero p,
.trailer-copy p,
.news-card p,
.film-card p {
    color: var(--muted);
    line-height: 1.58;
}

.text-link {
    color: var(--blue);
    font-weight: 900;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.film-grid.large {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.film-card,
.news-card,
.pipeline-grid article,
.release-item,
.stat-grid article,
.tech-list,
.contact-form,
.contact-section aside {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.film-card {
    overflow: hidden;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.film-card-body {
    padding: 14px;
}

.film-card h3 {
    margin: 0;
    font-size: 20px;
}

.platform {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.platform-netflix {
    background: #d81f26;
}

.platform-disneyplus {
    background: #144cbd;
}

.pipeline-section {
    border-top: 1px solid var(--line);
}

.pipeline-grid,
.stat-grid,
.news-grid,
.trailer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pipeline-grid.detailed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pipeline-grid article,
.news-card,
.stat-grid article {
    padding: 18px;
}

.pipeline-grid span {
    display: block;
    color: var(--red);
    font-size: 28px;
    font-weight: 900;
}

.page-hero {
    padding: 80px 0 38px;
}

.page-hero.compact h1 {
    font-size: 64px;
}

.studio-hero {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 54px;
}

.release-list {
    display: grid;
    gap: 14px;
}

.release-item {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
}

.release-item img {
    width: 116px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.release-item h2,
.news-card h2 {
    margin: 4px 0;
}

.year {
    color: var(--gold);
    font-weight: 900;
}

.trailer-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--panel);
}

.trailer-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    filter: brightness(.68);
}

.trailer-card span,
.trailer-card strong {
    position: absolute;
    left: 16px;
}

.trailer-card span {
    top: 16px;
    color: var(--blue);
    font-weight: 900;
}

.trailer-card strong {
    bottom: 16px;
    font-size: 22px;
}

.streaming-band {
    border-top: 1px solid var(--line);
}

.split-section,
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.stat-grid {
    grid-template-columns: repeat(2, 1fr);
}

.stat-grid strong {
    display: block;
    color: var(--red);
    font-size: 46px;
}

.film-hero {
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.film-hero-inner {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    padding: 120px 0 54px;
}

.film-poster-large {
    width: 260px;
    border: 1px solid rgba(244, 239, 227, .22);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.film-meta {
    color: var(--gold);
    font-weight: 800;
}

.trailer-panel {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
}

.video-stage {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #000;
}

.video-stage img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    opacity: .74;
}

.play-button {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 112px;
    height: 112px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: rgba(217, 48, 47, .82);
    color: #fff;
    font-weight: 900;
}

.video-stage.is-playing::after {
    content: "Annonce en lecture · rendu IA simulé · 00:45";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(5, 6, 10, .74);
    color: var(--ink);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    padding: 20px;
}

.fake-player-copy {
    position: absolute;
    top: 24px;
    left: 24px;
    display: grid;
    gap: 4px;
}

.fake-player-copy span {
    color: var(--blue);
    font-weight: 900;
}

.film-specs {
    display: grid;
    gap: 10px;
}

.film-specs div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.film-specs dt {
    color: var(--muted);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.tech-list h2 {
    width: 100%;
}

.tech-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel-2);
    color: var(--blue);
    padding: 9px 12px;
    font-weight: 800;
}

.contact-form,
.contact-section aside {
    padding: 20px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

input,
textarea,
select {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    color: var(--ink);
    padding: 12px;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-top: 1px solid var(--line);
    background: #090b10;
}

.site-footer img {
    width: 66px;
    height: 66px;
}

.site-footer p {
    max-width: 680px;
    color: var(--muted);
}

.site-footer nav {
    display: flex;
    gap: 14px;
    color: var(--blue);
    font-weight: 800;
}

@media (max-width: 1080px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
    }

    .site-nav {
        display: none;
        width: 100%;
    }

    .site-nav.open {
        display: flex;
    }

    .film-grid,
    .film-grid.large,
    .pipeline-grid,
    .pipeline-grid.detailed,
    .news-grid,
    .trailer-grid,
    .split-section,
    .contact-section,
    .trailer-panel {
        grid-template-columns: 1fr 1fr;
    }

    .film-hero-inner {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 720px) {
    .hero h1,
    .film-hero h1 {
        font-size: 48px;
    }

    .page-hero.compact h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .section h2 {
        font-size: 32px;
    }

    .hero {
        min-height: 760px;
    }

    .film-grid,
    .film-grid.large,
    .pipeline-grid,
    .pipeline-grid.detailed,
    .news-grid,
    .trailer-grid,
    .split-section,
    .contact-section,
    .trailer-panel,
    .stat-grid,
    .film-hero-inner {
        grid-template-columns: 1fr;
    }

    .film-poster-large {
        width: min(280px, 100%);
    }

    .release-item {
        grid-template-columns: 88px 1fr;
    }

    .release-item img {
        width: 88px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

