/* ============================================================
   No37 — Film Landing Page
   Design System: A24-style editorial cinematic
   Palette: Charcoal + Warm Copper + Cream
   Typography: Playfair Display (display) + Inter (body)
   ============================================================ */

/* ===== FONT FACES ===== */
@font-face {
  font-family: 'Motorway Bold';
  src: url('assets/fonts/MotorwayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Condensed';
  src: url('assets/fonts/Gilroy/DIN Condensed Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;

  --copper: #c8956c;
  --copper-dim: rgba(200, 149, 108, 0.5);
  --copper-glow: rgba(200, 149, 108, 0.15);
  --gold: #fff7cd;

  --text-primary: #f0e6d8;
  --text-secondary: #9a948e;
  --text-muted: #5a554f;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-heading: 'DIN Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Gilroy', 'Inter', 'Helvetica Neue', sans-serif;

  --page-max: 1440px;
  --section-padding: 140px 100px;
  --section-gap: 0;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--text-primary);
}

::selection {
  background: var(--copper);
  color: var(--bg);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 5.5vw, 72px);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 48px;
}

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

.dimmed {
  color: var(--text-secondary);
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--filled {
  background: var(--copper);
  color: var(--bg);
}

.btn--filled:hover {
  background: var(--text-primary);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 149, 108, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240, 230, 216, 0.25);
}

.btn--outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-2px);
}

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

.btn--small {
  font-size: 12px;
  padding: 10px 20px;
}

.btn__icon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/* ===== SECTION DIVIDERS (replacing decorative spacers) ===== */
.spacer {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--copper-dim) 20%,
    var(--copper) 50%,
    var(--copper-dim) 80%,
    transparent 100%
  );
  opacity: 0.3;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.spacer img {
  display: none;
}

.spacer--inner {
  margin: 0 auto 32px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FILM GRAIN OVERLAY ===== */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px 40px 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(20% - 100px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}

.hero__title-vertical {
  position: absolute;
  left: 96px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  font-family: 'Motorway Bold', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 10vw, 160px);
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-align: center;
  writing-mode: vertical-rl;
  user-select: none;
}

.hero__tagline {
  position: relative;
  z-index: 3;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--text-primary);
  text-align: center;
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 1);
}

.hero__logline {
  position: absolute;
  right: 96px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  text-align: right;
  max-width: 280px;
  line-height: 1.6;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 1);
}

.hero__cta {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   SECTION 2: SYNOPSIS
   ============================================================ */
.synopsis {
  position: relative;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.synopsis__bg {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.synopsis__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.synopsis__gradient {
  display: none;
}

.synopsis__text {
  position: relative;
  color: var(--text-secondary);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.synopsis__text p:last-child {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   SECTION 3: SLIDER (About Sham Studios) — Fading Carousel
   ============================================================ */
.slider-section {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 100px;
}

.slider {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.slider__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slider__slide-bg {
  position: absolute;
  inset: 0;
}

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

.slider__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.2) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.slider__slide-overlay--gradient {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.slider__slide-content {
  position: absolute;
  bottom: 160px;
  left: 48px;
  right: 48px;
  z-index: 2;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.slider__slide-content p + p {
  margin-top: 12px;
}

.slider__slide-content--center {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;
  top: 50%;
  margin-top: -80px;
  max-width: 500px;
}

.slider__slide-content strong {
  color: var(--copper);
}

.sham-logo {
  margin-bottom: 20px;
}

.sham-logo img {
  height: 56px;
  margin: 0 auto;
  opacity: 0.9;
}

.slider__slide-logo {
  position: absolute;
  top: 32px;
  left: 48px;
  z-index: 2;
}

.slider__slide-logo img {
  height: 32px;
  opacity: 0.7;
}

/* Slider Stats */
.slider__stats {
  position: absolute;
  bottom: 40px;
  left: 48px;
  right: 48px;
  display: flex;
  gap: 64px;
  z-index: 2;
}

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

.slider__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.slider__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 4px;
}

.slider__stat-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Slider Navigation Dots */
.slider__nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 230, 216, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider__dot:hover {
  border-color: var(--copper);
}

.slider__dot--active {
  background: var(--copper);
  border-color: var(--copper);
  width: 28px;
  border-radius: 5px;
}

/* Slider Arrows */
.slider__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 5;
  pointer-events: none;
}

.slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(240, 230, 216, 0.2);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
  color: var(--text-primary);
  font-size: 18px;
}

.slider__arrow:hover {
  border-color: var(--copper);
  background: rgba(200, 149, 108, 0.2);
}

/* ============================================================
   SECTION 4: PRODUCTION NOTES
   ============================================================ */
.production-notes {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--section-padding);
  text-align: center;
  position: relative;
}

.production-notes .section-title {
  margin-bottom: 48px;
}

.production-notes__content {
  position: relative;
}

.production-notes__quote-open,
.production-notes__quote-close {
  display: none;
}

.production-notes__content::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--copper);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.production-notes__text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
  font-style: italic;
  padding-top: 40px;
}

.production-notes__author {
  margin-top: 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
}

/* ============================================================
   SECTION 5: PRODUCTION FACTS
   ============================================================ */
.facts {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 100px;
}

.facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px 420px;
  gap: 16px;
}

