@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-latin-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
}

@font-face {
    font-family: Manrope;
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/manrope-latin-normal.woff2") format("woff2");
}

:root {
    --ink: #0b0b0d;
    --ink-soft: #121114;
    --paper: #f1ece2;
    --paper-soft: #d9d1c6;
    --muted: #9f988f;
    --mauve: #a58d9e;
    --mauve-dark: #6f5b69;
    --gold: #b69a72;
    --line: rgb(241 236 226 / 18%);
    --line-dark: rgb(11 11 13 / 18%);
    --serif: "Cormorant Garamond", georgia, serif;
    --sans: "Manrope", "Helvetica Neue", arial, sans-serif;
    --shell: min(1420px, calc(100vw - 96px));
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    color: inherit;
}

a {
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

button {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.035em;
}

h2 {
    max-width: 980px;
    margin-bottom: 34px;
    font-size: clamp(3.4rem, 6.2vw, 7rem);
}

h3 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
}

::selection {
    background: var(--mauve);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--paper);
    outline-offset: 5px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.section {
    padding: clamp(96px, 11vw, 180px) 0;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-kicker,
.eyebrow,
.honor-label {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid transparent;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.button-primary:hover {
    background: transparent;
    color: var(--paper);
}

.button-quiet {
    border-color: rgb(241 236 226 / 50%);
    background: rgb(11 11 13 / 32%);
    color: var(--paper);
}

.button-quiet:hover {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid transparent;
    transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.page-press .site-header {
    border-color: var(--line);
    background: rgb(11 11 13 / 94%);
}

.wordmark {
    position: relative;
    z-index: 2;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    text-decoration: none;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-nav a {
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav a::after {
    display: block;
    width: 0;
    height: 1px;
    margin-top: 4px;
    background: currentcolor;
    content: "";
    transition: width 160ms ease;
}

.primary-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    position: relative;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    cursor: pointer;
}

.menu-label {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu-lines {
    display: grid;
    width: 24px;
    gap: 6px;
}

.menu-lines span {
    display: block;
    height: 1px;
    background: currentcolor;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: end;
    overflow: hidden;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.015);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgb(8 8 10 / 90%) 0%, rgb(8 8 10 / 34%) 54%, rgb(8 8 10 / 10%) 100%),
        linear-gradient(0deg, rgb(8 8 10 / 88%) 0%, rgb(8 8 10 / 0%) 62%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100vw - 96px));
    margin: 0 0 clamp(72px, 10vh, 120px) 48px;
}

.hero h1,
.press-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(6rem, 12.2vw, 13.5rem);
    line-height: 0.72;
    letter-spacing: -0.06em;
}

.hero-logline {
    max-width: 690px;
    margin-bottom: 30px;
    color: rgb(241 236 226 / 90%);
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
    line-height: 1.22;
}

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

.hero-award {
    position: absolute;
    z-index: 1;
    right: 48px;
    bottom: 60px;
    display: grid;
    width: 300px;
    gap: 5px;
    padding-top: 16px;
    border-top: 1px solid rgb(241 236 226 / 70%);
    text-align: right;
}

.hero-award span,
.hero-award small {
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-award strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
}

.festival-record {
    background: var(--paper);
    color: var(--ink);
}

.festival-record .section-kicker,
.press-section .section-kicker,
.press-hero .section-kicker {
    color: var(--mauve-dark);
}

.festival-intro {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.72fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 90px;
}

.festival-intro h2 {
    margin-bottom: 0;
}

.festival-intro > p {
    margin-bottom: 12px;
    color: rgb(11 11 13 / 66%);
}

.honors-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 20px;
    margin-bottom: 90px;
}

.honor-card {
    min-height: 460px;
    background: var(--ink);
    color: var(--paper);
}

.honor-card-featured {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.72fr);
    align-items: center;
}

.honor-card-featured img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: contain;
    padding: 34px;
}

.honor-card-featured > div {
    padding: 42px;
}

.honor-card h3 {
    margin-bottom: 22px;
}

.honor-card-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}

.honor-rule {
    display: block;
    width: 100%;
    height: 1px;
    margin: 34px 0;
    background: var(--line);
}

.honor-note {
    color: var(--muted);
}

.festival-list {
    border-top: 1px solid var(--line-dark);
}

