@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/Cinzel-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --snow: #f3f2ef;
  --white: #ffffff;
  --ice-blue: #dbe6e8;
  --cold-blue: #91aab0;
  --fjord-blue: #526a73;
  --dark-blue: #172a35;
  --charcoal: #242628;
  --burgundy: #701719;
  --soft-burgundy: #8b3032;
  --light-grey: #d8d8d4;
  --display: "Cinzel", Georgia, "Times New Roman", serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --page: min(90vw, 1440px);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--snow);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

::selection {
  background: var(--burgundy);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(88px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  transition:
    min-height 350ms var(--ease),
    color 350ms ease,
    background-color 350ms ease,
    box-shadow 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header::after {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 0;
  left: clamp(1.25rem, 4vw, 4.5rem);
  height: 1px;
  background: rgb(255 255 255 / 0.25);
  content: "";
  transition: opacity 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  min-height: 72px;
  background: rgb(243 242 239 / 0.92);
  box-shadow: 0 8px 32px rgb(23 42 53 / 0.07);
  color: var(--dark-blue);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after,
.site-header.is-menu-open::after {
  opacity: 0;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.brand span {
  font-family: var(--display);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  letter-spacing: 0.085em;
}

.brand small {
  margin-top: 0.36rem;
  font-size: 0.48rem;
  letter-spacing: 0.31em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.7rem);
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
}

.language-switcher span {
  width: 1px;
  height: 0.9rem;
  background: currentColor;
  opacity: 0.35;
}

.language-button {
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.language-button.is-active {
  opacity: 1;
}

.menu-toggle {
  position: relative;
  z-index: 103;
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 7px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition:
    transform 260ms var(--ease),
    opacity 180ms ease;
}

.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(760px, 94svh);
  overflow: hidden;
  background: var(--dark-blue);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  animation: hero-breathe 18s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(10 24 33 / 0.71) 0%, rgb(10 24 33 / 0.35) 36%, rgb(10 24 33 / 0.03) 70%),
    linear-gradient(180deg, rgb(10 24 33 / 0.28) 0%, transparent 45%, rgb(10 24 33 / 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(88vw, 1440px);
  min-height: max(760px, 94svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + 3rem) 0 7rem;
}

.eyebrow,
.section-number,
.role {
  margin: 0 0 1.6rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 8.1vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.international-title {
  margin: 1.5rem 0 0.4rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.85vw, 1.65rem);
  letter-spacing: 0.14em;
}

.hero-rule {
  width: min(80vw, 530px);
  height: 1px;
  margin: 1.8rem 0;
  background: rgb(255 255 255 / 0.48);
  transform-origin: left;
  animation: line-in 1.4s 400ms var(--ease) both;
}

.festival-status {
  margin: 0;
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  letter-spacing: 0.08em;
}

.hero blockquote {
  max-width: 630px;
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  font-style: italic;
  line-height: 1.4;
}

.film-meta {
  margin: 2rem 0 0;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.film-meta i {
  padding: 0 0.6rem;
  font-style: normal;
  opacity: 0.55;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.28);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2.2s infinite ease-in-out;
}

.section {
  padding: var(--section-space) 0;
}

.section-heading {
  width: var(--page);
  margin: 0 auto clamp(3rem, 6vw, 6rem);
}

.section-heading .section-number {
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.section-heading h2,
.contact-content h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading h2::after {
  display: block;
  width: clamp(70px, 9vw, 130px);
  height: 1px;
  margin-top: 1.6rem;
  background: currentColor;
  content: "";
}

.section-heading > p:last-child:not(.section-number) {
  margin: 1.25rem 0 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

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

.film-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(340px, 1.12fr) minmax(300px, 0.86fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 5.5rem);
  width: var(--page);
  margin: 0 auto;
}

.poster-wrap {
  margin: 0;
}

.poster-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ice-blue);
  box-shadow: 0 30px 80px rgb(23 42 53 / 0.16);
  cursor: zoom-in;
  text-align: initial;
}

.poster-wrap picture {
  display: block;
}

.poster-wrap img {
  width: 100%;
  height: auto;
  transition:
    transform 800ms var(--ease),
    filter 500ms ease;
}

.poster-button:hover img,
.poster-button:focus-visible img {
  filter: contrast(1.02);
  transform: scale(1.012);
}

.poster-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 50%;
  background: rgb(23 42 53 / 0.62);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.poster-zoom::before,
.poster-zoom::after {
  position: absolute;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
}

.poster-zoom::after {
  transform: rotate(90deg);
}

.poster-wrap figcaption,
.teaser-note {
  margin-top: 1rem;
  color: var(--fjord-blue);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-copy > p {
  margin: 0 0 1.6rem;
}

.film-copy .lead {
  color: var(--dark-blue);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  line-height: 1.55;
}

.facts {
  margin: 3.5rem 0 0;
  border-top: 1px solid var(--light-grey);
}

.facts div {
  display: grid;
  grid-template-columns: minmax(100px, 0.8fr) 1.2fr;
  gap: 1rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.facts dt,
.technical-grid dt {
  color: var(--fjord-blue);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts dd,
.technical-grid dd {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.35;
}

.teaser-column {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.teaser {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.35 / 1;
  background:
    linear-gradient(rgb(23 42 53 / 0.66), rgb(23 42 53 / 0.66)),
    url("assets/still-04-1280.jpg") center / cover no-repeat;
  color: var(--white);
}

.teaser iframe,
.teaser-placeholder {
  width: 100%;
  height: 100%;
}

.teaser iframe {
  display: block;
  border: 0;
}

.teaser-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.1rem;
}

.teaser-placeholder p {
  margin: 0;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.play-button {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.07);
  color: var(--white);
  cursor: default;
  backdrop-filter: blur(5px);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.stills-section,
.technical-section {
  background: var(--dark-blue);
  color: var(--snow);
}

.section-heading--light h2,
.section-heading--light .section-number {
  color: var(--snow);
}

.section-heading--light > p:last-child:not(.section-number) {
  color: var(--ice-blue);
}

.stills-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.65rem, 1.2vw, 1.25rem);
  width: min(95vw, 1700px);
  margin: 0 auto;
}

.still {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0b161d;
  cursor: zoom-in;
}

.still--d,
.still--e,
.still--f {
  grid-column: span 4;
}

.still img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
  transition:
    transform 900ms var(--ease),
    filter 700ms ease;
}

.still:hover img,
.still:focus-visible img {
  filter: contrast(1.04);
  transform: scale(1.025);
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
  min-height: 100svh;
  background: var(--white);
}

.statement-image {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.statement-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgb(255 255 255 / 0.32));
  content: "";
}

.statement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.statement-copy {
  align-self: center;
  padding: var(--section-space) clamp(2.5rem, 7vw, 8rem);
}

.statement-copy .section-heading {
  width: auto;
  margin: 0 0 4rem;
}

.long-copy {
  max-width: 800px;
}

.long-copy p {
  margin: 0 0 1.45rem;
}

.statement-copy blockquote {
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 2px solid var(--burgundy);
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.statement-copy blockquote span {
  display: block;
}

.director-section {
  background: var(--snow);
}

.director-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  width: var(--page);
  margin: 0 auto;
}

.director-portrait {
  position: relative;
  margin: 0;
  background: var(--white);
}

.director-portrait::before {
  position: absolute;
  z-index: -1;
  top: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  left: -1.5rem;
  border: 1px solid var(--burgundy);
  content: "";
}

.director-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.director-bio .role {
  margin-bottom: 1.2rem;
  color: var(--burgundy);
}

.director-bio h3 {
  margin: 0 0 clamp(2rem, 4vw, 4rem);
  color: var(--dark-blue);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.7vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: var(--page);
  margin: 0 auto;
  border-top: 1px solid rgb(219 230 232 / 0.3);
}

.technical-grid div {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) 1.28fr;
  align-items: baseline;
  gap: 1rem;
  min-height: 78px;
  padding: 1.3rem clamp(1rem, 2.5vw, 2.7rem);
  border-right: 1px solid rgb(219 230 232 / 0.3);
  border-bottom: 1px solid rgb(219 230 232 / 0.3);
}

.technical-grid div:nth-child(even) {
  border-right: 0;
}

.technical-grid dt {
  color: var(--cold-blue);
}

.technical-grid dd {
  color: var(--white);
}

.languages-section {
  background: var(--white);
}

.languages-intro {
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 5rem);
  padding: 0 5vw;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.55;
  text-align: center;
}

.language-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(88vw, 1100px);
  margin: 0 auto;
}