.facts__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.facts__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.facts__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.facts__item:hover .facts__img img {
  transform: scale(1.05);
}

.facts__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.facts__img--tl { border-radius: var(--radius-lg); }
.facts__img--tr { border-radius: var(--radius-lg); }
.facts__img--bottom { border-radius: var(--radius-lg); }

/* ============================================================
   SECTION 6: CAST & CREW
   ============================================================ */
.cast {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

.cast .section-title {
  text-align: center;
}

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

.cast__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition);
}

.cast__card:hover {
  transform: translateY(-8px);
}

.cast__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.cast__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cast__card:hover .cast__photo img {
  transform: scale(1.08);
}

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

.cast__card:hover .cast__photo--flipped img {
  transform: scaleX(-1) scale(1.08);
}

.cast__photo-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.cast__info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.cast__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.cast__role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
}

.cast__script-credit {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.cast__script-credit strong {
  color: var(--copper);
  font-weight: 500;
}

/* ============================================================
   SECTION 7: BIOS
   ============================================================ */
.bios {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
  position: relative;
}

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

.bios__divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--copper-dim) 30%, var(--copper-dim) 70%, transparent);
  opacity: 0.3;
}

.bios__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  margin-top: 32px;
}

.bios__person {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bios__person-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bios__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper-dim);
}

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

.bios__person-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
}

.bios__person-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-top: 4px;
}

.bios__person-text,
.bios__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.bios__person-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  border: 1px solid var(--copper-dim);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.bios__divider-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-dim), transparent);
  opacity: 0.3;
}

.bios__title {
  font-family: var(--font-display);
  font-size: 28px;
}

/* ============================================================
   SECTION 8: CINEMATIC IMAGE
   ============================================================ */
.cinematic-image {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 80px;
}

.cinematic-image__container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cinematic-image__container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ============================================================
   SECTION 9: DIRECTOR'S STATEMENT
   ============================================================ */
.statement {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement__bg {
  position: absolute;
  inset: 0;
}

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

.statement__gradient {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
}

.statement__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 40px;
  text-align: center;
}

.statement__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.statement__quote {
  position: relative;
}

.statement__quote-open,
.statement__quote-close {
  display: none;
}

.statement__quote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--copper);
  opacity: 0.2;
  line-height: 1;
}

.statement__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-secondary);
  padding-top: 30px;
}

.statement__author {
  margin-top: 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
}

/* ============================================================
   SECTION 10: GALLERY
   ============================================================ */
.gallery {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

.gallery .section-title {
  text-align: center;
}

.gallery__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.gallery__tab {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid rgba(240, 230, 216, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery__tab:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.gallery__tab--active {
  background: var(--copper);
  color: var(--bg);
  border-color: var(--copper);
}

.gallery__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-dim), transparent);
  margin-bottom: 32px;
  opacity: 0.3;
}

