/* ==============================================
   style.css
   ============================================== */

/* General Styles */
/* ─── RESET & BASE ─── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0a0906;
  --deep: #110f0c;
  --coal: #1a1714;
  --ash: #2c2825;
  --dust: #4a4540;
  --smoke: #8a7f75;
  --bone: #d1cec9;
  --cream: #e8dfd2;
  --gold: #f3c88c;
  --gold-dim: #dbb187;
  --white: #f0e8dc;
  --font-display: "Syncopate", sans-serif;
  --font-mono: "Space Mono", monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-mono);
  overflow-x: hidden;
  font-size: 18px;
}

/* ─── FILM GRAIN CANVAS ─── */
#grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
}

.film-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10, 9, 6, 0.9), transparent);
  transition:
    background 0.4s ease,
    padding 0.4s ease;
}
.film-nav.scrolled {
  background: rgba(10, 9, 6, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 106, 0.08);
  padding: 18px 52px;
}
.nav-back {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}
.nav-back:hover {
  color: var(--gold);
}
.nav-back::before {
  content: "←";
  font-size: 14px;
  transition: transform 0.3s ease;
}
.nav-back:hover::before {
  transform: translateX(-4px);
}

/* ─── FILM STRIP AMBIENT ─── */
.filmstrip {
  position: fixed;
  top: 0;
  width: 28px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.filmstrip.left {
  left: 0;
}
.filmstrip.right {
  right: 0;
}
.filmstrip-track {
  display: flex;
  flex-direction: column;
  animation: stripScroll 12s linear infinite;
  opacity: 0.09;
}
.filmstrip.right .filmstrip-track {
  animation-direction: reverse;
}
.strip-hole {
  width: 22px;
  height: 22px;
  border: 2px solid var(--white);
  margin: 6px 4px;
  border-radius: 2px;
  flex-shrink: 0;
}
@keyframes stripScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s ease,
    padding 0.4s ease;
}
header.scrolled {
  background: rgba(10, 9, 6, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 52px;
  border-bottom: 1px solid rgba(184, 151, 106, 0.08);
}

/* Logo in header — hidden initially */
.header-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  text-decoration: none;
  pointer-events: none;
}
.header-logo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Nav right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
nav ul li a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
nav ul li a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-icons a {
  color: var(--bone);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.social-icons a:hover {
  color: var(--gold);
}
.social-icons svg {
  width: 16px;
  height: 16px;
}

.lang-switch {
  display: flex;
  gap: 0;
  margin: 2px 0 0;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--bone);
  cursor: pointer;
  padding: 4px 6px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: inherit;
  transition: color 0.3s ease;
}
.lang-switch button.active {
  color: var(--gold);
}
.lang-switch span {
  color: var(--bone);
  align-self: center;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.burger span {
  width: 24px;
  height: 1px;
  background: var(--bone);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 6, 0.98);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--bone);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu ul li a:hover {
  color: var(--gold);
}
.mobile-menu-footer {
  position: absolute;
  bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Cinematic vignette */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(10, 9, 6, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 2;
}

/* Ambient light beams */
.hero-beam {
  position: absolute;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 151, 106, 0.12),
    transparent
  );
  pointer-events: none;
}
.hero-beam:nth-child(1) {
  left: 30%;
  height: 70%;
  top: 15%;
  transform: rotate(-8deg);
}
.hero-beam:nth-child(2) {
  left: 50%;
  height: 90%;
  top: 5%;
}
.hero-beam:nth-child(3) {
  left: 70%;
  height: 65%;
  top: 20%;
  transform: rotate(6deg);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  transition:
    opacity 0.1s linear,
    transform 0.1s linear;
}

.hero-logo-main {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
}
.hero-logo-main::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.6;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--cream);
  margin-top: 28px;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 40px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-sub::before,
.hero-sub::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.4;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 1;
  cursor: pointer;
  text-decoration: none;
}

.scroll-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.4em;
  color: rgba(234, 228, 216, 0.6);
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  animation: scrollLabelPulse 2.4s ease-in-out infinite;
}

/* use scroll-line as chevron container */
/* use scroll-line as chevron container */
.scroll-line {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2.5px solid var(--gold, #b8976a);
  border-bottom: 2.5px solid var(--gold, #b8976a);
  transform: rotate(45deg);
  background: none;
  animation: chevron1 1.8s ease-in-out infinite 0s;
  position: relative;
  margin-bottom: 20px;
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-right: 2.5px solid rgba(184, 151, 106, 0.55);
  border-bottom: 2.5px solid rgba(184, 151, 106, 0.55);
  animation: chevron2 1.8s ease-in-out infinite 0.22s;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-right: 2.5px solid rgba(184, 151, 106, 0.25);
  border-bottom: 2.5px solid rgba(184, 151, 106, 0.25);
  animation: chevron2 1.8s ease-in-out infinite 0.44s;
}

@keyframes chevron1 {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-6px, -6px);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0.1;
    transform: rotate(45deg) translate(6px, 6px);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(6px, 6px);
  }
}

@keyframes chevron2 {
  0% {
    opacity: 0;
    transform: translate(0px, -10px);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0.1;
    transform: translate(0px, 10px);
  }
  100% {
    opacity: 0;
    transform: translate(0px, 10px);
  }
}

@keyframes scrollLabelPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* ─── SECTION COMMON ─── */
section {
  position: relative;
  z-index: 10;
}
.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}

/* ─── FILMS — CINEMATIC STRIP LAYOUT ─── */
/* ЗМІНА 1: Нова cinematic strip система для секції #films */

