/* ================================================================
   BALLADA — OFFICIAL WEBSITE
   CLEAN MASTER STYLESHEET
   ================================================================ */

/* ----------------------------------------------------------------
   01. TOKENS
   ---------------------------------------------------------------- */

:root {
  --black: #111412;
  --black-soft: #181c19;
  --black-warm: #20211d;

  --paper: #eee9dc;
  --paper-light: #f5f1e7;

  --ink: #292b27;
  --ink-soft: #53544e;

  --rust: #bd5633;
  --rust-dark: #8d3e29;
  --blue: #72999b;
  --blue-dark: #426d72;
  --ochre: #b89357;
  --olive: #70725a;

  --white: #f7f5ef;

  --line-light: rgba(20, 20, 20, .14);
  --line-dark: rgba(255, 255, 255, .14);

  --container: 1480px;
  --header-height: 78px;

  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;

  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

/* ----------------------------------------------------------------
   02. RESET / BASE
   ---------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
.brand {
  font-family: var(--serif);
  font-weight: 400;
}

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

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 6vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

p {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rust);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--ochre);
}

.section-index {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: .85rem;
  opacity: .42;
}

.lead-text {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.42;
}

.large-copy {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  line-height: 1.32;
}

/* ----------------------------------------------------------------
   03. GLOBAL LAYOUT
   ---------------------------------------------------------------- */

.container,
.header-inner {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

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

.section-paper {
  color: var(--ink);
  background:
    linear-gradient(rgba(242, 238, 225, .96), rgba(242, 238, 225, .96)),
    url("assets/background.jpg") center / cover;
}

.section-dark {
  color: white;
  background: var(--black);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: clamp(50px, 7vw, 100px);
}

.section-intro {
  max-width: 460px;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .58);
}

.section-intro.dark {
  color: rgba(30, 30, 30, .62);
}

/* ----------------------------------------------------------------
   04. PAGE PROGRESS / HEADER / NAV
   ---------------------------------------------------------------- */

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 0;
  height: 2px;
  background: var(--rust);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.site-header.scrolled {
  background: rgba(15, 18, 16, .93);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  position: relative;
  z-index: 510;
  font-size: 1.3rem;
  letter-spacing: .16em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.5vw, 27px);
}

.main-nav a {
  position: relative;
  font-size: .62rem;
  letter-spacing: .115em;
  text-transform: uppercase;
  opacity: .74;
  transition: color .25s ease, opacity .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width .3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ochre);
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  position: relative;
  z-index: 510;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: white;
  transition: transform .3s ease, opacity .3s ease;
}

/* ----------------------------------------------------------------
   05. HERO
   ---------------------------------------------------------------- */

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

.hero-media,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 12, 11, .86) 0%, rgba(10, 12, 11, .62) 35%, rgba(10, 12, 11, .18) 72%, rgba(10, 12, 11, .15) 100%),
    linear-gradient(0deg, rgba(10, 12, 11, .62), transparent 45%);
}

.hero-grain {
  z-index: 2;
  opacity: .021;
  pointer-events: none;
  background: url("assets/paperTexture.jpg") center / 400px;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: var(--header-height);
}

.hero-kicker {
  margin-bottom: 23px;
  color: var(--ochre);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 100%;

  margin-bottom: 34px;

  font-size:
    clamp(
      3.2rem,
      10.5vw,
      9.5rem
    );

  line-height: .82;

  letter-spacing: .02em;

  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-line {
  max-width: 620px;
  margin-bottom: 42px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.5;
}

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

.button {
  min-width: 160px;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, .5);
  text-align: center;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

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

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

.button-primary:hover {
  background: var(--rust-dark);
}

.button-outline:hover {
  background: rgba(255, 255, 255, .1);
}

.scroll-indicator {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 32px;
  width: 32px;
  height: 52px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 30px;
}

.scroll-indicator span {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: white;
  animation: scrollDot 1.9s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 24px); }
}

/* ----------------------------------------------------------------
   06. THE FILM
   ---------------------------------------------------------------- */