.festival-list p {
    display: grid;
    grid-template-columns: 54px 1fr;
    margin: 0;
    padding: 23px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2.6rem);
    line-height: 1;
}

.festival-list span {
    color: rgb(11 11 13 / 60%);
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.film-section {
    background: var(--ink-soft);
}

.film-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(64px, 8vw, 140px);
    align-items: center;
}

.film-copy .lead {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    line-height: 1.32;
}

.film-copy > p:not(.section-kicker) {
    color: var(--paper-soft);
}

.film-still {
    margin: 0;
}

.film-still img {
    width: 100%;
    aspect-ratio: 1.9 / 1;
    object-fit: cover;
}

.film-still figcaption,
.press-poster figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.film-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 48px 0 0;
    border-top: 1px solid var(--line);
}

.film-facts div {
    display: grid;
    gap: 3px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.film-facts dt,
.press-specs dt,
.press-credits dt {
    color: var(--muted);
    font-size: 0.61rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.film-facts dd,
.press-specs dd,
.press-credits dd {
    margin: 0;
}

.trailer-section {
    background: #050506;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.section-heading-row h2 {
    margin-bottom: 0;
}

.section-heading-row > p {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-frame {
    border: 1px solid var(--line);
    background: #000;
}

.video-frame video {
    width: 100%;
    aspect-ratio: 1.9 / 1;
}

.statement-section {
    background: var(--mauve-dark);
}

.statement-grid {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 80px;
}

.statement-grid .section-kicker {
    color: var(--paper);
}

.statement-grid h2 {
    max-width: 1100px;
}

.statement-grid > div > p:not(.signature) {
    max-width: 780px;
    color: rgb(241 236 226 / 94%);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.42;
}

.signature {
    margin-top: 55px;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
}

.signature span {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-style: normal;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gallery-section {
    background: var(--ink);
}

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

.gallery-item {
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #000;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    transition: transform 500ms ease, opacity 300ms ease;
}

.gallery-item:hover img {
    opacity: 0.86;
    transform: scale(1.015);
}

.gallery-wide {
    grid-column: 1 / -1;
}

.gallery-wide img {
    aspect-ratio: 1.9 / 1;
}

.lightbox {
    width: min(94vw, 1500px);
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper);
}

.lightbox::backdrop {
    background: rgb(5 5 6 / 94%);
}

.lightbox img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
}

.lightbox-close {
    display: block;
    margin: 0 0 12px auto;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-size: 0.69rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.filmmakers-section {
    background: var(--paper);
    color: var(--ink);
}

.filmmakers-section .section-kicker {
    color: var(--mauve-dark);
}

.principal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 70px 0 90px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
}

.principal {
    min-height: 330px;
    padding: 42px;
    background: var(--paper);
}

.principal-number {
    color: var(--mauve-dark);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.principal h3 {
    margin: 74px 0 14px;
}

.principal > p:not(.principal-number) {
    color: rgb(11 11 13 / 64%);
}

.principal a {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.credits {
    border-top: 1px solid var(--line-dark);
}

.credits p {
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) 1fr;
    gap: 30px;
    margin: 0;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.2vw, 2.1rem);
    line-height: 1.25;
}

.credits span {
    color: var(--mauve-dark);
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.press-cta {
    background: var(--ink-soft);
}

.press-cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: end;
}

.press-cta h2 {
    margin-bottom: 0;
}

.press-cta-inner > div:last-child p {
    margin-bottom: 30px;
    color: var(--paper-soft);
}

.site-footer {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 60px;
    align-items: end;
    padding: 70px 48px 34px;
    border-top: 1px solid var(--line);
    background: #060607;
    color: var(--muted);
    font-size: 0.69rem;
}

.footer-title {
    margin-bottom: 4px;
    color: var(--paper);
    font-family: var(--serif);
    font-size: 2rem;
}

.site-footer p {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--paper-soft);
    text-decoration: none;
}

.copyright {
    text-align: right;
}

/* Press kit */
.press-hero {
    padding: 150px 0 120px;
    background: var(--paper);
    color: var(--ink);
}

.press-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
    gap: clamp(70px, 10vw, 170px);
    align-items: center;
}

.press-hero h1 {
    font-size: clamp(6rem, 10.5vw, 11rem);
}

