:root {
  --black: #050505;
  --paper: #f5f0e8;
  --soft: rgba(245, 240, 232, 0.74);
  --muted: rgba(245, 240, 232, 0.48);
  --line: rgba(245, 240, 232, 0.16);
  --gold: #b99a54;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.back {
  position: fixed;
  top: 26px;
  left: 28px;
  z-index: 10;
  color: rgba(245, 240, 232, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

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

.production-page .hero {
  min-height: 100vh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.76)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.1) 58%, rgba(5, 5, 5, 0.44));
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.68;
  filter: grayscale(0.84) contrast(1.08);
}

.hero-media-video {
  opacity: 0.78;
}

.hero-video-controls {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.hero-video-controls.is-ready {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.video-control {
  min-width: 108px;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 240, 232, 0.34);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.34);
  color: rgba(245, 240, 232, 0.84);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.video-control:hover,
.video-control:focus-visible,
.video-control[aria-pressed="true"] {
  border-color: rgba(245, 240, 232, 0.68);
  background: rgba(5, 5, 5, 0.58);
  color: var(--paper);
}

.video-control:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 3px;
}

.hero:fullscreen,
.hero:-webkit-full-screen {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: var(--black);
}

.hero-content,
.content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 72px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
}

.content {
  padding-top: 82px;
  padding-bottom: 110px;
}

.section-title {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

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

.module {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  align-content: space-between;
  gap: 34px;
}

.module-number {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.module h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.module p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
}

.placeholder {
  margin-top: 64px;
  padding: 26px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.video-section {
  margin-top: 84px;
}

.video-frame {
  position: relative;
  min-height: clamp(320px, 56vw, 680px);
  overflow: hidden;
  background: #101010;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.84), transparent 50%, rgba(5, 5, 5, 0.18)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.46), transparent);
}

.video-frame img {
  filter: grayscale(0.75) contrast(1.08);
  opacity: 0.82;
}

.play-mark {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 240, 232, 0.84);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.play-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245, 240, 232, 0.42);
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid rgba(245, 240, 232, 0.88);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}

.film-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 2 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111;
  color: var(--paper);
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  outline: none;
}

article.film-card:not([data-film-open]) {
  cursor: default;
}

.poster-slot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(245, 240, 232, 0.09), transparent 54%),
    linear-gradient(20deg, #0a0a0a, #1a1a19);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.film-card:nth-child(2n) .poster-slot {
  background:
    linear-gradient(165deg, rgba(185, 154, 84, 0.12), transparent 48%),
    linear-gradient(25deg, #070808, #181b1b);
}

.film-card:nth-child(3n) .poster-slot {
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.08), transparent 42%),
    linear-gradient(10deg, #080808, #171313);
}

.poster-slot > span {
  color: rgba(245, 240, 232, 0.22);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.poster-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poster-slot--top img {
  object-position: center top;
}

.film-detail {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: clamp(16px, 2vw, 24px);
  display: grid;
  align-content: end;
  gap: 9px;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.72) 44%, rgba(3, 3, 3, 0.08));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.film-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.film-detail h3 span {
  display: block;
  margin-top: 5px;
  color: rgba(245, 240, 232, 0.68);
  font-family: var(--sans);
  font-size: 0.48em;
  line-height: 1.2;
}