.film-story-section {
  overflow: hidden;
}

.film-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: clamp(55px, 9vw, 150px);
}

.film-copy {
  max-width: 720px;
}

.film-copy h2 {
  max-width: 700px;
}

.film-copy > p:not(.eyebrow, .section-index, .lead-text, .film-turn, .film-statement) {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.image-frame {
  position: relative;
  overflow: hidden;
}

.film-story-section .image-frame-large {
  aspect-ratio: 4 / 5;
  background: white;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.film-story-section .image-frame-large img {
  object-position: center top;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.film-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  font-size: 0.85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.film-divider {
  width: 80px;
  height: 1px;
  margin: 45px 0;
  background: var(--rust);
}

.film-turn {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
}

.film-statement {
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.55;
  color: var(--ink);
}

.film-statement strong {
  color: var(--rust);
  font-weight: 400;
}

.film-portrait-wrap {
  position: sticky;
  top: 110px;
}

/* ================================================================
   FILM — INTERMEDIATE / SMALL DESKTOP
================================================================ */



  .film-story-section .film-layout {
    grid-template-columns:
      minmax(0, .95fr)
      minmax(0, 1.05fr);

    gap: 42px;
  }


  .film-story-section .film-copy,
  .film-story-section .film-visual {
    min-width: 0;
  }


  .film-story-section .film-copy h2 {
    font-size:
      clamp(
        3rem,
        6.5vw,
        4.8rem
      );

    line-height: .95;
  }


  .film-story-section .film-copy > p:not(
    .eyebrow,
    .section-index,
    .lead-text,
    .film-turn,
    .film-statement
  ) {
    font-size: 1rem;
  }


  .film-story-section .lead-text {
    font-size:
      clamp(
        1.2rem,
        2vw,
        1.55rem
      );
  }


  .film-portrait-wrap {
    top: 90px;
  }






.identity-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 25px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.identity-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.identity-year {
  margin-bottom: 3px;
  color: var(--rust);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.identity-item strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.identity-item small {
  color: var(--ink-soft);
  font-size: .66rem;
  line-height: 1.4;
}

.identity-arrow {
  color: var(--rust);
  font-family: var(--serif);
  opacity: .6;
}

.film-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 25px;
}

.film-themes span {
  position: relative;
  color: var(--ink-soft);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.film-themes span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  color: var(--rust);
}

/* ----------------------------------------------------------------
   07. THE IDEA
   ---------------------------------------------------------------- */

.section-idea {
  position: relative;
  padding: clamp(120px, 13vw, 210px) 0;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #17201d 0%, #111412 65%, #1d1d18 100%);
}

.section-idea::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, .018), 0 0 0 180px rgba(255, 255, 255, .012);
  pointer-events: none;
}

.idea-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.idea-heading h2 {
  max-width: 650px;
}

.idea-copy {
  max-width: 760px;
}

.idea-copy p {
  color: rgba(255, 255, 255, .68);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.78;
}

.idea-lead {
  margin-bottom: 35px;
  color: white !important;
  font-size: clamp(1.4rem, 2.3vw, 2.3rem) !important;
  line-height: 1.4 !important;
}

.idea-quote {
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: var(--ochre);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.2;
}

/* ----------------------------------------------------------------
   08. WATCH
   ---------------------------------------------------------------- */

.video-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card-feature {
  grid-column: 1 / -1;
}

.video-poster {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: black;
  cursor: pointer;
}

.video-card-feature .video-poster {
  aspect-ratio: 2.2 / 1;
}

.video-card:not(.video-card-feature) .video-poster {
  aspect-ratio: 16 / 9;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .8s ease, opacity .5s ease;
}

.video-poster:hover img {
  transform: scale(1.035);
  opacity: .72;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(10, 12, 11, .62);
  backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s ease;
}

.video-poster:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(181, 79, 46, .9);
}

.play-icon span {
  margin-left: 3px;
  font-size: .9rem;
}

.card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
}