#films {
  padding: 80px 0 0;
  overflow: hidden;
}

.films-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  padding: 0 52px;
}

.films-title {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 500px;
}

.films-count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.1em;
  padding-bottom: 8px;
}

/* ── THE STAGE ── */
.films-stage {
  display: flex;
  height: 680px;
  gap: 2px;
  overflow: hidden;
}

/* ── EACH STRIP ── */
.film-strip {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    flex 0.75s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s ease;

  /* Initial state: invisible, will animate in */
  opacity: 0;
  transform: scaleY(0.92);
}

.film-strip.strip-visible {
  animation: stripReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes stripReveal {
  from {
    opacity: 0;
    transform: scaleY(0.88) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
}

/* When stage has an active strip */
.films-stage.has-active .film-strip {
  flex: 0.4; /* compress inactive */
}

.films-stage.has-active .film-strip.strip-active {
  flex: 5; /* expand active */
}

.films-stage.has-active .film-strip.strip-dim {
  opacity: 0.35;
  cursor: pointer;
}
.films-stage.has-active .film-strip.strip-dim:hover {
  opacity: 0.6;
}

/* ── BACKGROUND IMAGE ── */
.fstrip-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fstrip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) brightness(0.65) contrast(1.05);
  transition:
    filter 0.7s ease,
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.film-strip:hover .fstrip-bg img {
  filter: grayscale(10%) brightness(0.8) contrast(1.05);
  transform: scale(1.04);
}

.film-strip.strip-active .fstrip-bg img {
  filter: grayscale(0%) brightness(0.55) contrast(1.1);
  transform: scale(1.08);
}

/* Vignette overlay */
.film-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 6, 0.1) 0%,
    transparent 30%,
    transparent 50%,
    rgba(10, 9, 6, 0.7) 80%,
    rgba(10, 9, 6, 0.95) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.film-strip.strip-active::after {
  background: linear-gradient(
    to right,
    rgba(10, 9, 6, 0.15) 0%,
    rgba(10, 9, 6, 0.05) 13%,
    rgba(10, 9, 6, 0.82) 20%,
    rgba(10, 9, 6, 0.98) 100%
  );
}

/* ── IDLE STATE (shown when strip is not active) ── */
.fstrip-idle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.film-strip.strip-active .fstrip-idle {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.fstrip-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.fstrip-idle-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--bone);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s ease;
}

.film-strip:hover .fstrip-idle-title {
  color: var(--gold);
}

/* When stage has active, show title horizontal for inactive */
.films-stage.has-active .fstrip-idle-title {
  writing-mode: vertical-rl;
}

.fstrip-year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 0.15em;
}

/* ── ACTIVE INFO PANEL ── */
.fstrip-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72%;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.film-strip.strip-active .fstrip-info {
  opacity: 1;
  pointer-events: auto;
}

.fsi-body {
  padding: 48px 40px 48px 36px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 151, 106, 0.2) transparent;
}

.fsi-body::-webkit-scrollbar {
  width: 2px;
}

.fsi-body::-webkit-scrollbar-thumb {
  background: rgba(184, 151, 106, 0.3);
  border-radius: 1px;
}

/* Content items — each will have transition-delay set by JS */
.fsi-meta,
.fsi-title,
.fsi-year-large,
.fsi-tagline,
.fsi-synopsis,
.fsi-credits,
.fsi-awards,
.fsi-actions {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.film-strip.strip-active .fsi-meta,
.film-strip.strip-active .fsi-title,
.film-strip.strip-active .fsi-year-large,
.film-strip.strip-active .fsi-tagline,
.film-strip.strip-active .fsi-synopsis,
.film-strip.strip-active .fsi-credits,
.film-strip.strip-active .fsi-awards,
.film-strip.strip-active .fsi-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Tags row */
.fsi-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.fsi-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(184, 151, 106, 0.25);
  background: rgba(184, 151, 106, 0.07);
}

/* Title */
.fsi-title {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Year */
.fsi-year-large {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  margin-bottom: 18px;
}

/* Tagline */
.fsi-tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-dim);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 2px solid rgba(184, 151, 106, 0.35);
}

/* Synopsis */
.fsi-synopsis {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bone);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

/* Credits */
.fsi-credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.fsi-credit {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 12px;
}

.fsi-credit span:last-child {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}

.fsi-credit-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* Awards list */
.fsi-awards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.fsi-award-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone);
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0.8;
}

.fsi-award-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Actions */
.fsi-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 4px;
}

