/* =============================================
   BED RIDDEN — Electronic Press Kit Styles
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFD600;
  --blue: #1a3a8f;
  --blue-light: #2a52c9;
  --black: #000;
  --dark: #0a0a0a;
  --darker: #111;
  --card-bg: #151515;
  --border: #222;
  --text: #e8e8e8;
  --muted: #888;
  --white: #fff;
  --amazon: #FF9900;
  --apple: #fff;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Typography ---- */
.display-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}

h1, h2, h3 { font-family: 'Bebas Neue', 'Impact', sans-serif; letter-spacing: 0.05em; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.site-nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,214,0,0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-watch-btn {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nav-watch-btn:hover {
  background: #ffe033;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--muted);
  background: none; border: none;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/poster.jpg') center top / cover no-repeat;
  transform-origin: center;
  transition: transform 0.1s linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 30%,
    rgba(0,0,0,0.6) 65%,
    rgba(0,0,0,0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 6vw, 80px) clamp(60px, 8vw, 100px);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.9;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--blue), 8px 8px 0 rgba(26,58,143,0.4);
  margin-bottom: 16px;
  max-width: 900px;
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 36px;
}
.hero-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span strong { color: var(--white); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,214,0,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--yellow);
  background: rgba(255,214,0,0.08);
  color: var(--yellow);
}

/* ---- Streaming Strip ---- */
.streaming-strip {
  background: var(--darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.streaming-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.streaming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.streaming-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.badge-amazon {
  background: var(--amazon);
  color: var(--black);
}
.badge-apple {
  background: #1c1c1c;
  color: var(--white);
  border: 1px solid #333;
}
.badge-apple i { color: #aaa; }

/* ---- Sections ---- */
section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
}

/* ---- Synopsis ---- */
.synopsis-section { background: var(--dark); }

.synopsis-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.synopsis-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,232,232,0.9);
  margin-bottom: 20px;
}

.synopsis-quote {
  border-left: 3px solid var(--yellow);
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(255,214,0,0.04);
}
.synopsis-quote blockquote {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.6;
}

.film-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  padding: 28px;
  position: sticky;
  top: 80px;
  border-radius: 2px;
}
.film-card h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.film-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.film-detail:last-child { border-bottom: none; }
.detail-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}
.film-detail span:last-child {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

/* ---- Trailer ---- */
.trailer-section { background: var(--black); }
.trailer-inner { max-width: 900px; margin: 0 auto; }
.trailer-header { margin-bottom: 32px; }

.trailer-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.trailer-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.trailer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.btn-amazon {
  background: var(--amazon);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-amazon:hover {
  background: #ffa820;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.35);
}

.btn-apple {
  background: #1c1c1c;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #3a3a3a;
  transition: background 0.2s, transform 0.2s;
}
.btn-apple:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* ---- Cast ---- */
.cast-section { background: var(--darker); }
.cast-header { margin-bottom: 48px; }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cast-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.cast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  border-color: rgba(255,214,0,0.4);
}
.cast-card.lead {
  border-top: 3px solid var(--yellow);
}

.cast-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}
.cast-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s, filter 0.4s;
  filter: grayscale(15%);
}
.cast-card:hover .cast-photo-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.cast-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #222);
}
.cast-photo-placeholder i {
  font-size: 3.5rem;
  color: rgba(255,214,0,0.2);
}

.cast-info {
  padding: 16px;
}
.cast-character {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 3px;
}
.cast-actor {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 6px;
}
.cast-role-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 1px;
  margin-bottom: 10px;
}
.cast-bio {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- Filmmaker ---- */
.filmmaker-section { background: var(--dark); }

.filmmaker-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.filmmaker-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  background: #1a1a1a;
}
.filmmaker-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.filmmaker-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filmmaker-placeholder i {
  font-size: 4rem;
  color: rgba(255,214,0,0.2);
}

.filmmaker-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}
.filmmaker-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.filmmaker-location {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.filmmaker-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(232,232,232,0.85);
  margin-bottom: 32px;
}

.crew-credits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.crew-row {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.crew-row:last-child { border-bottom: none; }
.crew-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 3px;
}
.crew-name {
  font-size: 0.85rem;
  color: var(--white);
}

/* ---- Key Art ---- */
.keyart-section { background: var(--black); }
.keyart-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.keyart-inner a {
  display: block;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.keyart-inner a:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(255,214,0,0.2);
}
.keyart-inner img { width: 100%; display: block; }
.keyart-caption {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ---- Credits ---- */
.credits-section { background: var(--darker); }
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.credits-column h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,214,0,0.2);
}
.credits-list { list-style: none; }
.credits-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.credits-list li:last-child { border-bottom: none; }
.credit-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.credit-name {
  font-size: 0.88rem;
  color: var(--white);
}

/* ---- Watch Now ---- */
.watch-section { background: var(--dark); }
.watch-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.watch-inner .section-label { justify-content: center; }
.watch-inner .section-label::before { display: none; }

.watch-tagline {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 48px;
}

.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card-bg);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.platform-card.amazon:hover { border-color: var(--amazon); }
.platform-card.apple:hover { border-color: rgba(255,255,255,0.3); }

.platform-icon {
  font-size: 2.5rem;
}
.platform-card.amazon .platform-icon { color: var(--amazon); }
.platform-card.apple .platform-icon { color: rgba(255,255,255,0.7); }

.platform-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.platform-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.platform-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  margin-top: 4px;
  transition: transform 0.2s;
}
.platform-card.amazon .platform-cta {
  background: var(--amazon);
  color: var(--black);
}
.platform-card.apple .platform-cta {
  background: #1c1c1c;
  color: var(--white);
  border: 1px solid #3a3a3a;
}
.platform-cta:hover { transform: scale(1.04); }

.imdb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.imdb-link:hover {
  color: #f5c518;
  border-color: #f5c518;
}

/* ---- Footer ---- */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 60px clamp(20px, 6vw, 80px) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--blue);
  margin-bottom: 8px;
}
.footer-brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 0.83rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--white); }

.footer-watch-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-watch-list a {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-watch-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.72rem;
  color: #444;
  line-height: 1.6;
}
.footer-companies {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #333;
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .synopsis-grid {
    grid-template-columns: 1fr;
  }
  .film-card {
    position: static;
  }
  .filmmaker-grid {
    grid-template-columns: 1fr;
  }
  .filmmaker-portrait {
    max-width: 260px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-links, .nav-watch-btn { display: none; }
  .hamburger { display: flex; }
  .cast-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .cast-grid { grid-template-columns: 1fr; }
}

/* ---- Print ---- */
@media print {
  .site-nav, .hamburger, .mobile-menu { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { padding: 40px 20px; }
  .trailer-wrapper { display: none; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