.card-label {
  margin-bottom: 7px;
  color: var(--ochre);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.card-description {
  max-width: 570px;
  margin-top: 10px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .58);
  font-family: var(--serif);
  font-size: .96rem;
  line-height: 1.6;
}

.card-arrow {
  margin-top: 5px;
  opacity: .45;
}

/* ----------------------------------------------------------------
   09. HYPERBOREA / INGEBORGA
   ---------------------------------------------------------------- */

.ingeborga-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(130px, 13vw, 220px) 0;
  overflow: hidden;
}

.ingeborga-background,
.ingeborga-overlay {
  position: absolute;
  inset: 0;
}

.ingeborga-background img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.ingeborga-overlay {
  background:
    linear-gradient(90deg, rgba(13, 20, 18, .92), rgba(13, 20, 18, .64) 48%, rgba(13, 20, 18, .25)),
    linear-gradient(0deg, rgba(10, 15, 13, .78), transparent 50%);
}

.ingeborga-inner {
  position: relative;
  z-index: 4;
}

.ingeborga-heading {
  max-width: 770px;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.ingeborga-heading p:not(.section-index, .eyebrow) {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.creature-loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 65px;
}

.loop-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

.loop-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loop-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: white;
  background: rgba(10, 12, 11, .68);
  cursor: pointer;
}

.creature-loop p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .58;
}

.creature-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.creature-gallery figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: white;
}

.creature-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.creature-gallery figure:hover img {
  transform: scale(1.035);
}

/* ----------------------------------------------------------------
   10. WORLD
   ---------------------------------------------------------------- */

.world-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.world-item {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.world-wide {
  grid-column: span 8;
}

.world-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.world-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.world-item:hover img {
  transform: scale(1.025);
}

/* ----------------------------------------------------------------
   11. CHARACTERS
   ---------------------------------------------------------------- */

.characters-section {
  color: white;
  background: var(--black-soft);
}

.main-character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  margin-bottom: clamp(90px, 10vw, 150px);
}

.main-character-image {
  aspect-ratio: 3 / 4;
  margin-bottom: 17px;
  overflow: hidden;
  background: white;
}

.main-character-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.main-character:hover img {
  transform: scale(1.025);
}

.character-family {
  margin-top: 75px;
}

.family-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 23px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-dark);
}

.family-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.family-heading span {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .42;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: white;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.portrait:hover img {
  transform: scale(1.04);
}

/* ----------------------------------------------------------------
   12. MUSIC
   ---------------------------------------------------------------- */

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

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.music-card {
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.music-art {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  overflow: hidden;
}

.music-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.music-card:hover .music-art img {
  transform: scale(1.025);
}

.track-number {
  margin-bottom: 6px;
  font-family: var(--serif);
  opacity: .42;
}

.music-content p {
  color: var(--ink-soft);
}

.music-content audio {
  width: 100%;
  margin-top: 15px;
}

/* ----------------------------------------------------------------
   13. VISUAL LANGUAGE
   ---------------------------------------------------------------- */

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

.language-card {
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
}

.language-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  margin-bottom: 16px;
  object-fit: cover;
}

.language-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ochre);
  font-family: var(--serif);
  font-size: .75rem;
}

.language-card p {
  font-size: .88rem;
  opacity: .56;
}

/* ----------------------------------------------------------------
   14. CINEMATIC LANGUAGE
   ---------------------------------------------------------------- */

.cinematic-principle {
  max-width: 760px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.cinematic-principle-label {
  margin-bottom: 14px;
  color: var(--rust);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cinematic-principle-sequence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.4;
}

.cinematic-principle-sequence span {
  color: var(--rust);
  opacity: .7;
}

.cinematic-principle-copy {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
}

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

.cinema-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  margin-bottom: 17px;
  object-fit: cover;
}

.cinema-card p {
  color: var(--ink-soft);
  font-size: .9rem;
}

/* ----------------------------------------------------------------
   15. DIRECTOR'S VISION
   ---------------------------------------------------------------- */