.fsi-cta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(184, 151, 106, 0.4);
  background: rgba(184, 151, 106, 0.08);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.fsi-cta span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.fsi-cta:hover {
  background: rgba(184, 151, 106, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

.fsi-cta:hover span {
  transform: translateX(4px);
}

.fsi-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.fsi-close:hover {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── HOVER HINT on idle strips (when no active) ── */
.films-stage:not(.has-active) .film-strip:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(184, 151, 106, 0.04);
  z-index: 2;
  pointer-events: none;
}

/* ── MOBILE: stack vertically ── */
@media (max-width: 960px) {
  #films {
    padding: 100px 0 0;
  }

  .films-header {
    padding: 0 32px;
    margin-bottom: 40px;
  }

  .films-stage {
    flex-direction: column;
    height: auto;
    gap: 2px;
  }

  .film-strip {
    height: 80px;
    flex: none !important;
    transition:
      height 0.65s cubic-bezier(0.77, 0, 0.175, 1),
      opacity 0.5s ease;
  }

  .film-strip.strip-active {
    height: 90vw !important;
    max-height: 600px;
  }

  .films-stage.has-active .film-strip {
    height: 60px;
    flex: none;
  }

  .films-stage.has-active .film-strip.strip-active {
    height: 90vw;
    max-height: 600px;
  }

  /* Idle title horizontal on mobile */
  .fstrip-idle-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 13px;
  }

  .fstrip-idle {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    top: 0;
    bottom: 0;
    justify-content: flex-start;
  }

  .film-strip.strip-active .fstrip-idle {
    opacity: 0;
  }

  /* Info panel: full width at bottom on mobile */
  .fstrip-info {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(to top, rgba(10, 9, 6, 0.98) 70%, transparent);
    align-items: flex-end;
  }

  .fsi-body {
    padding: 24px 24px 20px;
    width: 100%;
  }

  .fsi-title {
    font-size: clamp(22px, 6vw, 34px);
  }

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

  .film-strip::after {
    background: linear-gradient(
      to bottom,
      rgba(10, 9, 6, 0.1) 0%,
      transparent 30%,
      rgba(10, 9, 6, 0.85) 100%
    );
  }

  .film-strip.strip-active::after {
    background: linear-gradient(
      to bottom,
      rgba(10, 9, 6, 0.2) 0%,
      transparent 20%,
      rgba(10, 9, 6, 0.92) 55%,
      rgba(10, 9, 6, 0.99) 100%
    );
  }
}

@media (max-width: 600px) {
  .fsi-credits {
    grid-template-columns: 1fr;
  }
  .fsi-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ─── PRODUCTION LIST ─── */
#productions {
  padding: 80px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.productions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
.productions-title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.productions-desc {
  font-size: 18px;
  color: var(--smoke);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.production-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.production-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.production-item:hover::after {
  width: 100%;
}
.production-item:hover .prod-image img {
  filter: grayscale(0%) brightness(0.85);
}

.prod-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.prod-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.7);
  transition:
    filter 0.5s ease,
    transform 0.6s ease;
}
.production-item:hover .prod-image img {
  transform: scale(1.06);
}

.prod-info {
  flex: 1;
}
.prod-year {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.prod-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.prod-title a {
  text-decoration: none;
  color: var(--cream);
}

.prod-title a:hover {
  color: var(--gold);
}
.prod-desc {
  font-size: 18px;

  color: var(--bone);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  letter-spacing: 0.02em;
}

.prod-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.rating-score {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.rating-dots {
  display: flex;
  gap: 4px;
}
.rating-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ash);
  transition: background 0.2s ease;
}
.rating-dot.active {
  background: var(--gold);
}
.rating-label {
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--bone);
}