.language-cards div {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
  padding: 1.3rem;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  transition:
    background-color 300ms ease,
    color 300ms ease;
}

.language-cards div:hover {
  background: var(--burgundy);
  color: var(--white);
}

.language-cards strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.language-cards span {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.festivals-section {
  background: var(--ice-blue);
}

.festivals-section .section-heading h2 {
  max-width: 980px;
  font-size: clamp(2.05rem, 3.8vw, 4.2rem);
  letter-spacing: 0.005em;
  line-height: 1.08;
}

.festival-panel {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 6rem);
  border: 1px solid rgb(82 106 115 / 0.35);
  text-align: center;
}

.festival-main {
  max-width: 850px;
  margin: 0 auto 1rem;
  color: var(--dark-blue);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 4rem);
  line-height: 1.17;
}

.festival-main + p {
  margin: 0;
  color: var(--fjord-blue);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
}

.laurels-grid:not(:empty) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-section {
  position: relative;
  min-height: min(900px, 88svh);
  overflow: hidden;
  background: var(--dark-blue);
  color: var(--white);
}

.contact-background,
.contact-background img,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-background img {
  object-fit: cover;
  object-position: center;
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgb(10 24 33 / 0.92) 0%, rgb(10 24 33 / 0.64) 48%, rgb(10 24 33 / 0.2) 100%),
    linear-gradient(rgb(10 24 33 / 0.28), rgb(10 24 33 / 0.52));
}