.vision-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vision-background,
.vision-overlay {
  position: absolute;
  inset: 0;
}

.vision-background img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.vision-overlay {
  background: linear-gradient(90deg, rgba(10, 12, 11, .94), rgba(10, 12, 11, .72) 52%, rgba(10, 12, 11, .15));
}

.vision-content {
  position: relative;
  z-index: 4;
  padding: 130px 0;
}

.vision-content blockquote {
  max-width: 950px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 1.1;
}

.vision-content > p:not(.section-index, .eyebrow) {
  max-width: 660px;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.vision-lead {
  max-width: 760px !important;
  margin-top: 35px;
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem) !important;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: white;
  background: none;
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
}

.expandable-copy {
  max-width: 650px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .65s ease, opacity .45s ease, margin .45s ease;
}

.expandable-copy.open {
  max-height: 5200px;
  margin-top: 45px;
  opacity: 1;
}

.director-statement {
  max-width: 780px;
}

.director-statement p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.78;
}

.director-statement .director-closing {
  margin-top: 48px;
  color: var(--ochre);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
}

/* ----------------------------------------------------------------
   16. KEY CREATIVE TEAM
   ---------------------------------------------------------------- */

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

.credits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(55px, 7vw, 100px);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.credit-item {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 25px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.credit-item span {
  color: var(--rust);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.credit-item strong {
  margin-top: 35px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.35;
}

.credit-item strong em {
  font-weight: 400;
}

/* ----------------------------------------------------------------
   17. DEVELOPMENT
   ---------------------------------------------------------------- */

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

.development-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.development-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(20, 20, 20, .22);
}

.development-step {
  position: relative;
  padding: 31px 28px 0 0;
}

.development-dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  background: var(--paper-light);
}

.development-step.complete .development-dot {
  border-color: var(--olive);
  background: var(--olive);
}

.development-step.active .development-dot {
  border-color: var(--rust);
  background: var(--rust);
  box-shadow: 0 0 0 6px rgba(185, 78, 47, .12);
}

.development-step > p {
  margin-bottom: 8px;
  color: var(--rust);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.development-step h3 {
  margin-bottom: 12px;
}

.development-detail {
  display: block;
  max-width: 220px;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.55;
}

.production-note {
  display: grid;
  grid-template-columns: .7fr 1.1fr 1.2fr;
  gap: clamp(30px, 5vw, 80px);
  margin-top: clamp(70px, 9vw, 130px);
  padding-top: clamp(35px, 4vw, 55px);
  border-top: 1px solid var(--line-light);
}

.production-note .eyebrow {
  margin: 0;
}

.production-note h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.12;
}

.production-note > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   18. BEYOND THE SCREEN
   ---------------------------------------------------------------- */

.beyond-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.beyond-background,
.beyond-overlay {
  position: absolute;
  inset: 0;
}

.beyond-background img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.beyond-overlay {
  background: linear-gradient(90deg, rgba(10, 12, 11, .94), rgba(10, 12, 11, .64) 52%, rgba(10, 12, 11, .16));
}

.beyond-content {
  position: relative;
  z-index: 4;
  padding: 130px 0;
}

.beyond-content h2 {
  max-width: 820px;
}

.beyond-content p {
  max-width: 700px;
}

.beyond-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 12px 0 42px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.beyond-levels span {
  position: relative;
  color: var(--ochre);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.beyond-levels span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -15px;
  color: rgba(255, 255, 255, .45);
}

.beyond-content .large-copy {
  color: white;
}

