/* ===== FONTS (CDN) ===== */
@font-face {
  font-family: 'DIN Condensed';
  src: local('DIN Condensed Bold'), local('DINCondensed-Bold'),
    url('https://db.onlinewebfonts.com/t/2e5faaf6e5dbbb89e26aad4ef733eb92.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/2e5faaf6e5dbbb89e26aad4ef733eb92.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Condensed';
  src: local('DIN Condensed'), local('DINCondensed'),
    url('https://db.onlinewebfonts.com/t/474426d93e6c1a28f76e4bbb8e230eb6.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/474426d93e6c1a28f76e4bbb8e230eb6.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: local('Gilroy-Regular'),
    url('https://db.onlinewebfonts.com/t/10b95fbfe05753e015e976c0cd688067.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/10b95fbfe05753e015e976c0cd688067.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: local('Gilroy-Medium'),
    url('https://db.onlinewebfonts.com/t/f7b7dbdf95c6c3bd41bd3ddfb9e5dd47.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/f7b7dbdf95c6c3bd41bd3ddfb9e5dd47.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: local('Gilroy-SemiBold'),
    url('https://db.onlinewebfonts.com/t/87d0c8e4117e72537b1e25834e5e4b42.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/87d0c8e4117e72537b1e25834e5e4b42.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: local('Gilroy-ExtraBold'),
    url('https://db.onlinewebfonts.com/t/8a0b6eb09f7f97c0b1e2e2b6c94feda6.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/8a0b6eb09f7f97c0b1e2e2b6c94feda6.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & GLOBALS ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #fff7cd;
  --gold-dim: rgba(255, 247, 205, 0.32);
  --gold-80: rgba(255, 247, 205, 0.8);
  --black: #000000;
  --white: #ffffff;
  --page-width: 1440px;
  --content-padding: 72px;
  --font-display: 'DIN Condensed', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'Gilroy', 'Helvetica Neue', 'Arial', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

section,
footer {
  max-width: var(--page-width);
  margin: 0 auto;
  position: relative;
}

.dimmed {
  color: var(--gold-dim);
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 63.908px;
  text-align: center;
  color: var(--gold);
  letter-spacing: normal;
  line-height: normal;
}

.section-title--left {
  text-align: left;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 31.88px;
  line-height: normal;
  text-align: center;
  padding: 7px 32px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--filled {
  background: var(--gold);
  color: var(--black);
}

.btn--filled:hover {
  background: #ffe580;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 247, 205, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.09px solid var(--gold);
}

.btn--outline:hover {
  background: rgba(255, 247, 205, 0.08);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn--small {
  font-size: 28.88px;
  padding: 7px 24px;
}

.btn__icon {
  width: 21px;
  height: 21px;
}

/* ===== SPACER ===== */
.spacer {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.spacer__left {
  width: 54.6%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.spacer__right {
  width: 45.4%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: rotate(180deg);
  margin-left: auto;
}

.spacer--inner {
  padding: 0;
}

/* ===== SECTION 1: HERO ===== */
.hero {
  position: relative;
  width: 100%;
  max-width: var(--page-width);
  height: 868px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  width: 140%;
  height: 158%;
  left: -20%;
  top: -37%;
  max-width: none;
  object-fit: cover;
}

.hero__title-vertical {
  position: absolute;
  left: 52px;
  top: 263px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 150.659px;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: -9.04px;
  line-height: normal;
}

.hero__logline {
  position: absolute;
  right: var(--content-padding);
  top: 275px;
  width: 237px;
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--gold);
  text-align: right;
  letter-spacing: -0.44px;
  line-height: normal;
}

.hero__tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 665px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  color: var(--gold);
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

.hero__cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 757px;
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ===== SECTION 2: SYNOPSIS ===== */
.synopsis {
  position: relative;
  width: 100%;
  max-width: var(--page-width);
  height: 810px;
  overflow: hidden;
  border-radius: 16px;
}

.synopsis__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
}

.synopsis__bg-img {
  position: absolute;
  width: 100%;
  height: 222%;
  left: 0;
  top: -83%;
  max-width: none;
  object-fit: cover;
}

.synopsis__gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 372px;
  bottom: 0;
  background:
    linear-gradient(-6.78deg, rgb(0, 0, 0) 25.07%, rgba(0, 0, 0, 0) 57.77%),
    linear-gradient(200.87deg, rgba(0, 0, 0, 0) 35.37%, rgb(0, 0, 0) 91.89%);
}

.synopsis__text {
  position: absolute;
  left: var(--content-padding);
  right: var(--content-padding);
  bottom: 188px;
  font-family: var(--font-body);
  font-size: 26px;
  color: var(--gold);
  text-align: justify;
  letter-spacing: -0.52px;
  line-height: normal;
}

.synopsis__text p {
  margin-bottom: 16px;
}

.synopsis__text p:last-child {
  margin-bottom: 0;
}

/* ===== SECTION 3: SLIDER ===== */
.slider-section {
  max-width: var(--page-width);
  height: 810px;
  overflow: hidden;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider__track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-33.333%);
}

.slider__slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slider__slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
}

.slider__slide-bg img {
  width: 102%;
  height: 121%;
  position: absolute;
  left: -1%;
  top: -9%;
  max-width: none;
  object-fit: cover;
}

.slider__slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.slider__slide-overlay--gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0));
}

.slider__slide-content {
  position: absolute;
  left: var(--content-padding);
  right: var(--content-padding);
  top: 140px;
  font-family: var(--font-body);
  font-size: 26px;
  color: var(--gold);
  text-align: justify;
  letter-spacing: -0.52px;
  line-height: normal;
  z-index: 2;
}

.slider__slide-content--center {
  text-align: center;
}

.slider__slide-content p {
  margin-bottom: 16px;
}

.sham-logo {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
}

.sham-logo__outer {
  height: 48px;
  width: auto;
}

.sham-logo__inner {
  position: absolute;
  inset: 0;
  height: 100%;
  width: auto;
}

.slider__slide-logo {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__stats {
  position: absolute;
  bottom: 72px;
  left: var(--content-padding);
  right: var(--content-padding);
  display: flex;
  gap: 120px;
  z-index: 2;
}

.slider__stat {
  display: flex;
  flex-direction: column;
}

.slider__stat-subtitle {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.48px;
}

.slider__stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 148.619px;
  color: var(--gold);
  letter-spacing: -8.92px;
  line-height: 1;
}

.slider__stat-label {
  font-size: 24px;
  color: var(--gold);
}

/* ===== SECTION 4: PRODUCTION NOTES ===== */
.production-notes {
  padding: 0 var(--content-padding);
}

.production-notes__content {
  position: relative;
  padding: 10px 0;
  margin-top: 10px;
}

.production-notes__quote-open {
  width: 127px;
  height: 116px;
  margin-bottom: 8px;
}

.production-notes__text {
  font-size: 24px;
  text-align: justify;
  letter-spacing: -0.48px;
  line-height: normal;
  margin-bottom: 16px;
}

.production-notes__quote-close {
  width: 127px;
  height: 116px;
  display: block;
  margin-left: auto;
  transform: rotate(180deg);
  margin-top: -8px;
}

.production-notes__author {
  font-size: 24px;
  text-align: center;
  line-height: 1.052;
}

/* ===== SECTION 5: FACTS ===== */
.facts {
  max-width: var(--page-width);
}

.facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 405px 405px;
}

.facts__item {
  position: relative;
}

.facts__item--full {
  grid-column: 1 / -1;
}

.facts__img {
  width: 100%;
  height: 405px;
  overflow: hidden;
  position: relative;
}

.facts__img--tl {
  border-top-left-radius: 16px;
}

.facts__img--tr {
  border-top-right-radius: 16px;
}

.facts__img--bottom {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.facts__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facts__caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  color: var(--gold);
  text-align: center;
  white-space: nowrap;
}

.facts__item:first-child .facts__caption {
  white-space: normal;
  width: 547px;
  max-width: 90%;
}

/* ===== SECTION 6: CAST & CREW ===== */
.cast {
  padding: 0 var(--content-padding) 20px;
}

.cast__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 21px;
  margin-top: 24px;
}

.cast__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cast__photo {
  width: 255px;
  height: 405px;
  overflow: hidden;
  position: relative;
}

.cast__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast__photo--flipped img {
  transform: scaleX(-1);
}

.cast__photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50.12%, rgba(0, 0, 0, 0.85));
}

