body {
  background: #101010;
}

.film-project-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.96) 0%, rgba(8, 8, 8, 1) 100%);
  color: #f2f2f2;
}

.site-header--static .site-nav a,
.site-header--static .logo-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--static .site-nav a::after {
  background: rgba(255, 255, 255, 0.92);
}

.film-project-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.film-project-hero__media,
.film-project-hero__overlay {
  position: absolute;
  inset: 0;
}

.film-project-hero__media {
  background-image: var(--film-project-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.film-project-page.is-ready .film-project-hero__media {
  transform: scale(1);
  opacity: 1;
}

.film-project-hero__overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.34) 0%, rgba(8, 8, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.8) 0%, rgba(8, 8, 8, 0.2) 58%);
}

.film-project-hero__content,
.film-project-content {
  width: min(calc(100% - 24px), 1720px);
  margin: 0 auto;
}

.film-project-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 74px;
}

.film-project-back,
.film-project-back:visited {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: "Futura", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.film-project-back:hover,
.film-project-back:focus-visible {
  color: #ffffff;
  transform: translateX(-4px);
}

.film-project-kicker,
.film-project-crew__label,
.film-project-meta {
  margin-top: 28px;
  font-family: "Futura", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.film-project-title {
  margin-top: 14px;
  max-width: min(100%, 920px);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 500;
}

.film-project-content {
  display: grid;
  gap: 34px;
  padding: 42px 0 72px;
}

.film-project-player__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.film-project-player__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-project-info {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.film-project-description {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.86;
  color: rgba(242, 242, 242, 0.92);
}

.film-project-crew__list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.film-project-crew__item {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.film-project-crew__role {
  font-family: "Futura", "Trebuchet MS", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.52);
}

.film-project-crew__name {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(242, 242, 242, 0.92);
}

.film-project-empty {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.56);
}

@media (max-width: 1024px) {
  .film-project-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .film-project-hero__content,
  .film-project-content {
    width: min(calc(100% - 16px), 1720px);
  }

  .film-project-hero__content {
    padding-bottom: 54px;
  }

  .film-project-title {
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }
}