.film-detail p {
  margin: 0;
  color: rgba(245, 240, 232, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.film-detail .film-meta {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.film-detail .film-director {
  color: rgba(245, 240, 232, 0.78);
}

.film-detail .film-award-preview {
  padding-top: 9px;
  border-top: 1px solid rgba(245, 240, 232, 0.22);
  color: rgba(245, 240, 232, 0.62);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.film-open-label {
  width: max-content;
  margin-top: 4px;
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-open-label::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 0 3px 9px;
  background: currentColor;
}

.film-card:hover .poster-slot,
.film-card:focus-visible .poster-slot {
  transform: scale(1.035);
  filter: brightness(0.76);
}

.film-card:hover .film-detail,
.film-card:focus-visible .film-detail {
  opacity: 1;
  transform: translateY(0);
}

.film-card:focus-visible {
  outline: 1px solid rgba(245, 240, 232, 0.82);
  outline-offset: -4px;
}

body.film-modal-open {
  overflow: hidden;
}

.film-modal {
  width: min(1180px, calc(100vw - 44px));
  height: min(780px, calc(100dvh - 44px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #060606;
  color: var(--paper);
}

.film-modal:not([open]) {
  display: none;
}

.film-modal[open] {
  display: block;
  animation: film-modal-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.film-modal::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.film-modal-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  isolation: isolate;
}

.film-modal-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.76), rgba(2, 2, 2, 0.2) 74%),
    linear-gradient(0deg, rgba(2, 2, 2, 0.96), rgba(2, 2, 2, 0.64) 42%, rgba(2, 2, 2, 0.08) 88%);
  pointer-events: none;
}

.film-modal-still {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.film-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(245, 240, 232, 0.42);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.3);
  color: var(--paper);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.film-modal-close::before,
.film-modal-close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 20px;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.film-modal-close::before {
  transform: rotate(45deg);
}

.film-modal-close::after {
  transform: rotate(-45deg);
}

.film-modal-close:hover,
.film-modal-close:focus-visible {
  background: rgba(3, 3, 3, 0.68);
  border-color: rgba(245, 240, 232, 0.78);
}

.film-modal-close:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 3px;
}

.film-modal-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 68px clamp(28px, 5vw, 64px) 46px;
  display: grid;
  align-content: end;
  gap: 32px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 1),
    0 0 8px rgba(0, 0, 0, 0.96),
    0 0 22px rgba(0, 0, 0, 0.9);
}

.film-modal-index {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-modal-heading h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  -webkit-text-stroke: 0.25px rgba(0, 0, 0, 0.8);
}

.film-modal-heading h2 span {
  display: inline-block;
  margin-left: 14px;
  color: rgba(245, 240, 232, 0.74);
  font-family: var(--sans);
  font-size: 0.34em;
  line-height: 1;
  vertical-align: 0.18em;
}

.film-facts {
  max-width: 980px;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.film-facts div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(245, 240, 232, 0.34);
}

.film-facts dt {
  color: rgba(245, 240, 232, 0.58);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.film-facts dd {
  margin: 4px 0 0;
  color: rgba(245, 240, 232, 0.92);
  font-size: 13px;
  line-height: 1.42;
}

.film-modal-copy {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: clamp(32px, 6vw, 78px);
}

.film-modal-copy--single {
  grid-template-columns: minmax(0, 760px);
}

.film-modal-copy section {
  min-width: 0;
}

.film-modal-copy h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-modal-copy p,
.film-modal-copy li {
  color: rgba(245, 240, 232, 0.92);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.65;
  -webkit-text-stroke: 0.18px rgba(0, 0, 0, 0.86);
}

.film-modal-copy p {
  margin: 0;
}

.film-modal-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.film-modal-copy li + li {
  margin-top: 7px;
}

.film-watch-link {
  width: max-content;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.film-watch-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(245, 240, 232, 0.58);
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.2);
  transition: background 180ms ease, border-color 180ms ease;
}

.film-watch-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 9px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.film-watch-link:hover .film-watch-icon,
.film-watch-link:focus-visible .film-watch-icon {
  border-color: var(--paper);
  background: rgba(2, 2, 2, 0.68);
}

.film-watch-link:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 5px;
}

@keyframes film-modal-in {
  from {
    opacity: 0;
    transform: scale(0.985) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.production-content {
  background: var(--black);
}

.production-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(76px, 10vh, 118px) 30px;
}

.production-films {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: #050505;
}

.production-section-head {
  margin-bottom: clamp(34px, 5vh, 58px);
}

.production-section-head .section-title {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 58px);
}