.beyond-content p:not(.section-index, .eyebrow, .large-copy) {
  color: rgba(255, 255, 255, .68);
  font-family: var(--serif);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   19. PTTK / BEYOND FILM
   ---------------------------------------------------------------- */

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

.event-feature {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: clamp(45px, 8vw, 120px);
  padding-top: 35px;
  border-top: 1px solid var(--line-light);
}

.event-feature-meta {
  position: sticky;
  top: 115px;
  align-self: start;
}

.event-date {
  margin-bottom: 10px;
  color: var(--rust);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.event-location {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.event-type {
  display: inline-block;
  max-width: 280px;
  margin-top: 0;
  color: var(--ink-soft);
  font-size: .62rem;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.event-feature-content {
  max-width: 880px;
}

.event-organiser {
  margin-bottom: 14px;
  color: var(--rust);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.event-feature-content > h3 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: 1.03;
}

.event-lead {
  max-width: 760px;
  margin-bottom: 45px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.55;
}

.event-talk {
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.event-talk-label {
  margin-bottom: 12px;
  color: var(--rust);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.event-talk h4 {
  max-width: 760px;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.event-talk p {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.event-speakers {
  margin-top: 20px;
  color: var(--ink) !important;
  font-family: var(--serif);
}

.event-context {
  max-width: 760px;
}

.event-context p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.72;
}

.event-statement {
  margin-top: 50px;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: var(--rust);
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   20. FOOTER / PROJECT DATA
   ---------------------------------------------------------------- */

.project-footer {
  position: relative;
  padding: clamp(110px, 12vw, 180px) 0 40px;
  overflow: hidden;
  color: white;
  background: linear-gradient(180deg, #111412 0%, #0c0e0d 100%);
}

.project-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(255, 255, 255, .035), transparent 32%);
  pointer-events: none;
}

.project-footer .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: clamp(60px, 8vw, 140px);
  padding-bottom: clamp(60px, 7vw, 100px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-title h2 {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}

.project-data dl {
  margin: 0;
}

.project-data dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.project-data dl > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.project-data dt {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-data dd {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.4;
}

.footer-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(55px, 7vw, 90px) 0;
}

.footer-small {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .4);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-email {
  position: relative;
  display: inline-block;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.1;
  transition: color .3s ease;
}

.contact-email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .32);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.contact-email:hover {
  color: var(--ochre);
}

.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}

.back-top:hover {
  color: white;
  border-color: rgba(255, 255, 255, .6);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .3);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   21. VIDEO MODAL
   ---------------------------------------------------------------- */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 50px;
  background: rgba(5, 6, 6, .97);
}

.video-modal.active {
  display: grid;
}

.video-modal-inner {
  width: min(1280px, 100%);
}

.video-modal video {
  max-height: 85vh;
  background: black;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 5;
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  font-size: 3rem;
  font-weight: 200;
  cursor: pointer;
}

/* ----------------------------------------------------------------
   22. REVEAL / MOTION
   ---------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s ease, transform .85s var(--ease-out);
}

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

/* ----------------------------------------------------------------
   23. RESPONSIVE — TABLET
   ---------------------------------------------------------------- */

@media (max-width: 1180px) {
  .container,
  .header-inner {
    width: min(calc(100% - 56px), var(--container));
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: .56rem;
  }

  .portrait-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .creature-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ----------------------------------------------------------------
   24. RESPONSIVE — NAV / TABLET PORTRAIT
   ---------------------------------------------------------------- */
@media (max-width: 900px) {

  :root {
    --header-height: 62px;
  }


  /* ============================================================
     GLOBAL WIDTH
  ============================================================ */

  .container,
  .header-inner {
    width: min(
      calc(100% - 32px),
      var(--container)
    );
  }


  /* ============================================================
     MOBILE HEADER
  ============================================================ */

  .site-header,
  .site-header.scrolled {
    background: transparent;
    border-bottom: 0;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }


  body.menu-open .site-header {
    background: #111412;
  }


  .header-inner {
    position: relative;
    z-index: 1002;
  }


  .brand {
    position: relative;
    z-index: 1003;

    max-width: 180px;

    font-family: var(--sans);
    font-size: .52rem;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;
    text-transform: uppercase;

    white-space: nowrap;
  }


  /* ============================================================
     HAMBURGER
  ============================================================ */

  .menu-toggle {
    position: relative;
    z-index: 1003;

    display: block;
  }


  .menu-toggle.active span:first-child {
    transform:
      translateY(4px)
      rotate(45deg);
  }


  .menu-toggle.active span:last-child {
    transform:
      translateY(-4px)
      rotate(-45deg);
  }


  /* ============================================================
     FULL SCREEN MOBILE NAVIGATION
  ============================================================ */

  .main-nav {
    position: fixed !important;

    inset: 0;

    width: 100vw;
    height: 100dvh;

    z-index: 1001;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    gap: 10px;

    margin: 0;
    padding:
      78px
      32px
      32px;

    background: #111412;

    overflow-y: auto;

    transform: translateX(100%);

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
      transform .42s var(--ease-out),
      opacity .25s ease,
      visibility 0s linear .42s;
  }


  .main-nav.open {
    transform: translateX(0);

    visibility: visible;
    opacity: 1;

    pointer-events: auto;

    transition:
      transform .42s var(--ease-out),
      opacity .25s ease,
      visibility 0s;
  }


  .main-nav a {
    display: block;

    width: auto;

    font-family: var(--serif);

    font-size:
      clamp(
        1.1rem,
        4vw,
        1.55rem
      );

    line-height: 1.1;

    letter-spacing: 0;
    text-transform: none;

    opacity: .82;
  }


  .main-nav a:hover,
  .main-nav a.active {
    color: var(--ochre);
    opacity: 1;
  }


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


  /* ============================================================
     SECTION HEADINGS
  ============================================================ */

  .section-heading {
    display: block;
  }


  .section-intro {
    margin-top: 24px;
  }


  /* ============================================================
     FILM / IDEA / FOOTER
  ============================================================ */

  .film-layout,
  .idea-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }


  .film-layout,
  .idea-layout {
    gap: 50px;
  }


  .film-visual {
    order: -1;
  }


  .film-portrait-wrap,
  .event-feature-meta {
    position: relative;
    top: auto;
  }


  /* ============================================================
     WATCH
  ============================================================ */

  .video-feature-grid {
    grid-template-columns: 1fr;
  }


  .video-card-feature {
    grid-column: auto;
  }


  .video-card-feature .video-poster {
    aspect-ratio: 16 / 9;
  }


  /* ============================================================
     HYPERBOREA / MAIN CHARACTERS
  ============================================================ */

  .creature-loop-grid,
  .main-character-grid {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }


  /* ============================================================
     WORLD
  ============================================================ */

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


  .world-item,
  .world-wide,
  .world-tall {
    grid-column: auto;
    grid-row: auto;

    aspect-ratio: 4 / 3;
  }


  /* ============================================================
     PORTRAIT GRIDS
  ============================================================ */

  .portrait-grid {
    grid-template-columns:
      repeat(
        3,
        1fr
      );
  }


  /* ============================================================
     MUSIC
  ============================================================ */

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


  /* ============================================================
     TEAM
  ============================================================ */

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


  /* ============================================================
     DEVELOPMENT
  ============================================================ */

  .development-line {
    grid-template-columns: 1fr;
  }


  .development-line::before {
    top: 0;
    left: 4px;

    width: 1px;
    height: 100%;
  }


  .development-step {
    padding:
      0
      0
      48px
      35px;
  }


  .development-dot {
    top: 2px;
    left: 0;
  }


  .development-detail {
    max-width: 520px;
  }


  .production-note {
    grid-template-columns: 1fr;

    gap: 24px;
  }


  /* ============================================================
     EVENTS / PTTK
  ============================================================ */

  .event-feature {
    grid-template-columns: 1fr;

    gap: 36px;
  }


  /* ============================================================
     FOOTER
  ============================================================ */

  .project-data dl > div {
    grid-template-columns:
      150px
      1fr;
  }

}


/* ================================================================
   LOW HEIGHT TABLET / SMALL LAPTOP
================================================================ */

@media (max-width: 900px) and (max-height: 700px) {

  .main-nav {
    justify-content: flex-start;

    gap: 7px;

    padding:
      78px
      32px
      26px;
  }


  .main-nav a {
    font-size: 1rem;
  }

}
/* ------------------------------------------------
   LOW HEIGHT TABLET / LAPTOP
------------------------------------------------ */

@media (max-width: 900px) and (max-height: 700px) {

  .main-nav {
    gap: 7px;

    padding:
      68px
      32px
      26px;
  }


  .main-nav a {
    font-size: 1rem;
  }

}

/* ----------------------------------------------------------------
   25. RESPONSIVE — MOBILE
   ---------------------------------------------------------------- */

@media (max-width: 620px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 12, 11, .93), rgba(10, 12, 11, .36) 65%);
  }

  .hero-content {
    align-self: flex-end;
    padding-bottom: 95px;
  }

  .hero-title {
  max-width: 100%;

  font-size:
    clamp(
      1.8rem,
      9vw,
      4rem
    );

  line-height: .84;

  letter-spacing: 0;
}

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }

  .identity-strip {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .identity-arrow {
    transform: rotate(90deg);
    transform-origin: left center;
  }

  .film-statement br {
    display: none;
  }

  .section-idea::before {
    right: -180px;
    width: 320px;
    height: 320px;
  }

  .creature-loop-grid,
  .world-grid,
  .language-grid,
  .cinema-grid {
    grid-template-columns: 1fr;
  }

  .creature-gallery,
  .main-character-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portrait-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .family-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .cinematic-principle-sequence {
    gap: 6px 8px;
  }

  .vision-section,
  .beyond-section {
    min-height: 680px;
  }

  .vision-content,
  .beyond-content {
    padding: 95px 0;
  }

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

  .credit-item {
    min-height: 125px;
  }

  .event-feature {
    padding-top: 25px;
  }

  .event-feature-content > h3 {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .event-statement {
    line-height: 1.8;
  }

  .project-footer {
    padding-top: 90px;
  }

  .project-data dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 0;
  }

  .footer-contact,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    gap: 35px;
  }

  .footer-bottom {
    gap: 8px;
  }

  .contact-email {
    font-size: clamp(1.35rem, 7vw, 2.1rem);
  }

  .video-modal {
    padding: 14px;
  }
}

/* ----------------------------------------------------------------
   26. VERY SMALL MOBILE
   ---------------------------------------------------------------- */

@media (max-width: 390px) {
  .portrait-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-character-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size:
      clamp(
        1.45rem,
        10vw,
        2rem
      );
  }
}