.gallery__collage-wrap {
  width: 100%;
}

.gallery__collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 560px;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  filter: brightness(0.9);
}

.gallery__image:hover {
  transform: scale(1.03);
  filter: brightness(1);
  z-index: 2;
}

/* Tall image — spans 2 rows in first column */
.gallery__image--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Wide image — spans 2 columns */
.gallery__image--wide {
  grid-column: 2 / 4;
}

/* Poster carousel — horizontal scroll, no cropping */
.gallery__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.gallery__carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.gallery__carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery__carousel-img {
  height: 560px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  filter: brightness(0.9);
}

.gallery__carousel-img:hover {
  transform: scale(1.02);
  filter: brightness(1);
}

.gallery__carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
}

.gallery__carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
}

.gallery__carousel-arrow img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

/* Key Art — 2 vertical posters side by side, object-fit contain */
.gallery__collage--keyart {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
}

.gallery__collage--keyart .gallery__image {
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

/* ============================================================
   SECTION 11: TECHNICAL INFO
   ============================================================ */
.tech-info {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

.tech-info .section-title {
  text-align: center;
}

.tech-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.tech-info__item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(240, 230, 216, 0.08);
}

.tech-info__label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.tech-info__value {
  font-size: 16px;
  color: var(--text-primary);
  text-align: right;
}

/* ============================================================
   SECTION 12: TRAILER
   ============================================================ */
.trailer {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

.trailer .section-title {
  margin-bottom: 32px;
}

.trailer__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.trailer__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   SECTION 13: SCREENER REQUEST
   ============================================================ */
.screener {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

.screener__layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: start;
}

.screener__divider {
  background: linear-gradient(to bottom, transparent, var(--copper-dim), transparent);
  align-self: stretch;
}

.screener__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.screener__info p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.screener__disclaimer {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  border-left: 2px solid var(--copper-dim);
  padding-left: 16px;
}

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

.screener__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.screener__field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.screener__field input,
.screener__field textarea,
.screener__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240, 230, 216, 0.15);
  padding: 12px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.screener__field input:focus,
.screener__field textarea:focus,
.screener__field select:focus {
  border-bottom-color: var(--copper);
}

.screener__field textarea {
  resize: vertical;
  min-height: 100px;
}

.screener__field select {
  cursor: pointer;
}

.screener__submit {
  margin-top: 8px;
}

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

/* ============================================================
   SECTION 14: CONTACT / FOOTER
   ============================================================ */
.contact {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-padding);
  padding-bottom: 60px;
}

.contact__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.contact__header .section-title {
  margin-bottom: 0;
}

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

.contact__info {
  flex: 1;
}

.contact__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.sham-logo--footer img {
  height: 36px;
  opacity: 0.8;
}