.los-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(90px, 14vh, 150px) clamp(30px, 8vw, 130px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}

.los-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/los-production-background.png") center top / 100% auto no-repeat;
}

.los-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.72), rgba(2, 2, 2, 0.08) 70%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.96) 28%, rgba(5, 5, 5, 0.56) 55%, transparent 82%);
}

.los-content {
  width: min(100%, 880px);
}

.los-logo {
  width: clamp(92px, 8vw, 122px);
  height: auto;
  margin: 0 0 26px;
  object-fit: contain;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.los-content h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.los-content > p:last-child {
  max-width: 860px;
  margin: 28px 0 0;
  color: rgba(245, 240, 232, 0.8);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.72;
}

.los-content > p:last-child strong {
  color: var(--paper);
  font-weight: 600;
}

.production-programs {
  display: grid;
  gap: 4px;
  background: #050505;
}

.program-card,
.offer-wall {
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.program-card {
  background: #0b0c0c;
}

.program-card--study {
  background: #0d0c0b;
}

.program-card summary,
.offer-wall summary {
  list-style: none;
  cursor: pointer;
}

.program-card summary::-webkit-details-marker,
.offer-wall summary::-webkit-details-marker {
  display: none;
}

.program-summary {
  min-height: clamp(280px, 38vh, 430px);
  padding: clamp(48px, 8vh, 90px) clamp(30px, 8vw, 130px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(120deg, rgba(245, 240, 232, 0.04), transparent 44%),
    #0b0c0c;
}

.program-card--study .program-summary {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.84), rgba(3, 4, 5, 0.3) 66%, rgba(3, 4, 5, 0.5)),
    linear-gradient(0deg, rgba(3, 4, 5, 0.86), transparent 68%),
    url("images/workshop-07.jpg") center 48% / cover no-repeat;
}

.program-card--workshop .program-summary {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.82), rgba(3, 4, 5, 0.24) 66%, rgba(3, 4, 5, 0.44)),
    linear-gradient(0deg, rgba(3, 4, 5, 0.82), transparent 66%),
    url("images/workshop-brand.jpg") center 46% / cover no-repeat;
}

.program-summary:focus-visible,
.offer-wall-summary:focus-visible {
  outline: none;
  box-shadow: inset 3px 0 0 rgba(185, 154, 84, 0.9);
}

.program-summary > span:first-child {
  display: grid;
  gap: 12px;
}

.program-kicker {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-summary strong {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.95;
}

.program-toggle {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.program-toggle::before,
.program-toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 300ms ease, opacity 300ms ease;
}

.program-toggle::after {
  transform: rotate(90deg);
}

details[open] > summary .program-toggle::after {
  opacity: 0;
  transform: rotate(0);
}

.program-content {
  padding: 26px clamp(30px, 8vw, 130px) clamp(70px, 10vh, 110px);
}

.program-intro {
  max-width: 820px;
  margin: 0 0 clamp(40px, 6vh, 70px);
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
}

.program-gallery {
  display: grid;
  gap: clamp(8px, 1vw, 14px);
}

.workshop-gallery {
  display: block;
  columns: 3 260px;
  column-gap: clamp(8px, 1vw, 14px);
}

.offer-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(245, 240, 232, 0.065), transparent 58%),
    #141515;
}

.program-slot:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(185, 154, 84, 0.07), transparent 58%),
    #121313;
}

.program-slot > span {
  color: rgba(245, 240, 232, 0.22);
  font-family: var(--serif);
  font-size: 24px;
}

.workshop-slot {
  width: 100%;
  aspect-ratio: auto;
  margin: 0 0 clamp(8px, 1vw, 14px);
  display: block;
  break-inside: avoid;
  background: #111;
}

.workshop-slot img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.16) brightness(0.84);
  transition: filter 360ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workshop-slot:hover img,
.workshop-slot:focus-within img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.012);
}

.offer-slot {
  aspect-ratio: 3 / 4;
  background: #121212;
}