/* ----------------------------------------------------------------
   27. REDUCED MOTION
   ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

  .parallax {
    transform: none !important;
  }
}

/* ================================================================
   FILM — INTERMEDIATE / SMALL DESKTOP
================================================================ */

@media (max-width: 1120px) {

  .film-story-section .film-layout {
    grid-template-columns:
      minmax(0, .95fr)
      minmax(0, 1.05fr);

    gap: 42px;
  }


  .film-story-section .film-copy,
  .film-story-section .film-visual {
    min-width: 0;
  }


  .film-story-section .film-copy h2 {
    font-size:
      clamp(
        3rem,
        6.5vw,
        4.8rem
      );

    line-height: .95;
  }


  .film-story-section .film-copy > p:not(
    .eyebrow,
    .section-index,
    .lead-text,
    .film-turn,
    .film-statement
  ) {
    font-size: 1rem;
  }


  .film-story-section .lead-text {
    font-size:
      clamp(
        1.2rem,
        2vw,
        1.55rem
      );
  }


  .film-portrait-wrap {
    top: 90px;
  }

}


/* ================================================================
   FILM — TABLET LANDSCAPE
================================================================ */

@media (max-width: 1020px) {

  .film-story-section .film-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .film-story-section .film-copy {
    max-width: 760px;
  }


  .film-story-section .film-visual {
    width: 100%;
    max-width: 760px;

    margin-left: auto;
  }


  .film-portrait-wrap {
    position: relative;

    top: auto;
  }


  .film-story-section .film-copy h2 {
    max-width: 700px;

    font-size:
      clamp(
        3.5rem,
        8vw,
        5.5rem
      );
  }

}