@font-face {
  font-family: "AgentBlogger Heavy";
  src: url("assets/fonts/fonnts.com-ccultimatum-heavy.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #080808;
  --ink-soft: #111111;
  --paper: #f1eee8;
  --paper-muted: #c5c0b8;
  --line-dark: rgba(8, 8, 8, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --red: #df2d13;
  --red-dark: #9f190f;
  --orange: #ff861d;
  --white: #fff;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --hero: "AgentBlogger Heavy", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
  --shell: min(1440px, calc(100% - 80px));
  --header-height: 88px;
  --ease: cubic-bezier(0.2, 0.78, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--ink);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 0 18px rgba(255, 90, 18, 0.65);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
}

.site-header.menu-active {
  backdrop-filter: none;
}

.header-inner {
  width: var(--shell);
  height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  position: relative;
  z-index: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-type {
  display: flex;
  flex-direction: column;
  font-family: var(--hero);
  font-size: 15px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-type strong {
  color: var(--orange);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.header-social {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.header-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.3s var(--ease);
}

.header-social:hover svg {
  transform: translate(3px, -3px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 45%, rgba(216, 47, 19, 0.23), transparent 31%),
    radial-gradient(circle at 8% 100%, rgba(255, 125, 20, 0.08), transparent 30%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8%;
  right: -5%;
  width: 47%;
  height: 120%;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 58%);
  transform: skewX(-9deg);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: 12%;
  width: min(42vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  filter: blur(150px);
  opacity: 0.12;
}

.hero-grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.hero-inner {
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 54px) 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.68fr);
  align-items: center;
  gap: clamp(56px, 8vw, 132px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.section-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  width: min-content;
  margin: 0 0 18px;
  padding-left: clamp(18px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1vw, 15px);
  border-left: 3px solid var(--red);
  font-family: var(--hero);
  font-size: clamp(64px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title span {
  display: block;
}

.title-agent {
  padding-left: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.33em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.42em;
}

.title-bloqer {
  color: var(--paper);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.hero-tagline {
  margin: 40px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 350;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.hero-tagline strong {
  color: var(--white);
  font-weight: 800;
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.genre-list span {
  display: inline-flex;
  padding: 7px 13px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premiere-line {
  margin: 36px 0 0;
  display: flex;
  align-items: stretch;
  max-width: 560px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.premiere-line > span {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premiere-date {
  background: var(--red);
  color: var(--white);
}

.premiere-status {
  color: rgba(255, 255, 255, 0.62);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  position: relative;
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.3s var(--ease);
}

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

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateX(-103%);
  transition: transform 0.38s var(--ease);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: translateX(0);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
}

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

.hero-art {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  perspective: 1100px;
}

.poster-halo {
  position: absolute;
  inset: 8% -16% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 55, 21, 0.48), rgba(238, 55, 21, 0) 66%);
  filter: blur(52px);
  opacity: 0.42;
}

.poster-frame {
  position: relative;
  margin: 0;
  padding: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 104, 23, 0.1);
  transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) rotate(1.1deg);
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.poster-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 9px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 20%, transparent 70%);
  mix-blend-mode: screen;
}

.poster-frame picture {
  display: block;
}

.poster-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
}

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-color: var(--orange);
  pointer-events: none;
}

.frame-corner-top {
  top: -10px;
  right: -10px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.frame-corner-bottom {
  bottom: -10px;
  left: -10px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.poster-note {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poster-note span {
  color: var(--orange);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

.marquee {
  position: relative;
  z-index: 4;
  width: calc(100% - 30px);
  margin-left: 15px;
  overflow: hidden;
  padding: 17px 0 15px;
  background: var(--red);
  color: var(--white);
  transform: rotate(-1.2deg) scale(1.02);
  transform-origin: center;
}

.marquee-track {
  width: 200%;
  display: flex;
  align-items: center;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

.marquee-group {
  min-width: 0;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 clamp(8px, 1.5vw, 24px);
}

.marquee span {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.marquee i {
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

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

.about,
.lead,
.scale {
  background: var(--paper);
  color: var(--ink);
}

.section-heading h2,
.lead-copy-block h2,
.locations-heading h2,
.finale h2 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(70px, 8.6vw, 145px);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section-heading h2 em,
.lead-copy-block h2 em,
.locations-heading h2 em,
.finale h2 em {
  color: var(--red);
  font-style: italic;
  font-weight: inherit;
}

.about .section-heading h2,
.scale .section-heading h2,
.locations-heading h2 {
  line-height: 0.92;
}

.about .section-heading h2 em,
.scale .section-heading h2 em,
.locations-heading h2 em {
  display: inline-block;
  margin-top: 0.12em;
}

.section-kicker {
  color: rgba(8, 8, 8, 0.66);
}

.section-kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.5);
}

.about-grid {
  margin-top: clamp(74px, 9vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.65fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.about-copy {
  max-width: 780px;
}

.about-copy p {
  margin: 0;
  color: rgba(8, 8, 8, 0.6);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.65;
}

.about-copy .lead-copy {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(28px, 3.05vw, 48px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.mission-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  clip-path: polygon(0 0, 94% 0, 100% 7%, 100% 100%, 0 100%);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -35%;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  filter: blur(80px);
  opacity: 0.18;
}

.card-index {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mission-card p {
  position: relative;
  z-index: 1;
  margin: 75px 0 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.mission-card p strong {
  color: var(--orange);
  font-weight: 800;
}

.mission-card svg {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.27);
  stroke-width: 1.2;
}

.film-facts {
  margin-top: clamp(70px, 10vw, 144px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.film-facts article {
  min-height: 130px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
}

.film-facts article:last-child {
  border-right: 0;
}

.film-facts span {
  color: rgba(8, 8, 8, 0.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.film-facts strong {
  font-size: clamp(17px, 1.55vw, 23px);
  letter-spacing: -0.025em;
}

.plot {
  min-height: 900px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.plot-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.36;
  background:
    radial-gradient(circle at 90% 65%, rgba(237, 53, 25, 0.38), transparent 32%),
    linear-gradient(120deg, transparent 0 52%, rgba(255, 255, 255, 0.025) 52% 53%, transparent 53%);
}

.plot::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -7%;
  width: 52%;
  height: 140%;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(140deg, rgba(237, 53, 25, 0.12), transparent 55%);
  transform: skewX(-13deg);
}

.plot-title {
  margin: 60px 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.19em;
  row-gap: clamp(8px, 1vw, 16px);
  font-family: var(--display);
  font-size: clamp(71px, 10vw, 164px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.plot-title span {
  display: inline-block;
}

.plot-title .accent {
  width: 100%;
  margin-top: 0.04em;
  color: var(--red);
  font-style: italic;
  text-shadow: 5px 5px 0 rgba(145, 24, 14, 0.7);
}

.plot-content {
  margin-top: clamp(85px, 10vw, 150px);
  display: grid;
  grid-template-columns: 0.48fr 1fr 0.72fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
  border-top: 1px solid var(--line-light);
  padding-top: 44px;
}

.plot-number {
  font-family: var(--display);
  color: transparent;
  font-size: clamp(100px, 12vw, 190px);
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.plot-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.plot-copy p:first-child {
  color: var(--white);
}

.plot-quote {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--red);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.4;
  text-transform: uppercase;
}

.plot-quote span,
.plot-quote strong {
  display: block;
}

.plot-quote span {
  color: rgba(255, 255, 255, 0.55);
}

.plot-quote strong {
  color: var(--orange);
}

.lead {
  padding-bottom: 0;
  overflow: hidden;
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.lead-portrait {
  position: relative;
  align-self: stretch;
  min-height: 850px;
  overflow: hidden;
  background: var(--ink);
}

.lead-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.75), transparent 35%),
    linear-gradient(125deg, transparent 60%, rgba(238, 54, 24, 0.16));
  pointer-events: none;
}

.lead-portrait picture,
.lead-portrait img {
  width: 100%;
  height: 100%;
}

.lead-portrait img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 1s var(--ease);
}

.lead-portrait:hover img {
  transform: scale(1.025);
}

.portrait-line {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 55px;
  height: 55px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.portrait-label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-copy-block {
  padding-top: 34px;
}

.lead-copy-block h2 {
  font-size: clamp(92px, 10.5vw, 176px);
}

.lead-intro {
  max-width: 560px;
  margin: 42px 0 0;
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.role-list {
  max-width: 650px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.role-list li {
  min-height: 61px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 15px;
  font-weight: 650;
}

.role-list span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cast-teaser {
  margin-top: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: end;
  gap: 34px;
}

.cast-image {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: var(--ink);
}

.cast-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.35), transparent);
}

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

.cast-teaser p {
  margin: 0 0 18px;
  color: rgba(8, 8, 8, 0.5);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 47px);
  line-height: 1.05;
  text-transform: uppercase;
}

.cast-teaser strong {
  color: var(--red);
  font-weight: inherit;
}

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

.scale-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.38fr);
  align-items: end;
  gap: 70px;
}

.scale-heading h2 {
  font-size: clamp(75px, 9vw, 148px);
}

.scale-intro {
  margin: 0 0 5px;
  color: rgba(8, 8, 8, 0.58);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid {
  margin-top: clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.feature-card:not(.feature-card-accent)::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(237, 53, 25, 0.18);
  border-radius: 50%;
  transition:
    transform 0.5s var(--ease),
    border-color 0.3s ease;
}

.feature-card:not(.feature-card-accent):hover {
  background: var(--ink);
  color: var(--paper);
}

.feature-card:not(.feature-card-accent):hover::after {
  border-color: rgba(255, 134, 29, 0.55);
  transform: scale(1.45);
}

.feature-number {
  color: rgba(8, 8, 8, 0.66);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.feature-card:hover .feature-number {
  color: var(--orange);
}

.feature-card svg {
  width: 58px;
  height: 58px;
  margin-top: 42px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.feature-card h3 {
  margin: 38px 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 14px;
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.55);
}

.feature-card-accent {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--red);
  color: var(--white);
}

.feature-card-accent::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -35%;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(255, 255, 255, 0.035),
    0 0 0 64px rgba(255, 255, 255, 0.025);
}

.feature-card-accent .feature-number {
  position: absolute;
  top: 32px;
  color: rgba(255, 255, 255, 0.65);
}

.feature-card-accent .feature-statement {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card-accent h3 {
  position: relative;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(38px, 3.5vw, 58px);
  line-height: 0.87;
}

.locations {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.locations::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

.locations-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.locations-heading h2 {
  font-size: clamp(69px, 8.3vw, 138px);
}

.locations-heading h2 em {
  color: var(--orange);
  font-size: 0.82em;
  white-space: nowrap;
}

.locations-note {
  max-width: 620px;
  margin: clamp(38px, 4vw, 64px) 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  line-height: 1.6;
}

.location-grid {
  margin-top: clamp(60px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.location-card {
  position: relative;
  height: clamp(330px, 36vw, 530px);
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.9), transparent 58%),
    linear-gradient(115deg, rgba(237, 53, 25, 0.12), transparent 40%);
  transition: background-color 0.35s ease;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition:
    transform 0.85s var(--ease),
    filter 0.5s ease;
}

.location-card:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.03);
}

.location-card figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 17px;
  color: var(--white);
}

.location-card figcaption span,
.location-card figcaption small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-card figcaption span {
  color: var(--orange);
}

.location-card figcaption small {
  color: rgba(255, 255, 255, 0.47);
}

.location-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 46px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.location-wide {
  grid-column: span 1;
}

.location-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.location-tags span {
  padding: 9px 15px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sponsors {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background: #0d0d0d;
  color: var(--paper);
}

.sponsors-heading h2 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.sponsors-heading h2 em {
  display: inline-block;
  margin-top: 0.1em;
  color: var(--orange);
  font-style: italic;
  font-weight: inherit;
}

.sponsor-grid {
  margin-top: clamp(70px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.sponsor-card {
  min-width: 0;
  min-height: 230px;
  margin: 0;
  padding: 28px 24px 22px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 0.3s ease;
}

.sponsor-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.sponsor-logo {
  height: 130px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.sponsor-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-card figcaption {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-card-park img {
  max-height: 110px;
}

.sponsor-card-cinema img {
  max-height: 130px;
}

.sponsor-card-metaflix img {
  width: min(220px, 100%);
  max-width: 100%;
}

.sponsor-card-avto img {
  width: min(180px, 100%);
  max-width: 100%;
}

.sponsor-card-xezer img {
  width: min(155px, 100%);
  max-width: 100%;
}

.finale {
  position: relative;
  min-height: min(940px, 95svh);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #0a0909;
  color: var(--white);
}

.finale-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("assets/site/scene-armchair-720.webp") center 28% / cover no-repeat;
  filter: saturate(0.7) contrast(1.12);
  transform: scale(1.02);
}

.finale::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.97), rgba(8, 8, 8, 0.73) 52%, rgba(8, 8, 8, 0.18)),
    linear-gradient(to top, rgba(8, 8, 8, 0.82), transparent 48%);
}

.finale::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 74% 42%, rgba(238, 49, 20, 0.27), transparent 25%);
}

.finale-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.022) 2px,
    rgba(255, 255, 255, 0.022) 3px
  );
  pointer-events: none;
}

.finale-content {
  width: var(--shell);
  margin: 0 auto;
  padding: 130px 0;
}

.finale h2 {
  max-width: 940px;
  margin-top: 34px;
  font-size: clamp(88px, 11vw, 185px);
  line-height: 0.78;
}

.finale h2 em {
  color: var(--orange);
}

.finale-content > p:not(.section-kicker) {
  margin: 45px 0 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-large {
  min-height: 62px;
  padding: 0 30px;
}

.finale-release {
  position: absolute;
  right: clamp(25px, 5vw, 90px);
  bottom: 25px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

.finale-release span {
  font-size: clamp(120px, 16vw, 260px);
}

.finale-release small {
  font-size: clamp(34px, 4vw, 66px);
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-main,
.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 70px;
}

.brand-footer .brand-type {
  font-size: 25px;
}

.brand-footer .brand-type strong {
  font-size: 27px;
}

.footer-meta {
  text-align: center;
}

.footer-meta p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: inherit;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-contact a {
  margin-top: 2px;
  color: var(--orange);
  font-size: 13px;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  min-height: 58px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.footer-bottom a svg {
  width: 14px;
  height: 14px;
}

.footer-bottom a:hover {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

.hero [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

.hero [data-reveal]:nth-child(3) {
  transition-delay: 0.14s;
}

.hero [data-reveal]:nth-child(4) {
  transition-delay: 0.19s;
}

.hero [data-reveal]:nth-child(5) {
  transition-delay: 0.24s;
}

.hero [data-reveal]:nth-child(6) {
  transition-delay: 0.29s;
}

.feature-grid .feature-card:nth-child(2),
.location-grid .location-card:nth-child(2) {
  transition-delay: 0.07s;
}

.feature-grid .feature-card:nth-child(3),
.location-grid .location-card:nth-child(3) {
  transition-delay: 0.14s;
}

.feature-grid .feature-card:nth-child(4),
.location-grid .location-card:nth-child(4) {
  transition-delay: 0.07s;
}

.feature-grid .feature-card:nth-child(5) {
  transition-delay: 0.14s;
}

.feature-grid .feature-card:nth-child(6) {
  transition-delay: 0.21s;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 52px, 1200px);
  }

  .desktop-nav {
    gap: 24px;
  }

  .header-social span {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
    gap: 58px;
  }

  .hero-title {
    font-size: clamp(64px, 8vw, 110px);
  }

  .lead-shell {
    gap: 70px;
  }

  .lead-portrait {
    min-height: 740px;
  }

  .feature-card {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

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

  .desktop-nav,
  .header-social {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 21px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s var(--ease);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    padding: calc(var(--header-height) + 55px) 26px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: hidden;
    background-color: var(--ink);
    background-image: radial-gradient(
      circle at 90% 10%,
      rgba(237, 53, 25, 0.24),
      transparent 30%
    );
    opacity: 0;
    overflow-y: auto;
    transform: translateY(-14px);
    transition:
      opacity 0.35s ease,
      transform 0.35s var(--ease),
      visibility 0s linear 0.35s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: clamp(39px, 9vw, 67px);
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu nav a span {
    color: var(--orange);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-social {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-inner {
    min-height: auto;
    padding-top: calc(var(--header-height) + 74px);
    grid-template-columns: 1fr;
    gap: 85px;
  }

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

  .hero-title {
    font-size: clamp(76px, 14vw, 108px);
  }

  .hero-art {
    width: min(78vw, 560px);
    justify-self: center;
    margin-bottom: 70px;
  }

  .scroll-cue {
    display: none;
  }

  .about-grid,
  .locations-heading {
    grid-template-columns: 1fr;
  }

  .mission-card {
    max-width: 560px;
    min-height: 360px;
  }

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

  .film-facts article:nth-child(2) {
    border-right: 0;
  }

  .film-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .plot-content {
    grid-template-columns: 0.35fr 1fr;
  }

  .plot-quote {
    grid-column: 2;
  }

  .lead-shell {
    grid-template-columns: 0.84fr 1fr;
    gap: 45px;
  }

  .lead-portrait {
    min-height: 680px;
  }

  .cast-teaser {
    grid-template-columns: 150px 1fr;
    gap: 24px;
  }

  .cast-image {
    height: 240px;
  }

  .scale-heading {
    grid-template-columns: 1fr;
  }

  .scale-intro {
    max-width: 500px;
  }

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

  .location-card {
    height: 390px;
  }

  .locations-heading h2 em {
    white-space: normal;
  }

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

  .footer-meta {
    display: none;
  }

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

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .hero::before {
    width: 75%;
    opacity: 0.7;
  }

  .hero-grid-lines {
    background-size: 56px 56px;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 58px);
    gap: 62px;
  }

  .hero-title {
    margin-top: 0;
    font-size: clamp(50px, 12vw, 76px);
    line-height: 0.82;
    white-space: nowrap;
  }

  .hero-tagline {
    margin-top: 31px;
    font-size: 20px;
  }

  .premiere-line {
    flex-direction: column;
  }

  .premiere-line > span {
    min-height: 45px;
    padding: 9px 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    width: min(88vw, 480px);
    margin-bottom: 48px;
  }

  .marquee {
    padding: 14px 0 12px;
  }

  .marquee span {
    font-size: 19px;
  }

  .section {
    padding: 94px 0;
  }

  .section-heading h2,
  .locations-heading h2,
  .finale h2 {
    font-size: clamp(58px, 18vw, 88px);
    line-height: 0.86;
  }

  .finale h2 {
    font-size: clamp(52px, 16.5vw, 82px);
  }

  .about-grid {
    margin-top: 58px;
    gap: 52px;
  }

  .about-copy .lead-copy {
    font-size: 27px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .mission-card {
    min-height: 340px;
    padding: 26px;
  }

  .mission-card p {
    margin-top: 62px;
    font-size: 26px;
  }

  .film-facts {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .film-facts article {
    min-height: 104px;
    padding: 23px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .film-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .film-facts article:last-child {
    border-bottom: 0;
  }

  .plot-title {
    margin-top: 48px;
    display: block;
    font-size: clamp(68px, 21vw, 105px);
  }

  .plot-title span {
    display: block;
  }

  .plot-title span + span {
    margin-top: 0.1em;
  }

  .plot-content {
    margin-top: 72px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .plot-number {
    display: none;
  }

  .plot-quote {
    grid-column: auto;
  }

  .lead {
    padding-bottom: 0;
  }

  .lead-shell {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .lead-portrait {
    width: calc(100% - 40px);
    min-height: 610px;
    margin: 0 auto;
  }

  .lead-copy-block {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 0;
  }

  .lead-copy-block h2 {
    font-size: clamp(90px, 28vw, 140px);
  }

  .cast-teaser {
    margin-right: 0;
    grid-template-columns: minmax(96px, 115px) minmax(0, 1fr);
    gap: 16px;
  }

  .cast-image {
    height: 220px;
  }

  .cast-teaser p {
    min-width: 0;
    font-size: clamp(22px, 6.2vw, 27px);
  }

  .scale-heading h2 {
    font-size: clamp(58px, 18vw, 88px);
  }

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

  .feature-card {
    min-height: 300px;
    padding: 28px;
  }

  .feature-card-accent {
    min-height: 340px;
  }

  .locations-heading {
    gap: 0;
    min-width: 0;
  }

  .locations-heading h2 {
    min-width: 0;
    font-size: clamp(41px, 11.8vw, 56px);
    line-height: 0.96;
  }

  .locations-heading h2 em {
    font-size: 1em;
    white-space: normal;
  }

  .locations-note {
    margin-top: 32px;
  }

  .location-grid {
    margin-top: 65px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-card {
    height: 410px;
  }

  .location-card figcaption {
    right: 20px;
    bottom: 21px;
    left: 20px;
    grid-template-columns: auto 1fr;
  }

  .location-card figcaption small {
    display: none;
  }

  .sponsors-heading h2 {
    font-size: clamp(40px, 11.5vw, 80px);
  }

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

  .sponsor-card {
    min-height: 200px;
    padding: 24px 18px 20px;
  }

  .sponsor-card-xezer {
    grid-column: span 2;
  }

  .finale {
    min-height: 820px;
    place-items: end start;
  }

  .finale::before {
    background:
      linear-gradient(to top, rgba(8, 8, 8, 0.98) 5%, rgba(8, 8, 8, 0.48) 72%, rgba(8, 8, 8, 0.3)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.74), transparent);
  }

  .finale-image {
    background-position: 55% top;
  }

  .finale-content {
    padding: 100px 0 70px;
  }

  .finale-content > p:not(.section-kicker) {
    max-width: 310px;
    line-height: 1.65;
  }

  .finale-release {
    top: 90px;
    right: 16px;
    bottom: auto;
  }

  .finale-release span {
    font-size: 105px;
  }

  .finale-release small {
    font-size: 29px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-contact {
    justify-self: start;
    align-items: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    row-gap: 17px;
  }

  .footer-bottom a:first-of-type {
    grid-row: 2;
  }

  .footer-bottom a:last-child {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .hero-title {
    font-size: clamp(44px, 12.5vw, 50px);
  }

  .genre-list span {
    padding-right: 10px;
    padding-left: 10px;
  }

  .lead-portrait,
  .lead-copy-block {
    width: calc(100% - 30px);
  }

  .lead-portrait {
    min-height: 530px;
  }

  .cast-teaser {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    margin-right: 0;
  }

  .cast-teaser p {
    font-size: clamp(20px, 6.4vw, 24px);
  }

  .locations-heading h2 {
    font-size: clamp(34px, 10.7vw, 41px);
  }

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

  .sponsor-card-xezer {
    grid-column: span 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .poster-frame {
    transform: rotate(1.1deg);
  }
}