.offer-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.14) brightness(0.82);
  transition: filter 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-slot:hover img,
.offer-slot:focus-within img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.012);
}

.offer-wall {
  background: rgba(0, 0, 0, 0.18);
}

.offer-wall-title {
  margin: 0 0 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.16);
  color: rgba(245, 240, 232, 0.82);
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 400;
  line-height: 1.1;
}

.offer-wall-summary {
  min-height: 88px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(245, 240, 232, 0.16);
  color: rgba(245, 240, 232, 0.88);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
}

.offer-wall-content {
  padding-top: 24px;
}

.festival-main {
  background: #070808;
}

.festival-video-section,
.festival-gallery-section {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.festival-hero {
  min-height: 100vh;
}

.festival-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.12) 62%, rgba(5, 5, 5, 0.48)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.08) 60%, rgba(5, 5, 5, 0.32));
}

.festival-hero .hero-media {
  opacity: 0.82;
  filter: grayscale(0.42) contrast(1.04);
}

.festival-hero .hero-media img {
  object-position: center 48%;
  animation: festival-hero-breathe 18s ease-in-out infinite alternate;
  transform-origin: center 46%;
}

@keyframes festival-hero-breathe {
  from {
    transform: scale(1.015);
  }

  to {
    transform: scale(1.055);
  }
}

.festival-hero-caption {
  position: absolute;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  width: min(330px, calc(100% - 60px));
  margin: 0;
  color: rgba(245, 240, 232, 0.62);
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.9);
}

.festival-overview {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.festival-overview::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.48) 58%, rgba(5, 5, 5, 0.64)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.18) 54%, rgba(5, 5, 5, 0.62));
}

.festival-overview-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.festival-overview-media img {
  object-position: center;
  filter: grayscale(0.18) contrast(1.04);
}

.festival-overview-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(90px, 12vh, 140px) 30px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.festival-overview h2,
.festival-section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.festival-overview h2 {
  max-width: 560px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
}

.festival-overview-copy {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.78;
}

.festival-overview-copy p {
  margin: 0;
}

.festival-overview-copy p + p {
  margin-top: 22px;
}

.festival-video-section {
  padding-bottom: clamp(96px, 14vh, 160px);
}

.festival-section-head {
  margin-bottom: clamp(34px, 5vh, 58px);
}

.festival-section-head h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.festival-section-head .festival-gallery-title {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
}

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

.festival-video-card {
  min-width: 0;
  background: #0d0e0e;
}

.festival-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}

.festival-video-frame::after {
  display: none;
}

.festival-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #050505;
}

.festival-video-frame img {
  filter: grayscale(0.54) brightness(0.74);
  transition: filter 360ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.festival-video-card:hover .festival-video-frame img {
  filter: grayscale(0.12) brightness(0.92);
  transform: scale(1.018);
}

.festival-play {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 240, 232, 0.58);
  border-radius: 50%;
}

.festival-play::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(245, 240, 232, 0.9);
}

.festival-video-caption {
  padding: 22px 24px 28px;
}

.festival-video-caption span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.festival-video-caption h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.festival-gallery-section {
  padding-bottom: clamp(110px, 16vh, 180px);
}

.festival-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, clamp(190px, 19vw, 270px));
  gap: 4px;
}

.festival-photo-slot {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #111313;
  cursor: default;
}

.festival-photo-slot:nth-child(1),
.festival-photo-slot:nth-child(2),
.festival-photo-slot:nth-child(3),
.festival-photo-slot:nth-child(7),
.festival-photo-slot:nth-child(8),
.festival-photo-slot:nth-child(9),
.festival-photo-slot:nth-child(10),
.festival-photo-slot:nth-child(12) {
  grid-column: span 4;
}

.festival-photo-slot:nth-child(4),
.festival-photo-slot:nth-child(6) {
  grid-column: span 5;
}