.contact__worxpace img {
  height: 46px;
  margin: -5px 0;
  opacity: 0.8;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact__detail a {
  color: var(--copper);
}

.contact__icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.contact__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(240, 230, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact__social-link:hover {
  border-color: var(--copper);
  background: var(--copper-glow);
}

.contact__social-link svg {
  width: 20px;
  height: 20px;
}

.contact__social-link path {
  fill: var(--text-secondary);
  transition: fill var(--transition);
}

.contact__social-link:hover path {
  fill: var(--copper);
}

.contact__email {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   RESPONSIVE: TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 48px;
  }

  /* Hero */
  .hero__title-vertical {
    font-size: clamp(80px, 14vw, 160px);
  }

  .hero__tagline {
    font-size: clamp(26px, 3.5vw, 40px);
    max-width: 85%;
  }

  .hero__logline {
    font-size: 14px;
    max-width: 240px;
    right: 48px;
  }

  /* Synopsis: stack vertically */
  .synopsis {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 48px;
  }

  .synopsis__bg {
    min-height: 360px;
    order: -1;
  }

  .synopsis__text {
    font-size: 16px;
  }

  /* Slider */
  .slider-section {
    padding: 0 48px;
  }

  .slider {
    height: 520px;
  }

  .slider__slide-content {
    left: 48px;
    right: 48px;
  }

  .slider__stats {
    left: 48px;
    right: 48px;
    gap: 48px;
  }

  .slider__slide-logo {
    left: 48px;
  }

  /* Facts */
  .facts {
    padding: 0 48px;
  }

  .facts__grid {
    grid-template-rows: 320px 320px;
  }

  /* Cast: 3 in a row for tablet */
  .cast__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Bios */
  .bios__columns {
    gap: 48px;
  }

  .bios__content {
    gap: 48px;
  }

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

  /* Cinematic Image */
  .cinematic-image {
    padding: 0 48px;
  }

  .cinematic-image__container img {
    height: 380px;
  }

  /* Gallery */
  .gallery__image {
    height: 280px;
  }

  /* Screener: stack */
  .screener__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .screener__divider {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 72px 20px;
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

  .section-title {
    font-size: clamp(30px, 8vw, 44px);
    margin-bottom: 28px;
  }

  /* Buttons: touch-friendly 44px min height */
  .btn {
    font-size: 12px;
    padding: 13px 22px;
    min-height: 44px;
  }

  .btn--small {
    font-size: 11px;
    padding: 11px 18px;
    min-height: 44px;
  }

  /* Dividers */
  .spacer {
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 90vh;
    min-height: 90svh;
    padding: 0 20px 36px 70px;
  }

  .hero__title-vertical {
    font-size: clamp(50px, 12vw, 100px);
    left: -10px;
  }

  .hero__tagline {
    font-size: clamp(22px, 5.5vw, 34px);
    max-width: 100%;
    padding: 0 8px;
  }

  .hero__logline {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    font-size: 14px;
    max-width: 100%;
    text-align: left;
    padding: 0 8px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero__cta {
    gap: 10px;
    width: 100%;
    padding: 0 8px;
  }

  .hero__cta .btn {
    font-size: 13px;
    padding: 14px 24px;
  }

  /* ---- SYNOPSIS ---- */
  .synopsis {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 72px 20px;
  }

  .synopsis__bg {
    min-height: 280px;
    border-radius: var(--radius);
  }

  .synopsis__bg-img {
    border-radius: var(--radius);
  }

  .synopsis__text {
    font-size: 15px;
  }

  .synopsis__text p:last-child {
    font-size: 17px;
  }

  /* ---- SLIDER ---- */
  .slider-section {
    padding: 0 20px;
  }

  .slider {
    height: 560px;
    border-radius: var(--radius-lg);
  }

  .slider__slide-content {
    left: 20px;
    right: 20px;
    font-size: 13px;
    bottom: 156px;
    line-height: 1.6;
  }

  .slider__slide-content--center {
    transform: translateX(-50%);
    left: 50%;
    right: auto;
    width: 85%;
    bottom: auto;
    top: 50%;
    margin-top: -60px;
  }

  .sham-logo img {
    height: 40px;
  }

  .slider__stats {
    left: 20px;
    right: 20px;
    gap: 24px;
    bottom: 24px;
    flex-wrap: wrap;
  }

  .slider__stat-number {
    font-size: clamp(32px, 10vw, 48px);
  }

  .slider__stat-label {
    font-size: 10px;
  }

  .slider__slide-logo {
    left: 20px;
    top: 20px;
  }

  .slider__slide-logo img {
    height: 24px;
  }

  /* ---- PRODUCTION NOTES ---- */
  .production-notes {
    padding: 72px 20px;
  }

  .production-notes__content::before {
    font-size: 80px;
    top: -24px;
  }

  .production-notes__text {
    font-size: 15px;
    line-height: 1.8;
    padding-top: 28px;
  }

  .production-notes__author {
    font-size: 12px;
    margin-top: 24px;
  }

  /* ---- FACTS ---- */
  .facts {
    padding: 0 20px;
  }

  .facts__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 260px 260px;
    gap: 12px;
  }

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

  .facts__caption {
    font-size: 13px;
    padding: 24px 20px;
  }

  /* ---- CAST ---- */
  .cast {
    padding: 72px 20px;
  }

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

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

  .cast__info {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cast__name {
    font-size: 15px;
  }

  .cast__role {
    font-size: 10px;
  }

  .cast__script-credit {
    font-size: 13px;
    text-align: left;
    margin-top: 24px;
    line-height: 1.6;
  }

  /* ---- BIOS ---- */
  .bios {
    padding: 72px 20px;
  }

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

  .bios__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bios__divider-h {
    width: 100%;
    height: 1px;
  }

  .bios__avatar {
    width: 72px;
    height: 72px;
  }

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

  .bios__person-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .bios__person-label {
    font-size: 10px;
    padding: 3px 10px;
  }

  /* ---- CINEMATIC IMAGE ---- */
  .cinematic-image {
    padding: 0 20px;
  }

  .cinematic-image__container img {
    height: 200px;
    border-radius: var(--radius);
  }

  /* ---- STATEMENT ---- */
  .statement {
    min-height: auto;
  }

  .statement__content {
    padding: 72px 20px;
  }

  .statement__title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 28px;
  }

  .statement__quote::before {
    font-size: 64px;
    top: -16px;
  }

  .statement__text {
    font-size: 15px;
    line-height: 1.8;
    padding-top: 20px;
  }

  .statement__author {
    font-size: 12px;
    margin-top: 24px;
  }

  /* ---- GALLERY ---- */
  .gallery {
    padding: 72px 20px;
  }

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

  .gallery__tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .gallery__tab {
    font-size: 11px;
    padding: 8px 16px;
  }

  .gallery__collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 8px;
    height: 500px;
  }

  .gallery__image--tall {
    grid-row: 1 / 3;
  }

  .gallery__image--wide {
    grid-column: 1 / 3;
  }

  .gallery__image--tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
    height: 220px;
  }

  .gallery__image--wide {
    grid-column: 1 / -1;
    height: 180px;
  }

  /* ---- TECH INFO ---- */
  .tech-info {
    padding: 72px 20px;
  }

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

  .tech-info__grid {
    max-width: 100%;
  }

  .tech-info__item {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
  }

  .tech-info__label {
    font-size: 11px;
    flex-shrink: 0;
  }

  .tech-info__value {
    font-size: 14px;
  }

  /* ---- TRAILER ---- */
  .trailer {
    padding: 72px 20px;
  }

  .trailer .section-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .trailer__video {
    border-radius: var(--radius);
  }

  /* ---- SCREENER ---- */
  .screener {
    padding: 72px 20px;
  }

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

  .screener__info p {
    font-size: 14px;
  }

  .screener__actions {
    flex-direction: column;
    gap: 10px;
  }

  .screener__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- FOOTER ---- */
  .contact {
    padding: 72px 20px 48px;
  }

  .contact__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }

  .contact__content {
    flex-direction: column;
    gap: 36px;
  }

  .contact__subtitle {
    font-size: 12px;
  }

  .contact__logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .sham-logo--footer img {
    height: 28px;
  }

  .contact__worxpace img {
    height: 38px;
    margin: -5px 0;
  }

  .contact__detail {
    font-size: 13px;
  }

  .contact__social {
    gap: 12px;
  }

  .contact__social-link {
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero {
    padding-left: 56px;
  }

  .hero__title-vertical {
    font-size: clamp(44px, 14vw, 80px);
    left: -6px;
  }

  .hero__tagline {
    font-size: clamp(20px, 5.5vw, 28px);
  }

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

  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
    font-size: 12px;
    padding: 14px 24px;
  }

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

  .cast__name {
    font-size: 13px;
  }

  .cast__role {
    font-size: 9px;
  }

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

  .gallery__image--tall,
  .gallery__image--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery__image {
    height: 200px;
  }

  .gallery__image--tall {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
    height: 200px;
  }

  .gallery__image--wide {
    grid-column: 1;
    height: 200px;
  }

  .facts__grid {
    grid-template-rows: 220px 220px 220px;
  }

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

  .slider__stat-number {
    font-size: clamp(28px, 10vw, 44px);
  }

  .contact__social-link {
    width: 40px;
    height: 40px;
  }
}