/* Hidden items */
.production-item.hidden-item {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
}
.production-item.hidden-item.revealed {
  display: block !important;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.see-more-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  background: none;
  border: none;
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0;
  transition: color 0.3s ease;
}
.see-more-btn:hover {
  color: var(--gold);
}
.see-more-btn::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}
.see-more-btn:hover::before {
  width: 64px;
}
.btn-icon {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.see-more-btn.open .btn-icon {
  transform: rotate(180deg);
}
.btn-icon svg {
  width: 10px;
  height: 10px;
}

/* ─── ABOUT ─── */
#about {
  padding: 160px 52px;
  background: linear-gradient(
    to bottom,
    var(--black),
    var(--deep) 50%,
    var(--black)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-quote {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: 0.01em;
  position: relative;
}
.about-quote .highlight {
  color: var(--gold);
  font-style: normal;
}
.about-quote::before {
  content: '"';
  font-size: 80px;
  color: rgba(184, 151, 106, 0.08);
  font-family: var(--font-mono);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-text {
  color: var(--bone);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}
.stat-item {
}
.stat-number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--bone);
}

.cta-collaborate {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border: 1px solid rgba(184, 151, 106, 0.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}
.cta-collaborate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(184, 151, 106, 0.08);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-collaborate:hover::before {
  transform: translateX(0);
}
.cta-collaborate:hover {
  border-color: var(--gold);
}
.cta-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.cta-collaborate:hover .cta-arrow {
  transform: translateX(4px);
}

/* ─── FOOTER ─── */
footer {
  padding: 80px 52px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--bone);
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--bone);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: var(--gold);
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo-symbol {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.2em;
  transition: color 0.4s ease;
}
.footer-logo-symbol:hover {
  color: var(--gold);
}
.footer-year {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--bone);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-social {
  display: flex;
  gap: 26px;
}
.footer-social a {
  color: var(--bone);
  transition: color 0.3s ease;
  display: flex;
}
.footer-social a:hover {
  color: var(--gold);
}
.footer-social svg {
  width: 26px;
  height: 26px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--bone);
}
.footer-strip {
  display: flex;
  gap: 3px;
  align-items: center;
}
.footer-strip-frame {
  width: 10px;
  height: 14px;
  border: 1px solid var(--ash);
  border-radius: 1px;
  opacity: 0.3;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  header {
    padding: 24px 32px;
  }
  header.scrolled {
    padding: 16px 32px;
  }
  nav,
  .social-icons,
  .lang-switch {
    display: none;
  }
  .mobile-menu .social-icons,
  .mobile-menu .lang-switch {
    display: flex;
  }
  .burger {
    display: flex;
  }

  #films {
    padding: 100px 32px;
  }
  /* old .film-card mobile styles removed */

  #productions {
    padding: 80px 32px;
  }
  .productions-header {
    grid-template-columns: 1fr;
  }
  .production-item {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .prod-rating {
    display: none;
  }

  #about {
    padding: 100px 32px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-quote::before {
    display: none;
  }

  footer {
    padding: 60px 32px 36px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-tagline {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .films-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-logo-main {
    letter-spacing: 0.1em;
  }

  .production-item {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* ─── TEAM ─── */
#team {
  padding: 80px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(to bottom, var(--black), var(--deep));
}
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 100px;
  align-items: end;
}
.team-title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.team-desc {
  font-size: 18px;
  color: var(--smoke);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}
/* ── Team List (rows) ── */
.team-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.team-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.team-item.team-item-open {
  border-color: rgba(184, 151, 106, 0.2);
}

/* ── Row (collapsed header) ── */
.team-row {
  display: grid;
  grid-template-columns: 100px 280px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.team-row:hover {
  opacity: 0.85;
}
.team-row-photo {
  width: 100px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.team-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(35%) brightness(0.75) contrast(1.05);
  transition:
    filter 0.5s ease,
    transform 0.6s ease;
}
.team-item.team-item-open .team-row-photo img,
.team-row:hover .team-row-photo img {
  filter: grayscale(10%) brightness(0.88);
  transform: scale(1.05);
}
.team-row-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-row-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}
.team-row-name {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0;
}
.team-row-role {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.team-row-tagline {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 420px;
}
.team-row-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
  display: none;
}
.team-row-toggle:hover {
  border-color: rgba(184, 151, 106, 0.3);
}
.team-item.team-item-open .team-row-toggle {
  border-color: rgba(184, 151, 106, 0.25);
}
.team-row-toggle-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--smoke);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.team-item.team-item-open .team-row-toggle-label,
.team-row-toggle:hover .team-row-toggle-label {
  color: var(--gold-dim);
}
.team-row-arrow {
  width: 16px;
  height: 16px;
  color: var(--smoke);
  transition:
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.3s ease;
  flex-shrink: 0;
}
.team-item.team-item-open .team-row-arrow {
  transform: rotate(180deg);
  color: var(--gold-dim);
}

/* ── Detail Panel (expanded) ── */
.team-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.team-item.team-item-open .team-detail-panel {
  max-height: 1200px;
}
.team-detail-inner {
  padding: 0 0 40px 80px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Inner Accordions (About / Filmography) ── */
.team-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.team-acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}
.team-acc-trigger:hover {
  opacity: 0.72;
}
.team-acc-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--bone);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.team-acc-item.team-acc-open .team-acc-label {
  color: var(--gold-dim);
}
.team-acc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dust);
  letter-spacing: 0.1em;
}
.team-acc-arrow {
  width: 16px;
  height: 16px;
  color: var(--smoke);
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.3s ease;
  flex-shrink: 0;
}
.team-acc-item.team-acc-open .team-acc-arrow {
  transform: rotate(180deg);
  color: var(--gold-dim);
}
.team-acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.4s ease;
  opacity: 0;
}
.team-acc-item.team-acc-open .team-acc-body {
  max-height: 600px;
  opacity: 1;
}
.team-acc-content {
  padding-bottom: 28px;
}

/* About text */
.team-about-preview {
  font-size: 16px;
  color: var(--bone);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.team-about-more {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-about-more.expanded {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 16px;
}
.team-about-more p {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.team-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.team-read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s ease;
}
.team-read-more:hover {
  color: var(--gold);
}
.team-read-more.expanded svg {
  transform: rotate(180deg);
}

/* Filmography list */
.team-filmography {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}
.team-filmography li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}
.team-filmography li:hover {
  border-color: rgba(184, 151, 106, 0.15);
}
.tf-title {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
}
.tf-title:hover {
  color: var(--gold);
}
.tf-meta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--dust);
  text-transform: uppercase;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  #team {
    padding: 80px 32px;
  }
  .team-header {
    grid-template-columns: 1fr;
  }
  .team-row {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 16px 20px;
  }
  .team-row-photo {
    width: 72px;
    height: 88px;
  }
  .team-row-tagline {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
  }
  .team-detail-inner {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .team-row {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
  }
  .team-row-toggle {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }
  .team-row-tagline {
    grid-column: 1 / -1;
  }
}

/* ─── Films Pages ─── */
.nav-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--bone);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-logo:hover {
  color: var(--gold);
}

.film-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 80px;
  overflow: hidden;
}
.film-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1440404653325-ab127d49abc1?w=1600&q=85");
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) grayscale(20%);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.film-hero-bg.loaded {
  transform: scale(1);
}
.film-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 9, 6, 1) 0%,
    rgba(10, 9, 6, 0.45) 50%,
    rgba(10, 9, 6, 0.15) 100%
  );
}
.film-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.film-hero-meta {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.film-hero-meta::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.film-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.film-hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--bone);
  line-height: 1.6;
  max-width: 520px;
}

.film-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 52px;
}
.section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}

.stills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stills-grid .still-wide {
  grid-column: span 2;
}
.still {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--coal);
}
.still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.8);
  transition:
    filter 0.6s ease,
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.still:hover img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.04);
}

.trailer-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.trailer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--coal);
}
.trailer-placeholder-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184, 151, 106, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-placeholder-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-left: 4px;
}
.trailer-placeholder p {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.info-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.info-key {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--smoke);
}
.info-val {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--cream);
  font-weight: 300;
}
.info-val a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-val a:hover {
  opacity: 0.7;
}