.festival-photo-slot:nth-child(5),
.festival-photo-slot:nth-child(11),
.festival-photo-slot:nth-child(13) {
  grid-column: span 2;
}

.festival-photo-slot:focus-visible {
  outline: 1px solid rgba(245, 240, 232, 0.72);
  outline-offset: -1px;
}

.festival-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.62) brightness(0.66);
  transform: scale(1.001);
  transition: filter 420ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.festival-photo-index {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 14px;
  color: rgba(245, 240, 232, 0.32);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.festival-photo-caption {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 22px 18px 18px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(4, 4, 4, 0.94), rgba(4, 4, 4, 0.28) 48%, transparent 74%);
  color: rgba(245, 240, 232, 0.9);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.48;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.festival-photo-slot:hover img,
.festival-photo-slot:focus img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.018);
}

.festival-photo-slot:hover .festival-photo-caption,
.festival-photo-slot:focus .festival-photo-caption {
  opacity: 1;
  transform: translateY(0);
}

.future-page {
  background: #060707;
}

.future-hero {
  min-height: 100vh;
}

.future-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 11, 16, 0.42), rgba(7, 11, 16, 0.08) 64%, rgba(7, 11, 16, 0.24)),
    linear-gradient(0deg, rgba(5, 7, 9, 0.72), rgba(5, 7, 9, 0.06) 58%, rgba(5, 7, 9, 0.18));
}

.future-hero .hero-media {
  opacity: 1;
  filter: brightness(0.62) saturate(0.7) contrast(1.03);
}

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

.future-hero .hero-content {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.future-hero .kicker {
  color: #c5a45d;
}

.future-hero .lead {
  color: rgba(245, 240, 232, 0.8);
}

.future-main {
  background: #060707;
}

.future-forum {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.future-forum::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.88), rgba(4, 5, 5, 0.54) 52%, rgba(4, 5, 5, 0.3)),
    linear-gradient(0deg, rgba(4, 5, 5, 0.66), rgba(4, 5, 5, 0.2) 58%, rgba(4, 5, 5, 0.34));
}

.future-forum-background {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.future-forum-background img {
  object-position: center;
  filter: brightness(0.56) saturate(0.78) contrast(1.04);
}

.future-forum-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(96px, 13vh, 150px) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  column-gap: clamp(48px, 7vw, 96px);
  row-gap: clamp(38px, 5vw, 58px);
  align-items: start;
}

.future-forum-copy h2,
.future-platform h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.future-forum-copy h2 {
  max-width: 700px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.future-forum-description {
  grid-column: 1 / -1;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.future-forum-description p {
  margin: 0;
  color: rgba(245, 240, 232, 0.72);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.78;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.92);
}

.future-forum-media {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin-top: 42px;
  justify-self: end;
  align-self: start;
}

.future-forum-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101111;
}

.future-forum-video video {
  object-fit: contain;
  background: #101111;
  filter: brightness(0.88) contrast(1.02);
}

.future-forum-stamp {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 1;
  color: rgba(245, 240, 232, 0.66);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.future-gallery {
  padding-top: clamp(76px, 9vw, 112px);
  padding-bottom: clamp(110px, 14vw, 176px);
}

.future-gallery .festival-photo-grid {
  grid-template-rows: repeat(2, clamp(190px, 19vw, 270px));
}

.future-partner-card {
  margin-top: 4px;
  overflow: hidden;
  background: #070b12;
}

.future-partner-card summary {
  list-style: none;
  cursor: pointer;
}

.future-partner-card summary::-webkit-details-marker {
  display: none;
}

.future-partner-summary {
  position: relative;
  min-height: clamp(320px, 36vw, 430px);
  overflow: hidden;
  isolation: isolate;
}

.future-partner-summary::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.62) 50%, rgba(3, 7, 18, 0.16)),
    linear-gradient(0deg, rgba(3, 7, 18, 0.82), rgba(3, 7, 18, 0.04) 62%, rgba(3, 7, 18, 0.22));
}