.contact-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.contact-content .section-number {
  color: var(--cold-blue);
}

.contact-content h2 {
  color: var(--white);
}

.contact-intro {
  margin: 1.5rem 0 clamp(3rem, 6vw, 5rem);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-style: italic;
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(320px, 1.4fr);
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 900px;
}

.contact-details > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.contact-details ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.28);
  list-style: none;
}

.contact-details li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.28);
}

.contact-details li span {
  color: var(--cold-blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-details a:hover {
  color: var(--ice-blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 150px;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
  background: #0b1820;
  color: var(--cold-blue);
  font-size: 0.63rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0.25rem 0;
}

.back-to-top {
  position: relative;
  color: var(--white);
}

.back-to-top::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.8rem;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(2px);
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(60px, 0.1fr) minmax(0, 1fr) minmax(60px, 0.1fr);
  align-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  background: rgb(7 13 17 / 0.96);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox.is-poster {
  grid-template-columns: minmax(0, 1fr);
}

.lightbox.is-poster .lightbox-nav {
  display: none;
}

.lightbox.is-poster .lightbox-figure {
  grid-column: 1;
}

.lightbox.is-poster .lightbox-figure img {
  max-height: 90svh;
}

.lightbox-figure {
  grid-column: 2;
  margin: 0;
  text-align: center;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: 82svh;
  margin: auto;
  object-fit: contain;
  box-shadow: 0 35px 100px rgb(0 0 0 / 0.4);
}

.lightbox-figure figcaption {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--cold-blue);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
}

.lightbox-close span,
.lightbox-close span::after {
  position: absolute;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.lightbox-close span::after {
  transform: rotate(90deg);
}

.lightbox-nav {
  width: 60px;
  height: 60px;
  justify-self: center;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-prev span,
.lightbox-next span {
  width: 14px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.lightbox-prev span {
  transform: rotate(-45deg);
}

.lightbox-next span {
  transform: rotate(135deg);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@keyframes line-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  70%,
  100% {
    transform: translateY(200%);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 1.2rem;
  }

  .main-nav {
    gap: 1.25rem;
  }

  .film-layout {
    grid-template-columns: minmax(230px, 0.72fr) minmax(380px, 1.28fr);
  }

  .teaser-column {
    position: static;
    grid-column: 2;
  }

  .statement-section {
    grid-template-columns: minmax(310px, 0.68fr) minmax(450px, 1.32fr);
  }

  .technical-grid div {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.35rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --page: min(88vw, 760px);
  }

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

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .language-switcher {
    grid-column: 3;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    padding: 7rem 7vw 4rem;
    background: var(--snow);
    color: var(--dark-blue);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 260ms ease,
      transform 380ms var(--ease);
  }

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

  .main-nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: none;
  }

  .hero-content {
    width: var(--page);
  }

  .film-layout {
    grid-template-columns: minmax(220px, 0.75fr) minmax(340px, 1.25fr);
  }

  .teaser-column {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }

  .statement-section {
    display: block;
  }

  .statement-image {
    position: relative;
    height: min(62vw, 520px);
  }

  .statement-image::after {
    background: linear-gradient(180deg, transparent 70%, rgb(255 255 255 / 0.25));
  }

  .statement-copy {
    width: var(--page);
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .director-layout {
    grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
    gap: 3.5rem;
    width: min(92vw, 820px);
  }

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

  .technical-grid div,
  .technical-grid div:nth-child(even) {
    border-right: 0;
  }

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

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 2.5rem);
    --section-space: 5.5rem;
  }

  .site-header {
    padding: 0 1.25rem;
  }

  .site-header::after {
    right: 1.25rem;
    left: 1.25rem;
  }

  .brand span {
    font-size: 0.65rem;
  }

  .brand small {
    font-size: 0.42rem;
  }

  .language-switcher {
    gap: 0.35rem;
  }

  .language-button {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(10 24 33 / 0.7), rgb(10 24 33 / 0.12)),
      linear-gradient(180deg, rgb(10 24 33 / 0.28), transparent 48%, rgb(10 24 33 / 0.56));
  }

  .hero-content {
    min-height: 760px;
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.8rem);
    line-height: 0.88;
  }

  .international-title {
    letter-spacing: 0.1em;
  }

  .hero blockquote {
    max-width: 90%;
  }

  .film-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .film-meta i {
    padding: 0 0.2rem;
  }

  .scroll-cue {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .section-heading h2,
  .contact-content h2 {
    font-size: clamp(2.45rem, 14vw, 4.7rem);
  }

  .film-layout {
    display: flex;
    flex-direction: column;
  }

  .poster-wrap {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .film-copy {
    margin-top: 1.5rem;
  }

  .teaser-column {
    width: 100%;
  }

  .facts div {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .stills-grid {
    display: block;
    width: 100%;
  }

  .still {
    display: block;
    width: 100%;
    margin-bottom: 0.65rem;
  }

  .still:nth-child(even) {
    width: calc(100% - 2.5rem);
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }

  .statement-copy blockquote {
    font-size: 2rem;
  }

  .director-layout {
    display: flex;
    flex-direction: column;
    width: var(--page);
  }

  .director-portrait {
    width: calc(100% - 1.5rem);
    margin-left: 1.5rem;
  }

  .director-bio h3 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .technical-grid div {
    grid-template-columns: minmax(115px, 0.8fr) 1.2fr;
    padding-right: 0;
    padding-left: 0;
  }

  .language-cards {
    grid-template-columns: 1fr;
  }

  .festival-panel {
    width: var(--page);
  }

  .contact-section {
    min-height: 820px;
  }

  .contact-background img {
    object-position: 46% center;
  }

  .contact-overlay {
    background: rgb(10 24 33 / 0.77);
  }

  .contact-details {
    display: block;
  }

  .contact-details > p {
    margin-bottom: 2.5rem;
  }

  .contact-details li {
    grid-template-columns: 100px 1fr;
  }

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

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 1rem 0;
  }

  .lightbox-nav {
    width: 44px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 150px;
  }

  .site-header {
    gap: 0.35rem;
  }

  .menu-toggle {
    width: 38px;
  }

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

  .technical-grid div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .contact-details li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Editorial direction aligned with the film's official visual proposal. */
body {
  background: var(--white);
  font-family: var(--serif);
}

.main-nav,
.language-switcher,
.eyebrow,
.section-number,
.role,
.film-meta,
.facts dt,
.technical-grid dt,
.poster-wrap figcaption,
.teaser-note,
.teaser-placeholder p,
.language-cards span,
.site-footer {
  font-family: var(--sans);
}

.main-nav {
  gap: clamp(0.75rem, 1.45vw, 1.65rem);
}

.main-nav a {
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.site-header {
  color: var(--dark-blue);
}

.site-header::after {
  background: rgb(23 42 53 / 0.18);
}

.brand {
  color: var(--burgundy);
}

.hero {
  min-height: max(650px, 78svh);
  background: var(--snow);
  color: var(--charcoal);
}

.hero-media img {
  filter: saturate(0.42) contrast(0.86) brightness(1.13);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(243 242 239 / 0.96) 0%, rgb(243 242 239 / 0.76) 30%, rgb(243 242 239 / 0.18) 62%, transparent 100%),
    linear-gradient(180deg, rgb(243 242 239 / 0.5) 0%, transparent 42%, rgb(23 42 53 / 0.1) 100%);
}

.hero-content {
  align-items: flex-start;
  min-height: max(650px, 78svh);
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 4rem;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  max-width: 700px;
  color: var(--burgundy);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-align: center;
}

.international-title {
  width: min(100%, 700px);
  margin-top: 1rem;
  color: var(--soft-burgundy);
  font-size: clamp(0.9rem, 1.4vw, 1.35rem);
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-rule {
  width: 34px;
  margin: 1.25rem 0 1.1rem 333px;
  background: var(--burgundy);
}

.festival-status {
  width: min(100%, 700px);
  color: var(--fjord-blue);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}

.hero blockquote {
  width: min(100%, 700px);
  margin-top: 2.25rem;
  color: var(--fjord-blue);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-style: normal;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
}

.film-meta {
  width: min(100%, 700px);
  margin-top: 1.65rem;
  color: var(--dark-blue);
  text-align: center;
}

.scroll-cue {
  color: var(--dark-blue);
}

.scroll-cue i {
  background: rgb(23 42 53 / 0.25);
}

.scroll-cue i::after {
  background: var(--burgundy);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading .section-number {
  margin-bottom: 0.55rem;
}

.section-heading h2,
.contact-content h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-heading h2::after {
  width: 34px;
  margin-top: 0.7rem;
}

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

.film-layout {
  grid-template-columns: minmax(220px, 0.72fr) minmax(330px, 1.05fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 3.5vw, 4.5rem);
}

.film-copy .lead {
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
}

.film-copy > p,
.long-copy {
  font-size: 0.92rem;
  line-height: 1.62;
}

.facts {
  margin-top: 2.25rem;
}

.facts div {
  padding: 0.52rem 0;
}

.teaser {
  aspect-ratio: 1 / 1.18;
  background:
    linear-gradient(rgb(82 106 115 / 0.6), rgb(82 106 115 / 0.6)),
    url("assets/still-04-1280.jpg") center / cover no-repeat;
}

.stills-section {
  background: var(--white);
  color: var(--charcoal);
}

.stills-section .section-heading h2,
.stills-section .section-heading .section-number {
  color: var(--burgundy);
}

.stills-section .section-heading > p:last-child:not(.section-number) {
  color: var(--fjord-blue);
}

.stills-grid {
  width: var(--page);
  gap: clamp(0.45rem, 0.8vw, 0.85rem);
}

.statement-section {
  grid-template-columns: 1fr 1.15fr;
  width: var(--page);
  min-height: 0;
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  background: linear-gradient(90deg, var(--snow), var(--white));
}

.statement-image {
  position: relative;
  top: auto;
  order: 2;
  min-height: 520px;
  height: auto;
}

.statement-image::after {
  background: linear-gradient(90deg, var(--white), transparent 30%);
}

.statement-image img {
  filter: saturate(0.42) contrast(0.88) brightness(1.08);
  object-position: 62% center;
}

.statement-copy {
  order: 1;
  padding: clamp(2.5rem, 4vw, 4.5rem);
}

.statement-copy .section-heading {
  margin-bottom: 2rem;
}

.statement-copy blockquote {
  margin-top: 2.5rem;
  padding-left: 1.25rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.director-section {
  padding-top: 0;
  background: var(--white);
}

.director-section > .section-heading {
  display: none;
}

.director-layout {
  grid-template-columns: minmax(260px, 0.65fr) minmax(460px, 1.35fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  padding: clamp(2rem, 3.5vw, 3.5rem);
  background: linear-gradient(110deg, var(--snow), var(--white));
}

.director-portrait {
  max-width: 430px;
}

.director-portrait::before {
  display: none;
}

.director-bio {
  max-width: 720px;
  padding: 1rem 0;
}

.director-bio .role {
  margin-bottom: 0.65rem;
}

.director-bio h3 {
  margin-bottom: 1.8rem;
  font-size: clamp(1.65rem, 2.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.08;
}

.soundtrack-section {
  padding: 0;
  background: var(--snow);
}

.soundtrack-details {
  align-self: center;
  padding: clamp(2.75rem, 4vw, 4rem) 0;
}

.soundtrack-details .section-heading {
  width: auto;
  margin: 0 0 1.35rem;
}

.soundtrack-credit {
  width: auto;
  margin: 0 0 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgb(82 106 115 / 0.22);
}

.soundtrack-credit span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--fjord-blue);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.soundtrack-credit h3 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.08;
}

.soundtrack-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(240px, 0.9fr) minmax(180px, 0.56fr);
  align-items: stretch;
  gap: clamp(1.4rem, 2.8vw, 3.5rem);
  width: var(--page);
  margin: 0 auto;
}

.composer-portrait,
.soundtrack-cover,
.book-visual {
  margin: 0;
}

.composer-portrait {
  align-self: stretch;
  overflow: hidden;
  background: #050505;
}

.composer-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.soundtrack-copy {
  max-width: 520px;
}

.soundtrack-lead {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1.55;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgb(82 106 115 / 0.3);
  color: var(--fjord-blue);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.platform:hover,
.platform:focus-visible {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.platform-mark {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  background: currentColor;
  mask: var(--platform-icon) center / contain no-repeat;
  -webkit-mask: var(--platform-icon) center / contain no-repeat;
}

.platform-mark--spotify {
  --platform-icon: url("assets/platforms/spotify.svg");
}

.platform-mark--apple {
  --platform-icon: url("assets/platforms/apple-music.svg");
}

.soundtrack-cover {
  align-self: center;
  margin: clamp(2.75rem, 4vw, 4rem) 0;
  box-shadow: 0 28px 70px rgb(23 42 53 / 0.14);
}

.soundtrack-cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.book-section {
  background: var(--white);
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(480px, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(110deg, var(--snow), var(--white));
  border: 1px solid rgb(82 106 115 / 0.16);
}

.book-visual {
  align-self: stretch;
  min-height: 520px;
}

.book-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-copy {
  padding: clamp(2.5rem, 5vw, 5.5rem);
}

.book-copy .section-heading {
  margin-bottom: 2rem;
}

.book-copy .section-heading h2 {
  font-size: clamp(1.15rem, 1.6vw, 1.65rem);
  letter-spacing: 0;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.book-edition {
  margin: 0 0 1.4rem;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
}

.book-copy > p:not(.book-edition) {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.book-contact {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  margin-top: 2.25rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.book-contact span {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-contact small {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.book-contact:hover,
.book-contact:focus-visible {
  background: var(--burgundy);
  color: var(--white);
}

.information-band {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 1fr;
  width: var(--page);
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}

.information-band > .section {
  min-width: 0;
  padding: clamp(2rem, 3vw, 3rem);
  border-right: 1px solid var(--light-grey);
  background: var(--white);
  color: var(--charcoal);
}

.information-band > .section:last-child {
  border-right: 0;
}

.information-band .section-heading {
  width: auto;
  margin: 0 0 1.5rem;
}

.information-band .section-heading .section-number {
  display: none;
}

.information-band .section-heading h2,
.information-band .festivals-section .section-heading h2 {
  color: var(--burgundy);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: 0;
  line-height: 1.2;
}

.information-band .technical-grid {
  display: block;
  width: auto;
  border-top-color: var(--light-grey);
}

.information-band .technical-grid div,
.information-band .technical-grid div:nth-child(even) {
  grid-template-columns: minmax(110px, 0.92fr) 1.08fr;
  gap: 0.6rem;
  min-height: 0;
  padding: 0.42rem 0;
  border-right: 0;
  border-bottom-color: var(--light-grey);
}

.information-band .technical-grid dt {
  color: var(--fjord-blue);
  font-size: 0.53rem;
}

.information-band .technical-grid dd {
  color: var(--charcoal);
  font-size: 0.76rem;
}

.information-band .languages-intro {
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.83rem;
  line-height: 1.5;
  text-align: left;
}

.information-band .language-cards {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: auto;
}

.information-band .language-cards div {
  min-height: 42px;
  padding: 0.55rem 0.75rem;
}

.information-band .language-cards strong {
  font-size: 1rem;
}

.information-band .festival-panel {
  width: auto;
  padding: 0;
  border: 0;
  text-align: left;
}

.information-band .festival-main {
  margin-bottom: 0.8rem;
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  font-style: italic;
  line-height: 1.45;
}

.information-band .festival-main + p {
  font-size: 0.67rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.contact-section {
  min-height: 520px;
}

.contact-content {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.site-footer {
  min-height: 78px;
  background: var(--burgundy);
  color: rgb(255 255 255 / 0.78);
}

@media (max-width: 1100px) {
  .hero-rule {
    margin-left: min(333px, calc(50% - 17px));
  }

  .film-layout {
    grid-template-columns: minmax(220px, 0.75fr) minmax(340px, 1.25fr);
  }

  .teaser-column {
    grid-column: 1 / -1;
  }

  .teaser {
    aspect-ratio: 2.35 / 1;
  }

  .book-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .information-band {
    grid-template-columns: 1fr 1fr;
  }

  .information-band .technical-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 0.75rem;
  }

  .main-nav a {
    font-size: clamp(1.7rem, 7vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
  }

  .soundtrack-layout,
  .book-layout {
    grid-template-columns: 1fr;
  }

  .soundtrack-section {
    padding: 2.75rem 0;
  }

  .soundtrack-details {
    padding: 0;
    order: 2;
  }

  .soundtrack-cover {
    order: 1;
    width: min(100%, 560px);
    margin: 0;
  }

  .composer-portrait {
    align-self: auto;
    order: 3;
    width: min(100%, 560px);
  }

  .composer-portrait img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .book-visual {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .hero,
  .hero-content {
    min-height: 690px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgb(243 242 239 / 0.88) 0%, rgb(243 242 239 / 0.58) 55%, rgb(23 42 53 / 0.14) 100%),
      linear-gradient(90deg, rgb(243 242 239 / 0.88), transparent);
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .international-title,
  .festival-status,
  .hero blockquote,
  .film-meta {
    width: 100%;
  }

  .hero-rule {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading h2,
  .contact-content h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .statement-section {
    display: flex;
    flex-direction: column;
  }

  .statement-image {
    order: 1;
    min-height: 300px;
  }

  .statement-copy {
    order: 2;
  }

  .director-layout {
    background: var(--snow);
  }

  .soundtrack-layout,
  .book-layout {
    grid-template-columns: 1fr;
  }

  .soundtrack-details {
    order: 2;
  }

  .composer-portrait {
    order: 3;
    width: min(100%, 520px);
  }

  .soundtrack-cover {
    order: 1;
    width: min(100%, 520px);
  }

  .book-visual {
    min-height: 0;
  }

  .book-copy {
    padding: 2.25rem;
  }

  .information-band {
    grid-template-columns: 1fr;
  }

  .information-band .technical-section {
    grid-column: auto;
  }

  .information-band > .section {
    border-right: 0;
    border-bottom: 1px solid var(--light-grey);
  }

  .information-band > .section:last-child {
    border-bottom: 0;
  }
}