.synopsis-text {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.synopsis-text + .synopsis-text {
  margin-top: 28px;
  color: var(--bone);
  font-size: clamp(17px, 1.8vw, 22px);
}

.festivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.festival-item {
  padding: 28px 24px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.festival-item:hover {
  background: var(--coal);
  border-color: rgba(184, 151, 106, 0.15);
}
.festival-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.festival-award {
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 6px;
}
.festival-year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--smoke);
  letter-spacing: 0.1em;
}

.broadcasters {
  margin-top: 48px;
}
.broadcasters h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.broadcaster-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.broadcaster-logo {
  padding: 16px 28px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.broadcaster-logo:hover {
  color: var(--bone);
  border-color: rgba(184, 151, 106, 0.15);
}

.film-footer {
  padding: 80px 52px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.film-footer-copy {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--dust);
  letter-spacing: 0.1em;
}
.film-footer-back,
.next-film {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.film-footer-back:hover,
.next-film:hover {
  color: var(--gold);
}
.next-film::after {
  content: "→";
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}

@media (max-width: 768px) {
  .film-nav,
  .film-nav.scrolled {
    padding: 20px 24px;
  }
  .film-hero {
    padding: 0 24px 60px;
  }
  .film-body {
    padding: 0 24px;
  }
  .stills-grid {
    grid-template-columns: 1fr;
  }
  .stills-grid .still-wide {
    grid-column: span 1;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .festivals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .film-footer {
    padding: 48px 24px 32px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .festivals-grid {
    grid-template-columns: 1fr;
  }
}

/* TEAM PAGES */
.page-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 9, 6, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 106, 0.06);
}
.nav-home {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  text-decoration: none;
}
.nav-back-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-back-links a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-back-links a:hover {
  color: var(--gold);
}

.profile-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 90px;
}
.profile-image-col {
  position: sticky;
  top: 90px;
  height: calc(100vh - 90px);
  overflow: hidden;
}
.profile-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.75) contrast(1.05);
}
.profile-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
  pointer-events: none;
}
.profile-content {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
}
.profile-index {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.profile-role {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-role::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}
.profile-name {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 56px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.4;
  margin-bottom: 40px;
}
.profile-bio {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
.profile-bio p {
  font-size: 17px;
  color: var(--bone);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.filmography-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.filmography-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}
.filmography-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}
.filmography-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.3s ease;
}
.filmography-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.filmography-list li:hover {
  border-color: rgba(184, 151, 106, 0.2);
}
.film-entry-title a {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.film-entry-title a:hover {
  color: var(--gold);
}
.film-entry-meta {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  white-space: nowrap;
}
.profile-footer-nav {
  display: flex;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.profile-footer-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.profile-footer-nav a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .page-nav {
    padding: 20px 24px;
  }
  .profile-hero {
    grid-template-columns: 1fr;
  }
  .profile-image-col {
    position: relative;
    top: auto;
    height: 60vw;
    max-height: 480px;
  }
  .profile-image-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
  }
  .profile-content {
    padding: 48px 24px 80px;
  }
}

/* ════════════════════════════════════════
   INLINE STYLES FROM INDEX.HTML
   ════════════════════════════════════════ */
/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0a0906;
  --deep: #110f0c;
  --coal: #1a1714;
  --ash: #2c2825;
  --dust: #4a4540;
  --smoke: #8a7f75;
  --bone: #d1cec9;
  --cream: #e8dfd2;
  --gold: #b8976a;
  --gold-dim: #7a6148;
  --white: #f0e8dc;
  --font-display: "Syncopate", sans-serif;
  --font-mono: "Cormorant Garamond", serif;
  --font-mono: "Space Mono", monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-mono);
  overflow-x: hidden;
  font-size: 18px;
}

/* ─── FILM GRAIN ─── */
#grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
}

/* ─── FILM STRIP ─── */
.filmstrip {
  position: fixed;
  top: 0;
  width: 28px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.filmstrip.left {
  left: 0;
}
.filmstrip.right {
  right: 0;
}
.filmstrip-track {
  display: flex;
  flex-direction: column;
  animation: stripScroll 12s linear infinite;
  opacity: 0.09;
}
.filmstrip.right .filmstrip-track {
  animation-direction: reverse;
}
.strip-hole {
  width: 22px;
  height: 22px;
  border: 2px solid var(--white);
  margin: 6px 4px;
  border-radius: 2px;
  flex-shrink: 0;
}
@keyframes stripScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/* ─── HEADER ─── */
header#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s ease,
    padding 0.4s ease;
}
header#header.scrolled {
  background: rgba(10, 9, 6, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 52px;
  border-bottom: 1px solid rgba(184, 151, 106, 0.08);
}
.header-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  text-decoration: none;
  pointer-events: none;
  cursor: pointer;
}
.header-logo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
nav ul li a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
nav ul li a:hover {
  color: var(--gold);
}
.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-icons a {
  color: var(--bone);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.social-icons a:hover {
  color: var(--gold);
}
.social-icons svg {
  width: 16px;
  height: 16px;
}
.lang-switch {
  display: flex;
  gap: 0;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--bone);
  cursor: pointer;
  padding: 4px 6px;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: inherit;
  transition: color 0.3s ease;
}
.lang-switch button.active {
  color: var(--gold);
}
.lang-switch span {
  color: var(--bone);
  align-self: center;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.burger span {
  width: 24px;
  height: 1px;
  background: var(--bone);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 6, 0.98);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--bone);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu ul li a:hover {
  color: var(--gold);
}
.mobile-menu-footer {
  position: absolute;
  bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(10, 9, 6, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 2;
}
.hero-beam {
  position: absolute;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 151, 106, 0.12),
    transparent
  );
  pointer-events: none;
}
.hero-beam:nth-child(1) {
  left: 30%;
  height: 70%;
  top: 15%;
  transform: rotate(-8deg);
}
.hero-beam:nth-child(2) {
  left: 50%;
  height: 90%;
  top: 5%;
}
.hero-beam:nth-child(3) {
  left: 70%;
  height: 65%;
  top: 20%;
  transform: rotate(6deg);
}
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px 10px;
  transition:
    opacity 0.1s linear,
    transform 0.1s linear;
}
.hero-logo-main {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.hero-logo-main::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.6;
}
.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--cream);
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 40px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-sub::before,
.hero-sub::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.4;
}