.cast__info {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.052;
}

.cast__name {
  color: var(--gold);
  margin-bottom: 2px;
}

.cast__role {
  color: var(--gold-dim);
}

.cast__script-credit {
  text-align: center;
  font-size: 20px;
  margin-top: 16px;
  line-height: 1.052;
}

/* ===== SECTION 7: BIOS ===== */
.bios {
  padding: 0 60px;
}

.bios__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bios__divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.bios__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 30px;
  position: relative;
}

.bios__person {
  display: flex;
  flex-direction: column;
}

.bios__person-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.bios__avatar {
  width: 101px;
  height: 101px;
  border-radius: 50%;
  object-fit: cover;
}

.bios__person-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46.89px;
  color: var(--gold);
  line-height: normal;
}

.bios__person-role {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gold-dim);
  line-height: normal;
}

.bios__person-text {
  font-size: 23px;
  text-align: justify;
  letter-spacing: -0.46px;
  line-height: normal;
}

/* ===== SECTION 8: CINEMATIC IMAGE ===== */
.cinematic-image {
  max-width: var(--page-width);
}

.cinematic-image__container {
  width: 100%;
  height: 810px;
  border-radius: 16px;
  overflow: hidden;
}

.cinematic-image__container img {
  width: 134%;
  height: 134%;
  max-width: none;
  object-fit: cover;
  margin-left: -17%;
  margin-top: -17%;
}