.future-partner-summary:focus-visible {
  outline: 1px solid rgba(245, 240, 232, 0.66);
  outline-offset: -4px;
}

.future-partner-background {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.future-partner-background img {
  object-position: center;
  filter: brightness(0.72) saturate(0.88);
}

.future-partner-summary-content {
  position: relative;
  min-height: inherit;
  padding: clamp(34px, 4.5vw, 58px);
  display: grid;
  align-content: space-between;
  gap: clamp(56px, 8vw, 100px);
}

.future-partner-logo {
  width: min(250px, 35vw);
  display: block;
  mix-blend-mode: screen;
}

.future-partner-logo img {
  height: auto;
  object-fit: contain;
}

.future-partner-summary-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.future-partner-heading {
  display: grid;
  gap: 9px;
}

.future-partner-kicker {
  color: rgba(245, 240, 232, 0.58);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.future-partner-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.future-partner-role {
  display: block;
  color: rgba(245, 240, 232, 0.52);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.future-partner-toggle {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.future-partner-toggle::before,
.future-partner-toggle::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 22px;
  height: 1px;
  background: rgba(245, 240, 232, 0.86);
  transition: transform 280ms ease, opacity 280ms ease;
}

.future-partner-toggle::after {
  transform: rotate(90deg);
}

.future-partner-card[open] .future-partner-toggle::after {
  opacity: 0;
  transform: rotate(0);
}

.future-partner-panel {
  padding: clamp(30px, 4vw, 52px) clamp(34px, 4.5vw, 58px) clamp(42px, 5vw, 64px);
  background: #070b12;
}

.future-partner-panel > p {
  max-width: 900px;
  margin: 0;
  color: rgba(245, 240, 232, 0.8);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.78;
}

.future-partner-link {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.3);
  color: rgba(245, 240, 232, 0.8);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.future-partner-link:hover,
.future-partner-link:focus-visible {
  border-color: rgba(245, 240, 232, 0.8);
  color: var(--paper);
}

.future-platform {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.future-platform::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.9), rgba(4, 5, 5, 0.3) 68%, rgba(4, 5, 5, 0.48)),
    linear-gradient(0deg, rgba(4, 5, 5, 0.9), rgba(4, 5, 5, 0.08) 64%, rgba(4, 5, 5, 0.32));
}

.future-platform-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.future-platform-media img {
  object-position: center;
  filter: brightness(0.58) saturate(0.78) contrast(1.05);
}

.future-platform-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(100px, 14vh, 150px) 30px clamp(82px, 11vh, 120px);
}

.future-platform h2 {
  max-width: 1040px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 0.95;
}

.future-platform-inner > p:not(.kicker) {
  max-width: 820px;
  margin: 34px 0 0;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.75;
}

.future-platform-meta {
  margin-top: 42px;
  display: block;
  color: rgba(245, 240, 232, 0.48);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.future-platform-link {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.42);
  color: rgba(245, 240, 232, 0.9);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.future-platform-link:hover,
.future-platform-link:focus-visible {
  border-color: var(--paper);
  color: var(--paper);
}

.production-contact {
  min-height: 100vh;
  padding: clamp(96px, 14vh, 150px) clamp(30px, 8vw, 130px);
  display: grid;
  align-items: end;
  background: #080808 url("images/contact-background.jpg") center 58% / cover no-repeat;
}

.production-contact-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: end;
}

.production-contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.production-contact-links {
  display: grid;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.production-contact-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.3);
  color: rgba(245, 240, 232, 0.84);
}