/* ─── FILMS SECTION ─── */
#films {
  padding: 80px 52px;
  overflow: hidden;
}
.films-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}
.films-title {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 500px;
}
.films-count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.1em;
  padding-bottom: 8px;
}
/* ─── PRODUCTIONS ─── */
#productions {
  padding: 80px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.productions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
.productions-title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.productions-desc {
  font-size: 18px;
  color: var(--smoke);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.production-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.production-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.production-item:hover::after {
  width: 100%;
}
.production-item:hover .prod-image img {
  filter: grayscale(0%) brightness(0.85);
}
.prod-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.prod-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.7);
  transition:
    filter 0.5s ease,
    transform 0.6s ease;
}
.production-item:hover .prod-image img {
  transform: scale(1.06);
}
.prod-year {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.prod-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.prod-desc {
  font-size: 18px;
  color: var(--bone);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  letter-spacing: 0.02em;
}
.prod-film-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}
.prod-film-link:hover {
  color: var(--gold);
  gap: 12px;
}
.prod-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.rating-score {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.rating-dots {
  display: flex;
  gap: 4px;
}
.rating-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ash);
}
.rating-dot.active {
  background: var(--gold);
}
.rating-label {
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--bone);
}
.production-item.hidden-item {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
}
.production-item.hidden-item.revealed {
  display: block !important;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.see-more-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  background: none;
  border: none;
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.see-more-btn:hover {
  color: var(--gold);
}
.see-more-btn::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}
.see-more-btn:hover::before {
  width: 64px;
}
.btn-icon {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.see-more-btn.open .btn-icon {
  transform: rotate(180deg);
}
.btn-icon svg {
  width: 10px;
  height: 10px;
}

/* ─── TEAM SECTION ─── */
#team {
  padding: 80px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(to bottom, var(--black), var(--deep));
}
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 100px;
  align-items: end;
}
.team-title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.team-desc {
  font-size: 18px;
  color: var(--smoke);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ─── ABOUT ─── */
#about {
  padding: 160px 52px;
  background: linear-gradient(
    to bottom,
    var(--black),
    var(--deep) 50%,
    var(--black)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-quote {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: 0.01em;
  position: relative;
}
.about-quote .highlight {
  color: var(--gold);
}
.about-quote::before {
  content: '"';
  font-size: 120px;
  color: rgba(184, 151, 106, 0.08);
  font-family: var(--font-mono);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-text {
  color: var(--bone);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}
.stat-number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--bone);
}
.cta-collaborate {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border: 1px solid rgba(184, 151, 106, 0.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}
.cta-collaborate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(184, 151, 106, 0.08);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-collaborate:hover::before {
  transform: translateX(0);
}
.cta-collaborate:hover {
  border-color: var(--gold);
}
.cta-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.cta-collaborate:hover .cta-arrow {
  transform: translateX(4px);
}

/* ─── FOOTER ─── */
footer#footer {
  padding: 80px 52px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--bone);
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--bone);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo-symbol {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.2em;
  transition: color 0.4s ease;
}
.footer-logo-symbol:hover {
  color: var(--gold);
}
.footer-year {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--bone);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-social {
  display: flex;
  gap: 26px;
}
.footer-social a {
  color: var(--bone);
  transition: color 0.3s ease;
  display: flex;
}
.footer-social a:hover {
  color: var(--gold);
}
.footer-social svg {
  width: 26px;
  height: 26px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--bone);
}
.footer-strip {
  display: flex;
  gap: 3px;
  align-items: center;
}
.footer-strip-frame {
  width: 10px;
  height: 14px;
  border: 1px solid var(--ash);
  border-radius: 1px;
  opacity: 0.3;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ════════════════════════════════════════
         OVERLAY PANEL SYSTEM
         ════════════════════════════════════════ */
.overlay-panel {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--black);
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition:
    opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s 0.55s;
  -webkit-overflow-scrolling: touch;
}
.overlay-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s 0s;
}

/* ── Overlay close bar ── */
.overlay-close-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 9, 6, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 106, 0.06);
}
.overlay-close-bar .bar-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--bone);
  text-decoration: none;
  cursor: pointer;
}
.overlay-close-bar .bar-logo:hover {
  color: var(--gold);
}
.overlay-close-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0;
}
.overlay-close-btn:hover {
  color: var(--gold);
}
.overlay-close-x {
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.overlay-close-btn:hover .overlay-close-x {
  transform: rotate(90deg);
}
.overlay-close-x::before {
  content: "×";
  font-size: 16px;
  line-height: 1;
  font-family: var(--font-mono);
  margin-left: 3px;
}

/* ══════════════════
         FILM OVERLAY
         ══════════════════ */
.film-overlay-hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 80px;
  overflow: hidden;
}
.film-overlay-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) grayscale(20%);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.film-overlay-bg.loaded {
  transform: scale(1);
}
.film-overlay-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 9, 6, 1) 0%,
    rgba(10, 9, 6, 0.4) 50%,
    rgba(10, 9, 6, 0.1) 100%
  );
}
.film-overlay-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.film-overlay-meta {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.film-overlay-meta::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.film-overlay-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.film-overlay-tagline {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--bone);
  line-height: 1.6;
  max-width: 520px;
}