/* ===== SECTION 9: DIRECTOR'S STATEMENT ===== */
.statement {
  max-width: var(--page-width);
  height: 810px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.statement__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
}

.statement__bg img {
  width: 120.63%;
  height: 141%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  left: -10.74%;
  top: -10.74%;
}

.statement__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(-50.31deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 46.4%),
    linear-gradient(180.68deg, rgba(0, 0, 0, 0) 2.63%, rgba(0, 0, 0, 0.7) 59.85%);
}

.statement__content {
  position: absolute;
  left: var(--content-padding);
  right: var(--content-padding);
  bottom: 52px;
  z-index: 2;
}

.statement__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 63.908px;
  color: var(--gold);
  line-height: normal;
  margin-bottom: 10px;
}

.statement__quote {
  position: relative;
}

.statement__quote-open {
  width: 127px;
  height: 116px;
  margin-bottom: 8px;
}

.statement__text {
  font-size: 24px;
  text-align: justify;
  letter-spacing: -0.48px;
  line-height: normal;
  margin-bottom: 8px;
}

.statement__quote-close {
  width: 127px;
  height: 116px;
  display: block;
  margin-left: auto;
  transform: rotate(180deg);
}

.statement__author {
  font-size: 24px;
  line-height: 1.052;
}

/* ===== SECTION 10: GALLERY ===== */
.gallery {
  padding: 0 30px;
}

.gallery__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

.gallery__tab {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24.662px;
  color: var(--gold);
  background: transparent;
  border: 0.843px solid var(--gold);
  border-radius: 30.943px;
  padding: 5px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 41px;
  display: flex;
  align-items: center;
}

.gallery__tab--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gallery__tab:hover:not(.gallery__tab--active) {
  background: rgba(255, 247, 205, 0.1);
}

.gallery__divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 35px 0 35px;
}

.gallery__carousel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.gallery__arrow:hover {
  opacity: 1;
}

.gallery__arrow img {
  width: 13px;
  height: 27px;
}

.gallery__images {
  display: flex;
  gap: 32px;
  flex: 1;
  overflow: hidden;
}

.gallery__image {
  width: calc((100% - 64px) / 3);
  height: 367px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== SECTION 11: TECHNICAL INFO ===== */
.tech-info {
  padding: 0 80px;
}

.tech-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 60px;
  margin-top: 32px;
}

.tech-info__item {
  display: flex;
  flex-direction: column;
}

.tech-info__label {
  font-size: 24px;
  color: var(--gold-80);
  letter-spacing: -0.48px;
  margin-bottom: 4px;
}

.tech-info__value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--gold);
}

/* ===== SECTION 12: TRAILER ===== */
.trailer {
  padding: 0;
}

.trailer .section-title {
  padding: 0 var(--content-padding);
  margin-bottom: 12px;
}

.trailer__video {
  width: 100%;
  height: 809px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  position: relative;
}

.trailer__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.trailer__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.trailer__play:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== SECTION 13: SCREENER ===== */
.screener {
  padding: 0 55px;
}

.screener .section-title {
  margin-bottom: 16px;
}

.screener__layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 60px;
  position: relative;
}

.screener__divider {
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
  align-self: stretch;
}

.screener__info {
  font-size: 24px;
  text-align: justify;
  letter-spacing: -0.48px;
  line-height: normal;
}