.press-deck {
    max-width: 670px;
    margin-bottom: 34px;
    color: rgb(11 11 13 / 66%);
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.2vw, 2.3rem);
    line-height: 1.3;
}

.press-hero .button-primary,
.press-section .button-primary {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.press-hero .button-primary:hover,
.press-section .button-primary:hover {
    background: transparent;
    color: var(--ink);
}

.press-poster {
    margin: 0;
}

.press-poster img {
    width: 100%;
    height: auto;
    aspect-ratio: 1400 / 2074;
    object-fit: contain;
    box-shadow: 0 25px 55px rgb(11 11 13 / 18%);
}

.press-subnav {
    position: sticky;
    z-index: 50;
    top: 77px;
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    background: rgb(11 11 13 / 96%);
    scrollbar-width: none;
}

.press-subnav::-webkit-scrollbar {
    display: none;
}

.press-subnav a {
    flex: 0 0 auto;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.press-section {
    padding: clamp(90px, 10vw, 160px) 0;
    background: var(--paper);
    color: var(--ink);
}

.press-section-tinted {
    background: #dcd4cb;
}

.press-copy-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
    gap: clamp(70px, 9vw, 150px);
}

.press-copy h3 {
    margin: 20px 0 18px;
    font-size: 2rem;
}

.press-copy p {
    max-width: 800px;
    color: rgb(11 11 13 / 74%);
    font-family: var(--serif);
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    line-height: 1.48;
}

.press-festival-table {
    margin-top: 60px;
    border-top: 1px solid var(--line-dark);
}

.press-festival-table > div {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 70px;
    gap: 30px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-dark);
    align-items: baseline;
}

.press-festival-table strong {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
}

.verification-note {
    max-width: 700px;
    margin: 34px 0 0;
    color: rgb(11 11 13 / 56%);
    font-size: 0.76rem;
}

.press-specs,
.press-credits {
    margin: 0;
    border-top: 1px solid var(--line-dark);
}

.press-credits {
    margin-top: 50px;
}

.press-specs div,
.press-credits div {
    display: grid;
    grid-template-columns: minmax(170px, 0.45fr) 1fr;
    gap: 34px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
}

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

.download-card {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr auto;
    min-height: 230px;
    gap: 26px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line-dark);
    background: var(--paper);
}