.film-overlay-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 52px 80px;
}
.fob-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.fob-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.fob-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}

/* Details strip */
.film-details-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.fds-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.fds-cell:last-child {
  border-right: none;
}
.fds-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fds-value {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.4;
}
.fds-value a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.fds-value a:hover {
  opacity: 0.7;
}

/* Synopsis */
.film-synopsis-lead {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 36px;
  border-left: 2px solid var(--gold-dim);
  padding-left: 28px;
}
.film-synopsis-p {
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--bone);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.film-pull-quote {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  text-align: center;
  padding: 40px 0;
  margin: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Stills grid */
.film-stills-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.film-still {
  overflow: hidden;
  background: var(--coal);
}
.film-still.tall {
  aspect-ratio: 3/4;
}
.film-still.wide {
  aspect-ratio: 21/9;
  grid-column: span 2;
}
.film-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.8);
  transition:
    filter 0.6s ease,
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.film-still:hover img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.04);
}
.film-still figcaption {
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* Trailer */
.film-trailer-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.film-trailer-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.film-trailer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--coal);
}
.trailer-play-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184, 151, 106, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-play-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-left: 4px;
}
.film-trailer-placeholder p {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* Festivals */
.fest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}
.fest-col {
  background: var(--black);
  padding: 40px 32px;
}
.fest-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.fest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fest-entry {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: flex-start;
}
.fest-year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold-dim);
  flex-shrink: 0;
  padding-top: 2px;
}
.fest-name {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 4px;
}
.fest-note {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--smoke);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}
.logo-chip {
  padding: 8px 14px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* Film footer nav */
.film-overlay-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.fof-link {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}
.fof-link:hover {
  color: var(--gold);
}
.fof-link.prev::before {
  content: "←";
  transition: transform 0.3s ease;
}
.fof-link.prev:hover::before {
  transform: translateX(-4px);
}
.fof-link.next::after {
  content: "→";
  transition: transform 0.3s ease;
}
.fof-link.next:hover::after {
  transform: translateX(4px);
}
.fof-mark {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--dust);
}

/* ══════════════════
         TEAM OVERLAY
         ══════════════════ */
.team-overlay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 73px);
}
.team-overlay-img-col {
  position: sticky;
  top: 73px;
  height: calc(100vh - 73px);
  overflow: hidden;
}
.team-overlay-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.75) contrast(1.05);
}
.team-overlay-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
  pointer-events: none;
}
.team-overlay-content {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
}
.profile-index {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.profile-role-tag {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-role-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}
.profile-name-h {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 56px;
}
.profile-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.4;
  margin-bottom: 40px;
}
.profile-bio-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
.profile-bio-text p {
  font-size: 17px;
  color: var(--bone);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.filmography-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.filmography-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}
.filmography-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
.filmography-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.3s ease;
}
.filmography-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.filmography-list li:hover {
  border-color: rgba(184, 151, 106, 0.2);
}
.film-entry-title {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
}
.film-entry-title:hover {
  color: var(--gold);
}
.film-entry-meta {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  header#header {
    padding: 24px 32px;
  }
  header#header.scrolled {
    padding: 16px 32px;
  }
  nav,
  .social-icons,
  .lang-switch {
    display: none;
  }
  .mobile-menu .social-icons,
  .mobile-menu .lang-switch {
    display: flex;
  }
  .burger {
    display: flex;
  }
  #films {
    padding: 100px 32px;
  }
  .films-orbit {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .film-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 220px !important;
    margin-bottom: 12px;
  }
  /* old .film-card mobile styles removed */
  #productions {
    padding: 80px 32px;
  }
  .productions-header {
    grid-template-columns: 1fr;
  }
  .production-item {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .prod-rating {
    display: none;
  }
  #team {
    padding: 80px 32px;
  }
  .team-header {
    grid-template-columns: 1fr;
  }
  #about {
    padding: 100px 32px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-quote::before {
    display: none;
  }
  footer#footer {
    padding: 60px 32px 36px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-tagline {
    text-align: center;
  }
  .overlay-close-bar {
    padding: 18px 24px;
  }
  .film-overlay-hero {
    padding: 0 24px 60px;
  }
  .film-overlay-body {
    padding: 0 24px 80px;
  }
  .film-details-strip {
    grid-template-columns: 1fr 1fr;
  }
  .fds-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .film-stills-lead {
    grid-template-columns: 1fr;
  }
  .film-still.wide {
    grid-column: span 1;
  }
  .fest-grid {
    grid-template-columns: 1fr;
  }
  .film-overlay-footer {
    padding: 40px 24px;
  }
  .team-overlay-inner {
    grid-template-columns: 1fr;
  }
  .team-overlay-img-col {
    position: relative;
    top: auto;
    height: 60vw;
    max-height: 480px;
  }
  .team-overlay-img-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
  }
  .team-overlay-content {
    padding: 48px 24px 80px;
  }
}
@media (max-width: 600px) {
  .films-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-logo-main {
    letter-spacing: 0.1em;
  }
  .production-item {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .film-details-strip {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   ЗМІНА 2 — PRODUCTION DETAIL PANEL
   Opens in-place below the production row
   ══════════════════════════════════════════════ */

.production-item {
  /* Needed for column layout change */
  flex-wrap: wrap;
  cursor: pointer;
}

/* Detail panel collapses/expands */
.prod-detail-panel {
  width: 100%;
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.45s ease;
  opacity: 0;
  pointer-events: none;
}

.production-item.prod-open .prod-detail-panel {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
}

/* Animate the prod-open state border */
.production-item.prod-open {
  border-top-color: rgba(184, 151, 106, 0.3);
}

.production-item.prod-open::after {
  width: 100%;
}

.pdp-inner {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 24px;
}

.pdp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .pdp-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.pdp-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}

.pdp-lead {
  font-family: var(--font-mono);
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 16px;
  border-left: 2px solid var(--gold-dim);
  padding-left: 20px;
}

.pdp-body {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--bone);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.pdp-quote {
  font-family: var(--font-mono);
  font-size: 15px;
  font-style: italic;
  color: var(--smoke);
  line-height: 1.6;
  border-left: 1px solid rgba(184, 151, 106, 0.25);
  padding: 12px 0 12px 20px;
  margin: 0;
}

.pdp-defs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  margin-bottom: 8px;
}

.pdp-defs dt {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  padding-top: 1px;
}

.pdp-defs dd {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bone);
  margin: 0;
}

