:root {
    --red: #c90606;
    --red-dark: #9f0505;
    --black: #080808;
    --charcoal: #111111;
    --paper: #f2eee8;
    --muted: #aaa49d;
    --line: rgba(255,255,255,.14);
    --max: 1440px;
}

* { 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    background: var(--black);
    color: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

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

button, input {
    font: inherit;
}

/* HEADER */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    background: var(--red);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.header-inner {
    width: min(var(--max), calc(100% - 48px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.logo, .logo_footer {
    width: 244px;
    height: 30px;
    display: block;
}

.logo_m {
    display:none;
}

.logo svg, 
.logo_m svg, 
.logo_footer svg {
    display: block;
    width: 100%;
    height: 100%;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;

    flex: 0 0 auto;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    white-space: nowrap;
    margin-left:auto;
}

.header-nav a {
    display: block;
    white-space: nowrap;
    opacity: .8;
    transition: opacity .2s ease;
}

.header-nav a:hover {
    opacity: 1;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 104px 24px 30px;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(var(--max), 100%);
    margin: auto;
}

.hero-kicker {
    margin-bottom: 13px;
    color: #d9d3cc;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .28em;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: stretch;
}

.video-frame {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.film-meta {
    min-height: 100%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0 20px;
    display: flex;
    flex-direction: column;
}

.film-label {
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin-bottom: 13px;
}

.film-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: -.035em;
}

.film-synopsis {
    color: #c0bbb4;
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 25px;
}

.credits {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: grid;
    gap: 13px;
}

.credit-label {
    color: #77736e;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 2px;
}

.credit-value {
    font-size: 12px;
}

.scroll-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #77736e;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .22em;
}

.scroll-line {
    width: 42px;
    height: 1px;
    background: var(--red);
}

/* FILM SECTION */
.film-section {
    background: var(--paper);
    color: var(--black);
    padding: 120px 24px 140px;
}

.film-section-inner {
    width: min(1180px, 100%);
    margin: auto;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 65px;
    align-items: end;
}

.section-kicker {
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .28em;
    margin-bottom: 12px;
}

.section-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 8vw, 112px);
    line-height: .83;
    font-weight: 400;
    letter-spacing: -.055em;
}

.section-intro {
    max-width: 410px;
    margin: 0 0 4px auto;
    font-size: 15px;
    line-height: 1.7;
}

.film-layout {
    display: grid;
    grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    background:
    linear-gradient(145deg, rgba(201,6,6,.92), rgba(75,0,0,.85)),
    radial-gradient(circle at 60% 25%, #ddd 0, #333 23%, #090909 60%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0,0,0,.18);
}

.poster::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,.35);
}

.poster-copy {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-transform: uppercase;
}

.poster-top {
    font-size: 9px;
    letter-spacing: .3em;
}

.poster-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .8;
    letter-spacing: -.055em;
}

.poster-bottom {
    font-size: 9px;
    letter-spacing: .25em;
}

.poster-image {
    width:100%;
    height:100%;
    object-fit:cover;
}

.download-panel {
    max-width: 510px;
    padding-top: 8px;
}

.download-panel h3 {
    margin: 0 0 17px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: .95;
    font-weight: 400;
    letter-spacing: -.035em;
}

.download-panel > p {
    color: #4f4c48;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 35px;
}

.download-note {
    color: #77736e;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 10px;
}

.email-form {
    display: flex;
    border-bottom: 2px solid var(--black);
    margin-bottom: 13px;
}

.email-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--black);
    padding: 15px 4px;
    font-size: 14px;
}

.email-form input::placeholder {
    color: #99938c;
}

.email-form button {
    border: 0;
    background: var(--black);
    color: white;
    padding: 0 21px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.email-form button:hover {
    background: var(--red);
}

.form-privacy {
    color: #77736e;
    font-size: 10px;
    line-height: 1.5;
}

.form-message {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;
    background: #ded9d1;
    font-size: 12px;
}

.form-message.show {
    display: block;
}

/* FOOTER */
footer {
    background: var(--red);
    color: white;
    padding: 30px 24px;
}

.footer-inner {
    width: min(var(--max), 100%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.footer-wordmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    letter-spacing: -.04em;
}

.copyright {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .17em;
    opacity: .7;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: 105px;
        padding-bottom: 70px;
    }

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

    .film-meta {
        min-height: auto;
        border-bottom: 0;
    }

    .credits {
        margin-top: 0;
        grid-template-columns: repeat(3, 1fr);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-intro {
        margin-left: 0;
    }

    .film-layout {
        grid-template-columns: minmax(260px, 500px) 1fr;
    }
}

@media (max-width: 650px) {
    .site-header {
        height: 62px;
    }

    .header-inner {
        width: calc(100% - 30px);
        padding: 0;
        gap: 15px;
    }

    .logo {
        display:none;
    }

    .logo_m {
        display:block;
        height:40px;
    }

    .header-nav {
        gap: 13px;
        font-size: 8px;
        letter-spacing: .12em;
    }

    .hero {
        padding: 87px 15px 55px;
    }

    .hero-kicker {
        font-size: 8px;
    }

    .video-frame {
        aspect-ratio: 16 / 9;
    }

    .film-meta {
        padding-top: 15px;
    }

    .film-title {
        font-size: 42px;
    }

    .credits {
        grid-template-columns: 1fr 1fr;
    }

    .film-section {
        padding: 75px 15px 90px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-title {
        font-size: 65px;
    }

    .film-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .poster {
        max-width: 430px;
    }

    .download-panel {
        max-width: none;
    }

    .email-form {
        display: grid;
        border-bottom: 0;
        gap: 9px;
    }

    .email-form input {
        border-bottom: 2px solid var(--black);
        padding: 14px 4px;
    }

    .email-form button {
        min-height: 50px;
    }

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