.screener__info p {
  margin-bottom: 24px;
}

.screener__disclaimer {
  margin-top: auto;
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% - 31px);
}

.screener__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.screener__field {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 247, 205, 0.3);
  margin-bottom: 22px;
}

.screener__field label {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}

.screener__field input,
.screener__field textarea,
.screener__field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 20px;
  padding: 8px 0;
  resize: none;
}

.screener__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("assets/svg/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 19px 12px;
  padding-right: 36px;
}

.screener__field select option {
  background: var(--black);
  color: var(--gold);
}

.screener__form .btn--filled {
  margin-top: 8px;
  font-size: 28.88px;
}

.screener__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.screener__actions .btn {
  flex: 1;
  border-width: 1.5px;
}

/* ===== SECTION 14: CONTACT / FOOTER ===== */
.contact {
  padding: 0 var(--content-padding) 60px;
}

.contact__header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}

.contact__header .section-title {
  font-size: 63.908px;
}

.contact__header .btn {
  flex-shrink: 0;
}

.contact__content {
  display: flex;
  justify-content: space-between;
}

.contact__info {
  flex: 1;
}

.contact__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: normal;
}

.contact__logos {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 48px;
}

.sham-logo--footer .sham-logo__outer {
  height: 47px;
}

.contact__worxpace img {
  height: 38px;
  width: auto;
}

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

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact__icon {
  width: 24px;
  height: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact__detail p,
.contact__detail a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
  line-height: normal;
}

.contact__detail a {
  text-decoration: underline;
}

.contact__detail div p {
  margin-bottom: 4px;
}

.contact__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 100px;
  padding-top: 100px;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact__social-link:hover {
  opacity: 1;
}

.contact__social-link svg {
  display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero__tagline {
    font-size: 52px;
    white-space: normal;
    width: 80%;
  }

  .hero__title-vertical {
    font-size: 100px;
    left: 24px;
  }

  .cast__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .cast__photo {
    width: 100%;
    height: 320px;
  }

  .slider__stat-number {
    font-size: 100px;
  }
}

@media (max-width: 900px) {
  :root {
    --content-padding: 32px;
  }

  .section-title {
    font-size: 42px;
  }

  .hero {
    height: 600px;
  }

  .hero__tagline {
    font-size: 36px;
    top: 420px;
  }

  .hero__cta {
    top: 510px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero__title-vertical {
    font-size: 72px;
    left: 16px;
    top: 120px;
  }

  .hero__logline {
    display: none;
  }

  .synopsis {
    height: auto;
    min-height: 500px;
  }

  .synopsis__text {
    font-size: 20px;
    position: relative;
    bottom: auto;
    padding: 320px 24px 40px;
  }

  .slider-section {
    height: auto;
  }

  .slider__track {
    flex-direction: column;
    width: 100%;
    height: auto;
    transform: none;
  }

  .slider__slide {
    width: 100%;
    height: 500px;
  }

  .slider__stats {
    position: relative;
    bottom: auto;
    flex-direction: column;
    gap: 32px;
    padding: 24px;
  }

  .slider__stat-number {
    font-size: 72px;
  }

  .facts__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .facts__img--tl,
  .facts__img--tr {
    border-radius: 0;
  }

  .cast__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cast__photo {
    width: 100%;
    height: 280px;
  }

  .bios__columns,
  .bios__content {
    grid-template-columns: 1fr;
  }

  .bios__divider {
    display: none;
  }

  .screener__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .screener__divider {
    display: none;
  }

  .screener__disclaimer {
    position: relative;
    width: 100%;
  }

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

  .contact__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery__images {
    gap: 16px;
  }

  .gallery__image {
    width: calc((100% - 32px) / 2);
    height: 240px;
  }
}

@media (max-width: 600px) {
  .hero__tagline {
    font-size: 28px;
    top: 350px;
  }

  .hero__cta {
    top: 430px;
  }

  .btn {
    font-size: 22px;
    padding: 6px 20px;
  }

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

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

  .tech-info__grid {
    grid-template-columns: 1fr;
  }

  .gallery__image {
    width: 100%;
  }

  .gallery__images {
    flex-direction: column;
  }

  .slider__stat-number {
    font-size: 48px;
  }

  .bios__person-name {
    font-size: 32px;
  }

  .screener__actions {
    flex-direction: column;
  }
}