.download-card img {
    width: 170px;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.download-card-poster img {
    width: 136px;
    height: auto;
    aspect-ratio: 1400 / 2074;
    object-fit: contain;
    object-position: center;
    justify-self: center;
}

.download-card-laurel img {
    object-fit: contain;
    background: #111014;
}

.download-card p {
    margin-bottom: 4px;
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1;
}

.download-card span {
    color: rgb(11 11 13 / 55%);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.download-card > a {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.download-monogram {
    display: grid;
    width: 170px;
    height: 180px;
    place-items: center;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 3rem;
}

.contact-details > p {
    max-width: 680px;
    color: rgb(11 11 13 / 65%);
    font-family: var(--serif);
    font-size: 1.55rem;
}

.contact-email {
    display: inline-block;
    margin: 28px 0 42px;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 3.2vw, 3.4rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.contact-links a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.error-page {
    display: grid;
    min-height: 80svh;
    place-items: center;
    padding: 140px 24px;
    text-align: center;
}

.error-page h1 {
    margin-bottom: 24px;
    font-size: clamp(4rem, 10vw, 9rem);
}

.error-page p:not(.section-kicker) {
    margin-bottom: 34px;
    color: var(--muted);
}

.legal-page {
    min-height: 80svh;
    padding-top: 160px;
    padding-bottom: 130px;
}

.legal-page h1 {
    margin-bottom: 16px;
    font-size: clamp(5rem, 11vw, 10rem);
}

.legal-updated {
    margin-bottom: 70px;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-copy {
    max-width: 820px;
    margin-left: auto;
}

.legal-copy h2 {
    margin: 52px 0 16px;
    font-size: 2.5rem;
}

.legal-copy p {
    color: var(--paper-soft);
    font-family: var(--serif);
    font-size: 1.35rem;
}

@media (width <= 1100px) {
    :root {
        --shell: min(100% - 56px, 1420px);
    }

    .hero-content {
        width: calc(100vw - 56px);
        margin-left: 28px;
    }

    .hero-award {
        right: 28px;
    }

    .honors-grid,
    .film-grid,
    .press-cta-inner,
    .press-hero-grid,
    .press-copy-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .film-grid {
        gap: 70px;
    }

    .film-still {
        order: -1;
    }

    .press-poster {
        width: min(520px, 100%);
    }

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

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .copyright {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (width <= 820px) {
    :root {
        --shell: calc(100vw - 40px);
    }

    h2 {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .section {
        padding: 96px 0;
    }

    .site-header {
        min-height: 68px;
        padding: 15px 20px;
    }

    .wordmark {
        font-size: 1.45rem;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        padding: 96px 28px 48px;
        background: var(--ink);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav a {
        font-family: var(--serif);
        font-size: clamp(2.6rem, 10vw, 4rem);
        font-weight: 500;
        letter-spacing: -0.025em;
        line-height: 1;
        text-transform: none;
    }

    .primary-nav a::after {
        display: none;
    }

    .menu-open .menu-lines span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-open .menu-lines span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .hero {
        min-height: 780px;
    }

    .hero-image {
        object-position: 46% center;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgb(8 8 10 / 95%) 0%, rgb(8 8 10 / 50%) 56%, rgb(8 8 10 / 16%) 100%);
    }

    .hero-content {
        width: calc(100vw - 40px);
        margin: 0 20px 42px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(5.1rem, 24vw, 8.4rem);
    }

    .hero-logline {
        font-size: 1.35rem;
    }

    .hero-award {
        display: none;
    }

    .festival-intro,
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .festival-intro {
        margin-bottom: 64px;
    }

    .honors-grid {
        margin-bottom: 64px;
    }

    .honor-card-featured {
        grid-template-columns: 1fr;
    }

    .honor-card-featured img {
        min-height: 310px;
        padding: 20px;
    }

    .honor-card-featured > div,
    .honor-card-text {
        padding: 32px;
    }

    .festival-list p {
        grid-template-columns: 36px 1fr;
        font-size: 1.55rem;
    }

    .film-facts {
        grid-template-columns: 1fr;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row > p {
        margin-top: 22px;
    }

    .statement-grid {
        gap: 0;
    }

    .film-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-wide {
        grid-column: auto;
    }

    .gallery-item img,
    .gallery-wide img {
        min-height: 0;
        aspect-ratio: 1.45 / 1;
    }

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

    .principal {
        min-height: 280px;
    }

    .principal h3 {
        margin-top: 55px;
    }

    .credits p {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px 20px 28px;
    }

    .copyright {
        grid-column: auto;
    }

    .press-hero {
        padding: 116px 0 86px;
    }

    .press-hero h1 {
        font-size: clamp(5.3rem, 24vw, 8rem);
    }

    .press-subnav {
        top: 67px;
    }

    .press-festival-table > div {
        grid-template-columns: 1fr auto;
        gap: 6px 18px;
    }

    .press-festival-table > div > :nth-child(2),
    .press-festival-table > div > :nth-child(3) {
        grid-column: 1 / -1;
    }

    .press-festival-table > div > :nth-child(4) {
        grid-column: 2;
        grid-row: 1;
    }

    .press-specs div,
    .press-credits div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .download-card {
        grid-template-columns: 110px 1fr;
        min-height: 180px;
    }

    .download-card img,
    .download-monogram {
        width: 110px;
        height: 125px;
    }

    .download-card-poster img {
        width: 110px;
        height: auto;
    }

    .download-card > a {
        grid-column: 2;
    }

    .contact-email {
        font-size: clamp(1.3rem, 6vw, 2.2rem);
    }
}

@media (width <= 480px) {
    .hero {
        min-height: 720px;
    }

    .hero h1 {
        font-size: 5.4rem;
    }

    .hero-actions {
        display: grid;
    }

    .honor-card {
        min-height: 0;
    }

    .honor-card-featured img {
        min-height: 260px;
    }

    .principal {
        padding: 30px;
    }

    .download-card {
        grid-template-columns: 1fr;
    }

    .download-card img,
    .download-monogram {
        width: 100%;
        height: 180px;
    }

    .download-card-poster img {
        width: 136px;
        height: auto;
    }

    .download-card > a {
        grid-column: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}