.pdp-festivals {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdp-festivals li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bone);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-weight: 300;
}

.pdp-fest-year {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.pdp-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-close:hover {
  color: var(--gold);
  border-color: rgba(184, 151, 106, 0.35);
}

/* ══════════════════════════════════════════════
   FILM ACCORDION — Inner open/close sections
   ══════════════════════════════════════════════ */

.prod-row {
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  cursor: pointer;
  padding: 8px 0;
}

.prod-expand-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  padding: 10px 14px;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.prod-expand-btn:hover {
  border-color: rgba(243, 200, 140, 0.3);
}

.prod-expand-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--smoke);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.prod-expand-btn:hover .prod-expand-label {
  color: var(--gold-dim);
}

.prod-arrow {
  width: 18px;
  height: 18px;
  color: var(--smoke);
  transition:
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.3s ease;
  flex-shrink: 0;
}

.prod-expand-btn:hover .prod-arrow {
  color: var(--gold-dim);
}

.production-item.prod-open .prod-expand-btn .prod-arrow {
  transform: rotate(180deg);
  color: var(--gold-dim);
}

.production-item.prod-open .prod-expand-btn {
  border-color: rgba(243, 200, 140, 0.2);
}

.production-item.prod-open .prod-expand-label {
  color: var(--gold-dim);
}

.film-body {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.film-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.film-acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}

.film-acc-trigger:hover {
  opacity: 0.72;
}

.film-acc-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--bone);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.film-acc-item.film-acc-open .film-acc-label {
  color: var(--gold-dim);
}

.film-acc-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dust);
  letter-spacing: 0.1em;
}

.film-acc-arrow {
  width: 16px;
  height: 16px;
  color: var(--smoke);
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.3s ease;
  flex-shrink: 0;
}

.film-acc-item.film-acc-open .film-acc-arrow {
  transform: rotate(180deg);
  color: var(--gold-dim);
}

.film-acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.52s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.film-acc-item.film-acc-open .film-acc-body {
  max-height: 900px;
  opacity: 1;
  padding-bottom: 28px;
}

.film-footer {
  display: flex;
  justify-content: flex-start;
  padding: 24px 0 8px;
}

.film-stills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.film-still {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ash);
}

.film-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition:
    filter 0.5s ease,
    transform 0.5s ease;
}

.film-still:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.film-trailer-wrap {
  width: 100%;
}

.film-trailer-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

.film-trailer-placeholder svg {
  width: 52px;
  height: 52px;
  color: var(--dust);
}

.film-trailer-placeholder span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dust);
}

.production-item.prod-open .prod-detail-panel {
  max-height: 4000px !important;
}

@media (max-width: 768px) {
  .prod-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .prod-rating {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
  .prod-expand-btn {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: space-between;
    width: 100%;
  }
  .film-stills-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .film-stills-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Override: production-item is now block to support prod-row + detail-panel stacking ── */
.production-item {
  display: block;
  cursor: default;
}

.production-item.hidden-item {
  display: none !important;
}

.production-item.hidden-item.revealed {
  display: block !important;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.btt-line {
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2.5px solid var(--gold, #b8976a);
  border-top: 2.5px solid var(--gold, #b8976a);
  transform: rotate(45deg);
  background: none;
  animation: bttChevron1 1.8s ease-in-out infinite 0s;
  position: relative;
  margin-top: 20px;
}

.btt-line::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-left: 2.5px solid rgba(184, 151, 106, 0.55);
  border-top: 2.5px solid rgba(184, 151, 106, 0.55);
  animation: bttChevron2 1.8s ease-in-out infinite 0.22s;
}

.btt-line::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-left: 2.5px solid rgba(184, 151, 106, 0.25);
  border-top: 2.5px solid rgba(184, 151, 106, 0.25);
  animation: bttChevron2 1.8s ease-in-out infinite 0.44s;
}

@keyframes bttChevron1 {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(6px, 6px);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0.1;
    transform: rotate(45deg) translate(-6px, -6px);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-6px, -6px);
  }
}

@keyframes bttChevron2 {
  0% {
    opacity: 0;
    transform: translate(0px, 10px);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0.1;
    transform: translate(0px, -10px);
  }
  100% {
    opacity: 0;
    transform: translate(0px, -10px);
  }
}