.production-contact-label {
  color: rgba(245, 240, 232, 0.58);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.production-contact-value {
  min-width: 0;
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .back {
    left: 22px;
    top: 20px;
  }

  .hero-content,
  .content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .production-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .festival-video-section,
  .festival-gallery-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .festival-overview-inner {
    padding-left: 22px;
    padding-right: 22px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .festival-hero-caption {
    top: 58px;
    right: 22px;
    bottom: auto;
    width: min(220px, calc(100% - 44px));
    font-size: 9px;
  }

  .festival-section-head .festival-gallery-title {
    font-size: 32px;
  }

  .future-forum {
    min-height: auto;
  }

  .future-forum-inner {
    padding: 92px 22px 110px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .future-forum-copy h2 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .future-forum-media {
    max-width: 100%;
    margin-top: 0;
    justify-self: stretch;
  }

  .future-forum-description {
    width: 100%;
  }

  .future-gallery {
    padding-top: 72px;
    padding-bottom: 110px;
  }

  .future-gallery .festival-photo-grid {
    grid-template-rows: none;
  }

  .future-partner-summary {
    min-height: 460px;
  }

  .future-partner-summary::after {
    background:
      linear-gradient(90deg, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.46)),
      linear-gradient(0deg, rgba(3, 7, 18, 0.92), rgba(3, 7, 18, 0.12) 68%, rgba(3, 7, 18, 0.26));
  }

  .future-partner-background img {
    object-position: 62% center;
  }

  .future-partner-summary-content {
    padding: 28px 22px 34px;
    gap: 110px;
  }

  .future-partner-logo {
    width: 168px;
  }

  .future-partner-title {
    font-size: 36px;
  }

  .future-partner-panel {
    padding: 30px 22px 42px;
  }

  .future-partner-panel > p {
    font-size: 14px;
  }

  .future-platform-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .future-platform h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .festival-video-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .festival-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(150px, 44vw, 180px);
    gap: 3px;
  }

  .festival-photo-slot:nth-child(n) {
    grid-column: auto;
  }

  .festival-photo-slot:last-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

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

  .film-modal {
    width: 100vw;
    height: 100dvh;
    margin: 0;
  }

  .film-modal-content {
    min-height: 100dvh;
    padding: 82px 22px 34px;
    gap: 28px;
  }

  .film-modal-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.96;
  }

  .film-modal-heading h2 span {
    display: block;
    margin: 9px 0 0;
    font-size: 0.4em;
  }

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

  .film-modal-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .film-modal-copy p,
  .film-modal-copy li {
    font-size: 14px;
  }

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

  .workshop-gallery {
    columns: 2 150px;
  }

  .los-section,
  .program-summary,
  .program-content,
  .production-contact {
    padding-left: 22px;
    padding-right: 22px;
  }

  .los-section::before {
    background-position: center top;
    background-size: auto 58vh;
  }

  .los-section::after {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.42), rgba(2, 2, 2, 0.1)),
      linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.98) 46%, rgba(5, 5, 5, 0.3) 78%, transparent 100%);
  }

  .los-logo {
    width: 92px;
    margin-bottom: 22px;
  }

  .production-contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .production-contact-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .hero-video-controls {
    right: 22px;
    bottom: 20px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .production-contact {
    background-position: center 60%;
    background-size: auto 108%;
  }
}

@media (max-width: 520px) {
  .hero-video-controls {
    left: 22px;
    right: 22px;
  }

  .video-control {
    flex: 1 1 0;
    min-width: 0;
  }

  .program-summary {
    min-height: 250px;
    align-items: end;
  }

  .program-summary strong {
    font-size: 40px;
  }

  .film-detail {
    padding: 14px;
  }

  .film-detail h3 {
    font-size: 20px;
  }

  .film-detail p {
    font-size: 11px;
  }

  .production-contact-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-controls,
  .poster-slot,
  .film-detail,
  .workshop-slot img,
  .program-toggle::before,
  .program-toggle::after,
  .film-modal[open] {
    transition: none;
    animation: none;
  }

  .festival-photo-slot img,
  .festival-photo-caption,
  .festival-hero .hero-media img {
    transition: none;
    animation: none;
  }
}

@media (hover: none) {
  .film-detail {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(0deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.55) 42%, transparent 68%);
  }
}
