/* ══════════════════════════════════════════
   FILM DETAIL PAGE — film.css
══════════════════════════════════════════ */

/* ── PAGE WRAP ── */
.fp-page-wrap { position: relative; }

/* ── HERO (scroll 1) ── */
.fp-hero {
  position: sticky; top: 0; height: var(--app-height); z-index: 1;
  display: flex; flex-direction: column;
  background: var(--off-white); overflow: hidden; padding-bottom: 40px;
}
.fp-hero-cinema { position: relative; flex: 1; overflow: hidden; }
.fp-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  filter: brightness(0.68);
  animation: fpBgReveal 22s ease-out forwards;
  will-change: transform;
}
.fp-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.35) 0%, transparent 30%,
    rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.85) 100%);
}
.fp-hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  animation: heroFadeUp 1s cubic-bezier(0.22,0.61,0.36,1) 0.15s both;
}
.fp-hero-top {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding-bottom: 20px;
}
.fp-hero-bottom {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; padding-top: 20px;
}
.fp-play-btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s, transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px); flex-shrink: 0;
}
.fp-play-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.75); transform: scale(1.08); }
.fp-play-icon {
  width: 0; height: 0;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  border-left: 18px solid rgba(255,255,255,0.9); margin-left: 4px;
}
.fp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; line-height: 0.95; letter-spacing: -0.02em;
  color: var(--off-white);
}
.fp-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; font-style: italic;
  line-height: 1.65; color: rgba(234,230,222,0.85);
  max-width: 560px; margin-bottom: 24px; word-break: keep-all;
}
.fp-hero-laurels { display: flex; gap: 24px; align-items: center; justify-content: center; }
.fp-hero-laurels img { height: 100px; width: auto; }
.page-lml .fp-netflix-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(234,230,222,0.22);
  background: rgba(10,10,10,0.42);
  color: var(--off-white);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.page-lml .fp-netflix-hero-badge:hover {
  border-color: rgba(234,230,222,0.45);
  background: rgba(10,10,10,0.58);
  transform: translateY(-2px);
}
.page-lml .fp-netflix-hero-logo {
  height: 16px !important;
  width: auto;
  display: block;
}
.page-lml .fp-netflix-hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

/* White info bar */
.fp-hero-info {
  background: var(--off-white); height: 230px;
  display: grid; grid-template-columns: 1fr 1px 1fr;
  align-items: center; padding: 28px 48px 32px; gap: 40px; flex-shrink: 0;
}
.fp-hero-info-divider { align-self: stretch; background: rgba(10,10,10,0.1); margin: 24px 0; }
.fp-hero-synopsis {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  line-height: 1.7; color: var(--charcoal);
}
.fp-hero-specs { display: grid; grid-template-columns: 1fr 2fr; gap: 16px 24px; }
.fp-hero-spec-item { display: flex; flex-direction: column; gap: 5px; }
.fp-hero-spec-item--wide { grid-column: 1 / -1; }
.fp-hero-spec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal);
}
.fp-hero-spec-value { font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 300; color: var(--charcoal); }

@keyframes fpBgReveal {
  0%   { filter: brightness(0.2) blur(16px); transform: scale(1); }
  4%   { filter: brightness(0.85) blur(0px); transform: scale(1.01); }
  100% { filter: brightness(0.85) blur(0px); transform: scale(1.07) translate(1%, 0.8%); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── VIDEO OVERLAY ── */
.fp-video-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.fp-video-overlay.open { opacity: 1; pointer-events: all; }
.fp-video-inner { position: relative; width: 90vw; max-width: 1200px; aspect-ratio: 16 / 9; }
.fp-video-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.fp-video-close {
  position: absolute; top: -44px; right: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); background: none; border: none;
  cursor: pointer; display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.fp-video-close:hover { color: rgba(255,255,255,0.9); }

/* ── EXTRA SECTION (scroll 2) ── */
.fp-extra {
  position: relative; z-index: 2; height: var(--app-height);
  background: #162038; display: grid;
  grid-template-columns: 1fr 1.8fr; overflow: hidden;
}
.fp-extra-photo { position: relative; overflow: hidden; }
.fp-extra-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.75); }
.fp-extra-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 65%, #162038 100%);
}
.fp-extra-content { display: flex; flex-direction: column; overflow: hidden; }

/* ── CAROUSEL ── */
.fp-carousel {
  flex: 0 0 48vh; display: flex; flex-direction: column;
  padding: 60px 80px 24px; overflow: hidden;
}
.page-lml .fp-carousel { flex: 1; padding: 80px 80px 44px; }
.fp-carousel-header { display: flex; align-items: center; margin-top: 40px; margin-bottom: 8px; flex-shrink: 0; }
.fp-carousel-btn {
  position: absolute; right: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6); width: 44px; height: 44px;
  cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s; z-index: 2;
}
.fp-carousel-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.7); color: #fff; }
.fp-carousel-btn--prev { top: calc(50% - 80px); }
.fp-carousel-btn--next { top: calc(50% + 36px); }
.fp-carousel-btn.at-boundary { background: #E8B84B; border-color: #E8B84B; color: #162038; }
.fp-carousel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: #E8B84B;
}
.fp-carousel-track { flex: 1; position: relative; overflow: hidden; }
.fp-carousel-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  padding: 0 80px 0 0;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none;
}
.fp-carousel-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fp-carousel-slide.exit   { opacity: 0; transform: translateY(-30px); }
.fp-carousel-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 42px); font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--off-white); max-width: 900px;
}
.fp-carousel-quote::before { content: '\201C'; }
.fp-carousel-quote::after  { content: '\201D'; }
.fp-carousel-dots { display: none; }
.fp-carousel-swipe-hint { display: none; }

/* Multi-review slide */
.fp-carousel-slide--multi { flex-direction: column; justify-content: center; gap: 0; padding: 0 80px 0 0; }
.fp-review-item { display: flex; flex-direction: column; gap: 8px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.fp-review-item:first-child { padding-top: 0; }
.fp-review-item:last-child { border-bottom: none; padding-bottom: 0; }
.fp-carousel-slide--multi .fp-carousel-quote { font-size: clamp(24px, 2.4vw, 36px); }
.page-lml .fp-carousel-slide--multi .fp-carousel-quote { font-size: clamp(18px, 1.6vw, 26px); }

/* Press outlet (reviewer name in carousel) */
.fp-press-outlet {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: #E8B84B;
}

/* Press list */
.fp-extra-press-list { padding: 20px 80px; flex-shrink: 0; }
.fp-press-list { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.fp-press-item {
  display: grid; grid-template-columns: 140px 1fr auto;
  align-items: baseline; gap: 16px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fp-press-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.fp-press-item-outlet {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #E8B84B; white-space: nowrap;
}
.fp-press-item-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; font-style: italic;
  color: rgba(234,230,222,0.8); line-height: 1.4;
}
.fp-press-item-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25); white-space: nowrap;
}

/* Plain text links */
.fp-text-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #E8B84B; text-decoration: none; transition: opacity 0.2s;
}
.fp-text-link:hover { opacity: 0.7; }

/* ── BTS SECTION (scroll 3) ── */
.fp-bts {
  position: relative; z-index: 3; height: var(--app-height);
  background: var(--off-white); display: flex; flex-direction: column; overflow: hidden;
}
.fp-bts-grid {
  flex: 0 0 72vh; display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 3px; overflow: hidden;
}
.fp-bts-photo:first-child { grid-row: 1 / 3; }


.fp-bts-photo { position: relative; overflow: hidden; }
.fp-bts-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fp-bts-photo:hover img { transform: scale(1.04); }
.fp-bts-swipe-hint { display: none; }
.fp-bts-swipe-label { display: none; }

/* BTS nav arrows (mobile/tablet only) */
.fp-bts-nav { display: none; position: absolute; top: 0; left: 0; right: 0; pointer-events: none; z-index: 5; }
.fp-bts-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); pointer-events: none; background: none; border: none; padding: 0; display: flex; align-items: center; justify-content: center; }
.fp-bts-nav-btn svg { display: block; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.25)); }
.fp-bts-nav-prev { left: 14px; }
.fp-bts-nav-next { right: 14px; }
@media (max-width: 768px)  { .fp-bts-nav { display: none !important; } }
@media (min-width: 769px) { .fp-bts-nav { display: block; height: var(--app-height); } .fp-bts-nav-btn { top: 25vh; } }

/* Soundtrack / MV strip */
.fp-bts-soundtrack { display: flex; align-items: center; gap: 20px; }
.fp-bts-soundtrack-cover { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
.fp-bts-soundtrack-info { display: flex; flex-direction: column; gap: 8px; }
.fp-bts-soundtrack-links { display: flex; gap: 20px; }

/* ── FOOTER ── */
.fp-bts-footer {
  background: #EAE6DE; flex: 1; border-top: 1px solid rgba(10,10,10,0.1);
  padding: 0 56px; display: flex; flex-direction: column; justify-content: center;
}
.fp-footer-handle { display: none; }
.fp-reviews-peek { display: none; }
.fp-bts-peek { display: none; }
.fp-film-details-btn { display: none; }
.fp-film-details-overlay { display: none; }
.fp-footer-handle-label { display: none; }
.fp-footer-top { display: flex; flex-direction: row; align-items: center; flex: 1; padding: 32px 0 28px; }
.fp-footer-left {
  display: flex; flex-direction: row; align-items: center; gap: 56px; flex: 1;
  padding-right: 64px; border-right: 1px solid rgba(10,10,10,0.12);
}
.fp-footer-divider { width: 1px; height: 64px; background: rgba(10,10,10,0.12); flex-shrink: 0; }
.fp-footer-right { display: flex; flex-direction: column; justify-content: center; gap: 24px; padding-left: 64px; min-width: 340px; }
.fp-footer-newsletter { display: flex; flex-direction: column; gap: 12px; }
.fp-footer-social { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 24px; padding: 12px 0 4px; }
.fp-footer-social-links { display: flex; flex-direction: row; gap: 28px; flex-wrap: wrap; align-items: center; }
.fp-footer-social-links a {
  display: inline-flex; align-items: center; padding: 4px;
  color: rgba(10,10,10,0.55); text-decoration: none; transition: color 0.2s;
}
.fp-footer-social-links a:hover { color: var(--charcoal); }
.fp-footer-mv-label { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.fp-footer-mv-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(10,10,10,0.38); display: block;
}
.fp-footer-newsletter-text {
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300;
  line-height: 1.6; color: rgba(10,10,10,0.6); margin: 0;
}
.fp-footer-newsletter-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: rgba(10,10,10,0.38); white-space: nowrap;
}
.fp-footer-form { display: flex; gap: 0; border: 1px solid rgba(10,10,10,0.22); background: rgba(255,255,255,0.4); }
.fp-footer-email {
  flex: 1; background: transparent; border: none; outline: none; padding: 13px 18px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--charcoal);
}
.fp-footer-email::placeholder { color: rgba(10,10,10,0.3); }
.fp-footer-submit {
  background: transparent; border: none; border-left: 1px solid rgba(10,10,10,0.22);
  padding: 13px 24px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal); cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.fp-footer-submit:hover { background: rgba(10,10,10,0.07); }
.fp-bts-footer .fp-text-link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 400;
  letter-spacing: 0.06em; color: rgba(10,10,10,0.65); text-decoration: none; transition: color 0.2s;
}
.fp-bts-footer .fp-text-link:hover { color: var(--charcoal); }
.fp-bts-footer .fp-bts-soundtrack-links { gap: 18px; }
.fp-bts-footer .fp-bts-soundtrack-cover { width: 80px; height: 80px; }
.fp-bts-footer .fp-bts-soundtrack-info { gap: 10px; flex: 1; min-width: 0; text-align: left; }
.fp-bts-footer .footer-bottom { padding: 12px 0; display: flex; justify-content: center; }

/* br-desktop: visible on desktop only */
.br-desktop { display: block; }
@media (max-width: 1024px) { .br-desktop { display: none; } }

/* ── PRESS SECTION ── */
@media (min-width: 1025px) { .page-hi-noel .fp-press-section { display: none; } }

.fp-press-section {
  position: relative; z-index: 3; height: var(--app-height); background: #162038;
  display: grid; grid-template-columns: 1.8fr 1fr; overflow: hidden;
}
.fp-press-photo { position: relative; overflow: hidden; }
.fp-press-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.75); }
.fp-press-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 65%, #162038 100%);
}
.fp-press-section-inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 80px; overflow: hidden; height: 100%; box-sizing: border-box;
}
.fp-press-section-inner .fp-extra-press-list { width: 100%; display: flex; flex-direction: column; }
.fp-press-section .fp-extra-press-list { padding: 0; }
.fp-press-section .fp-carousel-title { display: block; margin-bottom: 16px; font-size: 28px; flex-shrink: 0; }
.fp-press-section .fp-press-list { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.fp-press-section .fp-press-item { grid-template-columns: 180px 1fr auto; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: center; }
.fp-press-section .fp-press-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.fp-press-section .fp-press-item-outlet { font-size: 13px; }
.fp-press-section .fp-press-item-headline { font-size: 20px; }
.fp-press-section .fp-press-item-date { font-size: 13px; }

/* ── DESKTOP FOOTER RESET (>1024px) ── */
@media (min-width: 1025px) {
  .fp-bts-footer { flex: 1; padding: 0 56px; justify-content: center; }
  .fp-footer-top { flex-direction: row; align-items: center; flex: 1; padding: 32px 0 28px; gap: 0; }
  .fp-footer-left { flex-direction: row; align-items: center; gap: 64px; flex: 1.4; padding-right: 64px; border-right: 1px solid rgba(10,10,10,0.12); border-bottom: none; padding-bottom: 0; }
  .fp-footer-divider { display: block; width: 1px; height: 64px; }
  .fp-bts-footer .fp-bts-soundtrack-cover { width: 100px; height: 100px; }
  .fp-bts-footer .fp-bts-soundtrack-info { gap: 12px; }
  .fp-footer-right { flex-direction: column; justify-content: center; gap: 24px; padding-left: 64px; min-width: 340px; border-top: none; padding-top: 0; }
  .fp-footer-newsletter { flex: unset; }
  .fp-footer-social { flex-direction: row; align-items: center; justify-content: center; gap: 24px; border-top: none; padding: 12px 0 4px; margin-top: 0; }
  .fp-footer-social .fp-footer-newsletter-label { font-size: inherit; }
  .fp-footer-social-links { flex-direction: row; gap: 28px; align-items: center; font-size: inherit; }
  .fp-footer-newsletter-text { font-size: 13px; }
}

/* ── TABLET + MOBILE (≤1024px) ── */
@media (max-width: 1024px) {
  /* Hero */
  .fp-hero-cinema { flex: none; height: 62vh; }
  .fp-hero-laurels img { height: 64px; }
  .fp-play-btn { width: 56px; height: 56px; }
  .fp-hero-info { flex: 1; height: auto; overflow: hidden; padding: 20px 32px 32px; gap: 20px; grid-template-columns: 1fr; align-content: start; }
  .fp-hero-info-divider { display: none; }
  .fp-hero-synopsis { font-size: 24px; line-height: 1.5; }
  .fp-hero-specs { grid-template-columns: 1fr 2fr; gap: 14px 24px; }
  .fp-hero-spec-item { gap: 4px; }
  .fp-hero-spec-label { font-size: 11px; }
  .fp-hero-spec-value { font-size: 18px; }

  /* Scroll 2 */
  .fp-extra { grid-template-columns: 1fr; height: var(--app-height); overflow: hidden; }
  .fp-extra-photo { display: none; }
  .fp-extra-content { flex: 1; border-left: none; overflow: hidden; display: flex; justify-content: center; }
  .fp-extra-press-list { display: none; }

  /* LML carousel (dynamic paginated) */
  .page-lml .fp-carousel { padding: 100px 60px 80px; flex: 1; width: 100%; box-sizing: border-box; }
  .page-lml .fp-carousel-header { margin-top: 0; margin-bottom: 20px; }
  .page-lml .fp-carousel-track { position: relative; overflow: hidden; display: block; }
  .page-lml .fp-carousel-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(30px); display: flex; flex-direction: column; justify-content: center; gap: 24px; }
  .page-lml .fp-carousel-slide.active { opacity: 1; transform: translateY(0); }
  .page-lml .fp-carousel-slide.exit { opacity: 0; transform: translateY(-30px); }
  .page-lml .fp-carousel-slide--multi .fp-carousel-quote { font-size: clamp(18px, 3vw, 26px); }
  .page-lml .fp-carousel-btn { display: none; }
  .page-lml .fp-carousel-swipe-hint {
    display: block; text-align: center;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3);
    padding-top: 16px; margin-bottom: 24px; flex-shrink: 0;
  }

  /* LML press section */
  .page-lml .fp-press-section { display: flex; flex-direction: column; height: var(--app-height); background: #162038; z-index: 3; overflow: hidden; }
  .page-lml .fp-press-photo { display: none; }
  .page-lml .fp-press-section-inner { display: flex; flex-direction: column; padding: 150px 40px; width: 100%; height: 100%; box-sizing: border-box; overflow: hidden; }
  .page-lml .fp-press-section .fp-extra-press-list { display: flex; flex-direction: column; height: 100%; padding: 0; }
  .page-lml .fp-press-page { display: none; flex: 1; flex-direction: column; }
  .page-lml .fp-press-page.active { display: flex; }
  .page-lml .fp-press-page .fp-press-list { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
  .page-lml .fp-press-section .fp-carousel-title { margin-bottom: 20px; font-size: 22px; }
  .page-lml .fp-press-section .fp-press-list { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
  .page-lml .fp-press-section .fp-press-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 0 12px; padding: 6px 0; flex: 1; align-items: center; }
  .page-lml .fp-press-section .fp-press-item-outlet { grid-column: 1; grid-row: 1; font-size: 2vh; }
  .page-lml .fp-press-section .fp-press-item-headline { grid-column: 1; grid-row: 2; font-size: 2.8vh; padding-right: 24px; }
  .page-lml .fp-press-section .fp-press-item-headline--zh { font-size: calc(2.8vh - 4px); }
  .page-lml .fp-press-section .fp-press-item-date { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 1.6vh; }

  /* Hi-noel carousel (all stacked) */
  .page-hi-noel .fp-carousel { padding: 40px; flex: 0 0 auto; align-self: center; width: 100%; box-sizing: border-box; }
  .page-hi-noel .fp-carousel-header { margin-top: 0; margin-bottom: 24px; }
  .page-hi-noel .fp-carousel-track { position: static; overflow: visible; display: flex; flex-direction: column; gap: 32px; min-height: unset; }
  .page-hi-noel .fp-carousel-slide { position: static; opacity: 1; transform: none; pointer-events: auto; padding: 0; display: flex; gap: 8px; }
  .page-hi-noel .fp-carousel-slide.exit { display: none; }
  .page-hi-noel .fp-carousel-quote { font-size: 26px; }
  .page-hi-noel .fp-carousel-btn { display: none; }

  /* Hi-noel press section */
  .page-hi-noel .fp-press-section { display: flex; flex-direction: column; justify-content: center; height: var(--app-height); background: #162038; z-index: 3; overflow: hidden; }
  .page-hi-noel .fp-press-photo { display: none; }
  .page-hi-noel .fp-press-section-inner { padding: 40px; width: 100%; box-sizing: border-box; overflow-y: auto; }
  .page-hi-noel .fp-press-section .fp-extra-press-list { display: block; padding: 0; }
  .page-hi-noel .fp-press-section .fp-carousel-title { display: block; margin-bottom: 20px; font-size: 22px; }
  .page-hi-noel .fp-press-section .fp-press-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 3px 12px; padding: 12px 0; }
  .page-hi-noel .fp-press-section .fp-press-item-outlet { grid-column: 1; grid-row: 1; font-size: 20px; }
  .page-hi-noel .fp-press-section .fp-press-item-headline { grid-column: 1; grid-row: 2; font-size: 21px; }
  .page-hi-noel .fp-press-section .fp-press-item-date { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 13px; }

  /* BTS */
  .fp-bts { z-index: 4; height: var(--app-height); overflow: hidden; }
  .fp-bts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px; overflow: hidden;
    flex: 2 1 0; min-height: 0;
  }
  .fp-bts-photo { flex: unset; height: unset; scroll-snap-align: unset; }
  .fp-bts-photo:first-child { grid-row: 1 / 3; flex: unset; height: unset; }
  .fp-bts-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Swipe hint */
  .fp-bts-swipe-hint {
    display: block; position: absolute; bottom: 12px; left: 0; right: 0;
    text-align: center; font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }

  /* Footer — iPad */
  .fp-bts-footer { flex: 0 0 280px; padding: 12px 40px 10px; overflow: hidden; justify-content: flex-start; }
  .fp-footer-top { flex-direction: column; align-items: stretch; padding: 0 0 8px; gap: 10px; flex: none; }
  .fp-footer-left { flex-direction: row; align-items: center; justify-content: flex-start; gap: 32px; padding-right: 0; border-right: none; flex: none; }
  .fp-footer-divider { display: none; }
  .fp-footer-right { flex-direction: column; align-items: flex-start; padding-left: 0; min-width: unset; gap: 12px; border-top: 1px solid rgba(10,10,10,0.1); padding-top: 10px; }
  .fp-footer-newsletter { flex: 1; }
  .fp-footer-social { flex-direction: row; align-items: center; justify-content: center; gap: 16px; padding: 10px 0 4px; border-top: none; }
  .fp-footer-social .fp-footer-newsletter-label { font-size: 13px; }
  .fp-footer-social-links { flex-direction: row; gap: 20px; font-size: 16px; }
  .fp-bts-footer .fp-bts-soundtrack-cover { width: 80px; height: 80px; }
  .fp-bts-footer .fp-text-link { font-size: 14px; }
  .fp-footer-newsletter-text { font-size: 16px; }
  .fp-bts-footer .fp-footer-mv-label span { font-size: 13px; }
  .fp-bts-footer .fp-bts-soundtrack-links { font-size: 13px; }

  /* Video overlay */
  .fp-video-inner { width: 95vw; }
}

/* ── iPad landscape follows desktop-like film pages, with touch-safe hover behavior. ── */
@media (min-width: 769px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .fp-hero-cinema { flex: 1; height: auto; }
  .fp-tagline { display: block; }
  .fp-hero-info {
    height: 230px;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 28px 48px 32px;
    grid-template-columns: 1fr 1px 1fr;
    align-content: center;
  }
  .fp-hero-info-divider { display: block; }
  .fp-hero-synopsis { font-size: 22px; line-height: 1.7; text-align: left; }
  .fp-hero-specs { grid-template-columns: 1fr 2fr; gap: 16px 24px; }
  .fp-hero-spec-label { font-size: 11px; text-align: left; color: var(--mid-grey); }
  .fp-hero-spec-value { font-size: 17px; text-align: left; }

  .fp-extra {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    height: var(--app-height);
    overflow: hidden;
  }
  .fp-extra-photo { display: block; }
  .fp-extra-content {
    border-left: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .fp-carousel {
    flex: 0 0 46vh;
    min-height: 0;
    padding: 36px 48px 18px;
  }
  .page-lml .fp-carousel {
    flex: 1;
    min-height: 0;
    padding: 44px 48px 24px;
  }
  .fp-carousel-header {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .fp-carousel-slide,
  .fp-carousel-slide--multi {
    gap: 14px;
    padding-right: 40px;
  }
  .fp-carousel-quote {
    font-size: clamp(22px, 2.7vw, 34px);
    line-height: 1.42;
  }
  .fp-review-item {
    gap: 4px;
    padding: 10px 0;
  }
  .page-lml .fp-carousel-slide--multi .fp-carousel-quote {
    font-size: clamp(15px, 1.65vw, 22px);
    line-height: 1.35;
  }
  .fp-extra-press-list {
    display: flex;
    min-height: 0;
    overflow: auto;
    padding: 14px 48px 28px;
  }
  .fp-extra-press-list .fp-carousel-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .fp-extra-press-list .fp-press-item {
    grid-template-columns: 120px 1fr auto;
    padding: 7px 0;
  }
  .fp-extra-press-list .fp-press-item-outlet,
  .fp-extra-press-list .fp-press-item-date {
    font-size: 12px;
  }
  .fp-extra-press-list .fp-press-item-headline {
    font-size: clamp(15px, 1.7vw, 20px);
    line-height: 1.25;
  }
  .fp-press-section-inner {
    padding: 28px 48px;
    overflow: auto;
  }
  .fp-press-section .fp-carousel-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .fp-press-section .fp-press-list {
    min-height: 0;
    justify-content: center;
  }
  .fp-press-section .fp-press-item {
    grid-template-columns: 140px 1fr auto;
    padding: 7px 0;
  }
  .fp-press-section .fp-press-item-outlet,
  .fp-press-section .fp-press-item-date {
    font-size: 12px;
  }
  .fp-press-section .fp-press-item-headline {
    font-size: clamp(15px, 1.7vw, 20px);
    line-height: 1.25;
  }
  .page-hi-noel .fp-press-section { display: none !important; }
  .page-hi-noel .fp-carousel-track {
    position: static;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 6px;
  }
  .page-hi-noel .fp-carousel-slide {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
    display: flex;
    gap: 8px;
  }
  .page-hi-noel .fp-carousel {
    flex: 0 0 52vh;
    padding: 28px 48px 12px;
  }
  .page-hi-noel .fp-carousel-quote {
    font-size: clamp(17px, 1.85vw, 23px);
    line-height: 1.28;
  }
  .page-hi-noel .fp-press-outlet {
    font-size: 11px;
    line-height: 1.25;
  }
  .page-hi-noel .fp-extra-press-list {
    flex: 1 1 auto;
    padding-top: 10px;
  }
  .page-hi-noel .fp-extra-press-list .fp-press-item {
    grid-template-columns: 105px 1fr auto;
    gap: 8px;
    padding: 5px 0;
  }
  .page-hi-noel .fp-extra-press-list .fp-press-item-headline {
    font-size: clamp(13px, 1.45vw, 17px);
    line-height: 1.18;
  }
  .page-hi-noel .fp-extra-press-list .fp-press-item-outlet,
  .page-hi-noel .fp-extra-press-list .fp-press-item-date {
    font-size: 11px;
  }

  .fp-bts { height: var(--app-height); overflow: hidden; }
  .fp-bts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    overflow: hidden;
    flex: 0 0 62vh;
  }
  .fp-bts-photo,
  .fp-bts-photo:first-child {
    flex: unset;
    width: auto;
    height: auto;
    scroll-snap-align: unset;
  }
  .fp-bts-photo:first-child { grid-row: 1 / 3; }
  .fp-bts-footer {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 44px;
    justify-content: center;
  }
  .fp-footer-top { flex-direction: row; align-items: center; flex: 1; padding: 20px 0 18px; gap: 0; }
  .fp-footer-left { flex-direction: row; align-items: center; gap: 36px; flex: 1.4; padding-right: 40px; border-right: 1px solid rgba(10,10,10,0.12); border-bottom: none; padding-bottom: 0; }
  .fp-footer-right { flex-direction: column; justify-content: center; gap: 16px; padding-left: 40px; min-width: 300px; border-top: none; padding-top: 0; }
  .fp-bts-footer .fp-bts-soundtrack-cover { width: 82px; height: 82px; }
  .fp-bts-footer .fp-text-link { font-size: 20px; }
  .fp-bts-footer .fp-bts-soundtrack-links { font-size: 18px !important; }
  .fp-footer-newsletter-text { font-size: 13px; line-height: 1.45; }
}

/* ── IPAD PORTRAIT — 1 photo swipe, square BTS ── */
@media (max-width: 1024px) and (orientation: portrait) {
  .fp-bts { height: var(--app-height) !important; overflow: hidden !important; display: flex; flex-direction: column; }
  .fp-bts-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    flex: none !important;
    width: 100% !important;
    height: var(--app-height) !important;
    min-height: unset !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }
  .fp-bts-photo {
    flex: 0 0 100% !important;
    height: 100% !important;
    scroll-snap-align: start !important;
    position: relative !important;
  }
  .fp-bts-photo:first-child {
    grid-row: unset !important;
    flex: 0 0 100% !important;
    height: 100% !important;
  }
  .fp-bts-swipe-hint { display: none !important; }
  .fp-bts-swipe-label {
    display: flex !important;
    position: absolute;
    top: 44%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    pointer-events: none;
    z-index: 5;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .fp-bts-swipe-arrow {
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 22px;
    opacity: 0;
    color: rgba(255,255,255,0.95);
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.55));
    transition: opacity 0.25s ease;
  }
  .fp-bts-swipe-arrow polyline { stroke: currentColor; }
  .fp-bts-swipe-label.can-swipe-left .fp-bts-swipe-arrow--left,
  .fp-bts-swipe-label.can-swipe-right .fp-bts-swipe-arrow--right {
    opacity: 1 !important;
  }
  .fp-bts-swipe-label.fp-swipe-label-hidden { opacity: 0; }
  .fp-bts-footer {
    position: static !important;
    transform: none !important;
    flex: 1 !important;
    height: auto !important;
    overflow: auto !important;
  }
}

/* iPad portrait follows the finalized mobile film-page flow, scaled for the larger canvas. */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
  .fp-hero-cinema { flex: none; height: 29vh; }
  .fp-tagline { display: none; }
  .fp-hero-info {
    flex: 1;
    height: auto;
    overflow: hidden;
    padding: 20px 48px 80px;
    gap: 18px;
    align-content: start;
    position: relative;
  }
  .fp-hero-info .fp-title {
    font-size: 31px !important;
    color: #000 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.2;
    order: 0 !important;
    text-align: center;
  }
  .fp-hero-synopsis {
    font-size: clamp(25px, 3vh, 34px);
    line-height: 1.36;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
  }
  .fp-hero-specs { grid-template-columns: 1fr 1fr; gap: 16px 28px; }
  .fp-hero-spec-item--wide { grid-column: 1 / -1; }
  .fp-hero-spec-label { font-size: 20px; color: #1e4080; text-align: center; }
  .fp-hero-spec-value { font-size: 24px; text-align: center; }
  .fp-film-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 4px;
    padding: 11px 32px;
    background: transparent;
    border: 1.5px solid rgba(10,10,10,0.22);
    border-radius: 24px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10,10,10,0.55);
  }
  .fp-film-details-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(234,230,222,0.93);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 48px 32px;
    padding-top: 96px;
    overflow-y: auto;
  }
  .fp-film-details-overlay.active { display: flex; }
  .fp-film-details-close {
    display: flex;
    align-self: flex-end;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    background: rgba(10,10,10,0.08);
    border: none;
    border-radius: 50%;
    color: rgba(10,10,10,0.6);
    flex-shrink: 0;
  }
  .fp-film-details-section-label {
    display: block;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1e4080;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(10,10,10,0.1);
  }
  .fp-film-details-overlay .fp-hero-laurels {
    display: flex;
    flex-direction: row;
    flex: 1;
    height: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }
  .fp-film-details-overlay .fp-hero-laurels img {
    height: 100% !important;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0);
  }
  .fp-reviews-peek,
  .fp-bts-peek {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 0 22px;
    cursor: pointer;
    z-index: 5;
    border-radius: 16px 16px 0 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(100%);
  }
  .fp-reviews-peek { background: #162038; color: rgba(255,255,255,0.6); }
  .fp-bts-peek { background: #fff; color: rgba(10,10,10,0.5); }
  .fp-reviews-peek,
  .fp-bts-peek {
    transform: translateY(0);
  }
  .fp-reviews-peek.peek-in,
  .fp-bts-peek.peek-in { animation: peekSlideUp 0.5s cubic-bezier(0.22,0.61,0.36,1) both; }
  .fp-extra {
    position: relative;
    grid-template-columns: 1fr;
    height: var(--app-height);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .fp-extra-content {
    flex: 1;
    border-left: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .fp-carousel {
    flex: 0 0 60%;
    overflow: hidden;
    padding: 34px 48px 16px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .fp-carousel-header,
  .page-lml .fp-carousel-header { display: none; }
  .fp-carousel-track,
  .page-hi-noel .fp-carousel-track,
  .page-lml .fp-carousel-track {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: block;
    min-height: unset;
  }
  .fp-carousel-slide,
  .page-hi-noel .fp-carousel-slide,
  .page-lml .fp-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
    padding: 0;
  }
  .fp-carousel-slide.active,
  .page-hi-noel .fp-carousel-slide.active,
  .page-lml .fp-carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .page-hi-noel .fp-carousel-track:not(:has(.fp-carousel-slide.active)) .fp-carousel-slide:first-child {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .fp-carousel-slide.exit,
  .page-hi-noel .fp-carousel-slide.exit,
  .page-lml .fp-carousel-slide.exit {
    opacity: 0;
    transform: translateX(-24px);
    display: flex;
  }
  .fp-carousel-quote,
  .page-lml .fp-carousel-quote,
  .page-lml .fp-carousel-slide--multi .fp-carousel-quote,
  .page-hi-noel .fp-carousel-quote {
    font-size: clamp(31px, 4.4vw, 45px);
    line-height: 1.45;
  }
  .fp-carousel-btn,
  .fp-carousel-swipe-hint { display: none !important; }
  .fp-carousel-dots,
  .page-lml .fp-carousel-dots {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    gap: 7px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
  .fp-carousel-tap-hint {
    width: 100%;
    text-align: center;
    padding: 8px 0 4px;
    flex-shrink: 0;
    pointer-events: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .page-hi-noel .fp-carousel {
    flex: 0 0 60%;
    overflow: hidden;
    padding: 34px 48px 16px;
  }
  .page-hi-noel .fp-carousel-track {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: block;
    min-height: unset;
  }
  .page-hi-noel .fp-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
    padding: 0;
  }
  .page-hi-noel .fp-carousel-slide.active,
  .page-hi-noel .fp-carousel-track:not(:has(.fp-carousel-slide.active)) .fp-carousel-slide:first-child {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .page-hi-noel .fp-carousel-slide.exit {
    opacity: 0;
    transform: translateX(-24px);
    display: flex;
  }
  .page-hi-noel .fp-carousel-dots {
    display: flex;
    flex-direction: row;
  }
  .fp-press-card-track {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .fp-press-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 76px 48px 24px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .fp-press-card.active { opacity: 1; pointer-events: auto; }
  .fp-press-card-title {
    display: block;
    padding: 18px 48px 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E8B84B;
  }
  .fp-press-card-meta { display: flex; align-items: baseline; gap: 12px; }
  .fp-press-card-outlet { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .fp-press-card-date { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; color: rgba(255,255,255,0.3); white-space: nowrap; }
  .fp-press-card-headline { font-size: 27px; font-weight: 500; line-height: 1.3; color: rgba(255,255,255,0.9); }
  .fp-press-section { display: none !important; }
  .page-lml .fp-press-section,
  .page-hi-noel .fp-press-section { display: none !important; }
  .fp-bts { overflow: visible; position: relative; height: var(--app-height); }
  .fp-bts-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    -webkit-overflow-scrolling: auto;
    touch-action: pan-y !important;
    gap: 3px;
    flex: 0 0 var(--app-height) !important;
    width: max-content !important;
    height: var(--app-height) !important;
    transition: transform 0.28s ease;
  }
  .fp-bts-photo,
  .fp-bts-photo:first-child {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    height: 100% !important;
    scroll-snap-align: unset !important;
    grid-row: unset !important;
  }
  .fp-bts-footer {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    max-height: 90vh !important;
    flex: none !important;
    padding: 14px 48px 32px !important;
    overflow-y: auto !important;
    justify-content: flex-start !important;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(10,10,10,0.1);
    transform: translateY(calc(100% - 78px)) !important;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    z-index: 10 !important;
  }
  .fp-bts-footer.fp-footer-open { transform: translateY(0) !important; }
  .fp-footer-handle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 0 16px;
    flex-shrink: 0;
    cursor: pointer;
  }
  .fp-footer-handle-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10,10,10,0.5);
  }
  .fp-footer-top { flex-direction: column; align-items: stretch; padding: 0 0 16px; gap: 24px; }
  .fp-footer-left { flex-direction: column; align-items: flex-start; gap: 20px; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(10,10,10,0.12); padding-bottom: 24px; }
  .fp-footer-right { flex-direction: column; padding-left: 0; min-width: unset; gap: 20px; border-top: none; padding-top: 0; }
  .fp-footer-social,
  .fp-footer-social-links { flex-direction: row; }
  .fp-bts-footer .fp-bts-soundtrack-cover { width: 92px; height: 92px; }
  .fp-bts-footer .fp-text-link { font-size: 27px; font-weight: 700; }
  .fp-bts-footer .fp-bts-soundtrack-links { font-size: 25px !important; font-weight: 700; }
  .fp-bts-footer .fp-footer-mv-label span { font-size: 20px !important; font-weight: 700; }
}

@media (hover: none) and (pointer: coarse) {
  .fp-play-btn:hover,
  .fp-carousel-btn:hover,
  .fp-bts-photo:hover img {
    transform: none;
  }
  .fp-play-btn:hover,
  .fp-carousel-btn:hover,
  .fp-footer-submit:hover {
    background: inherit;
  }
  .fp-video-close:hover,
  .fp-text-link:hover,
  .fp-bts-footer .fp-text-link:hover,
  .fp-footer-social-links a:hover {
    color: inherit;
    opacity: inherit;
  }
}

/* ── Mobile footer peek override (must come after portrait block) ── */
@media (max-width: 768px) {
  .fp-bts { overflow: hidden; position: relative; }
  .fp-bts-footer {
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    height: auto !important;
    max-height: 90vh !important;
    flex: none !important;
    transform: translateY(calc(100% - 72px)) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    z-index: 10 !important;
  }
  .fp-bts-footer.fp-footer-open { transform: translateY(0) !important; }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  /* Allow footer to peek outside bts container */
  .fp-bts { overflow: visible; }
  /* Hero */
  .fp-hero-cinema { flex: none; height: 29vh; }
  .fp-hero-laurels img { height: 64px; }
  .fp-play-btn { width: 56px; height: 56px; }
  .fp-tagline { display: none; }
  .fp-hero-info { flex: 1; height: auto; overflow: hidden; padding: 16px 24px 28px; gap: 16px; align-content: start; position: relative; }
  .fp-hero-synopsis { font-size: clamp(20px, 3.2vh, 30px); line-height: 1.35; overflow: hidden; font-weight: 600; text-align: center; }
  .fp-hero-info .fp-title {
    font-size: 25px !important; color: #000 !important;
    letter-spacing: 0.18em; text-transform: uppercase;
    margin: 0 0 6px; line-height: 1.2; order: 0 !important;
    text-align: center;
  }
  .fp-hero-specs { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .fp-hero-spec-item { gap: 4px; }
  .fp-hero-spec-item--wide { grid-column: 1 / -1; }
  .fp-hero-spec-label { font-size: 18px; color: #1e4080; text-align: center; }
  .fp-hero-spec-value { font-size: 22px; text-align: center; }
  .fp-film-details-btn { align-self: center; }

  /* Film Details button + overlay */
  .fp-film-details-btn {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 4px; padding: 10px 28px; align-self: flex-start;
    background: transparent; border: 1.5px solid rgba(10,10,10,0.22);
    border-radius: 24px; cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(10,10,10,0.55); transition: border-color 0.2s, color 0.2s;
  }
  .fp-film-details-btn:active { color: rgba(10,10,10,0.9); border-color: rgba(10,10,10,0.5); }
  .fp-film-details-overlay {
    display: none; position: absolute; inset: 0; z-index: 20;
    background: rgba(234,230,222,0.93); backdrop-filter: blur(10px);
    flex-direction: column; padding: 96px 24px 24px; overflow-y: auto;
    animation: detailsFadeIn 0.2s ease;
  }
  .fp-film-details-overlay.active { display: flex; }
  @keyframes detailsFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .fp-film-details-close {
    display: flex; align-self: flex-end; align-items: center; justify-content: center;
    width: 32px; height: 32px; margin-bottom: 12px;
    background: rgba(10,10,10,0.08); border: none; border-radius: 50%;
    cursor: pointer; color: rgba(10,10,10,0.6); flex-shrink: 0;
  }
  .fp-film-details-close:active { background: rgba(10,10,10,0.18); }
  .fp-film-details-section-label {
    display: block; text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: #1e4080; margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(10,10,10,0.1);
  }
  .fp-film-details-overlay .fp-hero-laurels {
    display: flex; flex-direction: row; flex: 1; height: 0;
    align-items: center; justify-content: center; gap: 4px;
    padding: 8px 0;
  }
  .fp-film-details-overlay .fp-hero-laurels img {
    height: 100% !important; width: auto !important; object-fit: contain;
    filter: brightness(0);
  }

  /* Reviews peek tab — colour matches next section (fp-extra: #162038) */
  @keyframes peekSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .fp-reviews-peek {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 0 20px; cursor: pointer; z-index: 5;
    background: #162038; border-radius: 16px 16px 0 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    transform: translateY(100%);
  }
  .fp-reviews-peek.peek-in {
    animation: peekSlideUp 0.5s cubic-bezier(0.22,0.61,0.36,1) 0s both;
  }
  .fp-reviews-peek svg { color: rgba(255,255,255,0.4); }
  .fp-reviews-peek:active { color: rgba(255,255,255,0.95); }
  .fp-hero-info { padding-bottom: 64px !important; }

  /* Film Stills peek tab — colour matches next section (fp-bts: off-white) */
  .fp-extra { position: relative; }
  .fp-bts-peek {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 0 20px; cursor: pointer; z-index: 5;
    background: #ffffff; border-radius: 16px 16px 0 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(10,10,10,0.5);
    transition: color 0.2s;
    transform: translateY(100%);
  }
  .fp-bts-peek.peek-in {
    animation: peekSlideUp 0.5s cubic-bezier(0.22,0.61,0.36,1) 1s both;
  }
  .fp-bts-peek svg { color: rgba(10,10,10,0.35); }
  .fp-bts-peek:active { color: rgba(10,10,10,0.85); }

  /* Scroll 2 — reviews top 50%, press bottom 50% */
  .fp-extra { grid-template-columns: 1fr; height: var(--app-height); overflow: hidden; display: flex; flex-direction: column; }
  .fp-extra-photo { display: none; }
  .fp-extra-content { flex: 1; border-left: none; overflow: hidden; display: flex; flex-direction: column; }
  /* Top 50%: carousel — single-slide swipeable */
  .fp-carousel { flex: 0 0 60%; overflow: hidden; padding: 25px 24px 10px; display: flex; flex-direction: column; box-sizing: border-box; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .fp-carousel-header { margin-top: 0; margin-bottom: 10px; }
  .fp-carousel-track { position: relative; flex: 1; overflow: hidden; display: block; min-height: unset; }
  .fp-carousel-slide { position: absolute; inset: 0; opacity: 0; transform: translateX(20px); display: flex; flex-direction: column; justify-content: center; gap: 10px; pointer-events: none; padding: 0; }
  .fp-carousel-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
  .fp-carousel-slide.exit { opacity: 0; transform: translateX(-20px); display: flex; }
  .fp-carousel-quote { font-size: 20px; line-height: 1.45; }
  .fp-carousel-btn { display: none; }
  .fp-carousel-dots { display: flex; flex-direction: row; flex-shrink: 0; gap: 6px; align-items: center; justify-content: center; margin-top: 8px; }
  .page-hi-noel .fp-carousel-dots,
  .page-lml .fp-carousel-dots {
    flex-direction: row !important;
  }
  .fp-carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; padding: 0; font-size: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
  .fp-carousel-dot.active { background: rgba(255,255,255,0.9); transform: scale(1.3); }
  /* Bottom 50%: press list */
  .fp-extra-press-list { display: flex; flex-direction: column; flex: 0 0 50%; overflow-y: auto; padding: 16px 24px; box-sizing: border-box; }
  .fp-extra-press-list .fp-carousel-title { margin-bottom: 8px; }
  .fp-extra-press-list .fp-press-item { padding: 6px 0; }
  .fp-extra-press-list .fp-press-item-outlet { font-size: 16px; }
  .fp-extra-press-list .fp-press-item-headline { font-size: 13px; }
  .fp-extra-press-list .fp-press-item-date { font-size: 12px; }
  /* Merge press into fp-extra — hide separate section */
  .fp-press-section { display: none !important; }
  /* Override Hi Noel iPad static-slide rules for mobile single-slide mode */
  .page-hi-noel .fp-carousel { flex: 0 0 60%; }
  .page-hi-noel .fp-carousel-track { position: relative; overflow: hidden; display: block; flex: 1; }
  .page-hi-noel .fp-carousel-slide { position: absolute; inset: 0; opacity: 0; transform: translateX(20px); display: flex; flex-direction: column; justify-content: center; gap: 10px; pointer-events: none; padding: 0; }
  .page-hi-noel .fp-carousel-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
  .page-hi-noel .fp-carousel-slide.exit { opacity: 0; transform: translateX(-20px); display: flex; }

  /* LML mobile title + hero layout */
  .page-lml .fp-title { font-size: 48px; }
  .page-lml .fp-hero-content { justify-content: center; gap: 14px; }
  .page-lml .fp-hero-top { flex: none; padding-bottom: 0; }
  .page-lml .fp-hero-bottom { flex: none; padding-top: 0; }

  /* Hi Noel mobile hero layout — laurels after title */
  .page-hi-noel .fp-hero-top { flex: none; padding-bottom: 0; order: 1; }
  .page-hi-noel .fp-title { font-size: 52px; order: 2; }
  .page-hi-noel .fp-hero-bottom { flex: none; padding-top: 0; order: 3; }
  .page-hi-noel .fp-hero-content { justify-content: center; gap: 12px; }
  .page-hi-noel .fp-hero-laurels { gap: 16px; }
  .page-hi-noel .fp-hero-laurels img { height: 44px; }

  /* LML mobile carousel */
  .page-lml .fp-carousel { padding: 25px 24px 16px; flex: 0 0 60%; width: 100%; box-sizing: border-box; display: flex; flex-direction: column; }
  /* Hide reviews title + swipe hints on mobile */
  .fp-carousel-header { display: none; }
  .page-lml .fp-carousel-header { display: none; }
  .fp-carousel-swipe-hint { display: none !important; }

  /* Tap hint */
  .fp-carousel-tap-hint {
    text-align: center; padding: 6px 0 4px; flex-shrink: 0; pointer-events: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  .page-lml .fp-carousel-track { position: relative; overflow: hidden; display: block; min-height: unset; flex: 1; }
  .page-lml .fp-carousel-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(30px); display: flex; flex-direction: column; justify-content: center; gap: 12px; pointer-events: none; padding: 0; }
  .page-lml .fp-carousel-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .page-lml .fp-carousel-slide.exit { opacity: 0; transform: translateY(-30px); display: flex; }
  .page-lml .fp-carousel-quote { font-size: clamp(26px, 6vw, 38px); line-height: 1.45; }
  .page-lml .fp-carousel-slide--multi .fp-carousel-quote { font-size: clamp(26px, 6vw, 38px); line-height: 1.45; }
  .page-hi-noel .fp-carousel-quote { font-size: clamp(26px, 6vw, 38px); line-height: 1.45; }
  .page-lml .fp-carousel-btn { display: none; }
  .page-lml .fp-carousel-dots { display: flex; }

  /* Press auto-cycling cards */
  .fp-press-card-track {
    flex: 0 0 40%; position: relative; overflow: hidden;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .fp-press-card {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-start; gap: 4px;
    padding: 60px 24px 20px; box-sizing: border-box;
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
  }
  .fp-press-card.active { opacity: 1; pointer-events: auto; }
  .fp-press-card-title {
    display: block; padding: 12px 24px 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: #E8B84B;
  }
  .fp-press-card-meta {
    display: flex; align-items: baseline; gap: 10px;
  }
  .fp-press-card-outlet {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .fp-press-card-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; color: rgba(255,255,255,0.3); white-space: nowrap;
  }
  .fp-press-card-headline {
    font-size: 22px; font-weight: 500; line-height: 1.3;
    color: rgba(255,255,255,0.9);
  }

  /* Press section */
  .fp-press-section { display: flex; align-items: center; height: var(--app-height); background: #162038; z-index: 3; }
  .fp-bts { z-index: 4; }
  .fp-press-section-inner { padding: 24px; width: 100%; }
  .fp-press-section .fp-extra-press-list { display: block; padding: 0; }
  .fp-press-section .fp-carousel-title { display: block; margin-bottom: 24px; font-size: 22px; }
  .fp-press-section .fp-press-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 4px 12px; padding: 12px 0; }
  .fp-press-section .fp-press-item-outlet { grid-column: 1; grid-row: 1; font-size: 12px; }
  .fp-press-section .fp-press-item-headline { grid-column: 1; grid-row: 2; font-size: 18px; }
  .fp-press-section .fp-press-item-date { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 12px; }

  /* Hi-noel mobile press */
  .page-hi-noel .fp-press-section { display: flex; align-items: center; justify-content: center; height: var(--app-height); flex-direction: column; overflow: hidden; }
  .page-hi-noel .fp-press-section-inner { padding: 24px; width: 100%; box-sizing: border-box; overflow-y: auto; }
  .page-hi-noel .fp-press-section .fp-press-item-outlet { font-size: 12px; }
  .page-hi-noel .fp-press-section .fp-press-item-headline { font-size: 18px; }
  .page-hi-noel .fp-press-section .fp-press-item-date { font-size: 12px; }

  /* LML mobile press */
  .page-lml .fp-press-section { display: flex; flex-direction: column; height: var(--app-height); background: #162038; z-index: 3; overflow: hidden; }
  .page-lml .fp-press-photo { display: none; }
  .page-lml .fp-press-section-inner { display: flex; flex-direction: column; padding: 100px 40px; width: 100%; flex: 1; box-sizing: border-box; overflow: hidden; min-height: 0; }
  .page-lml .fp-press-section .fp-extra-press-list { display: block; padding: 0; }
  .page-lml .fp-press-section .fp-carousel-title { display: block; margin-bottom: 16px; font-size: 18px; }
  .page-lml .fp-press-section .fp-press-item { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 4px 0; align-items: start; padding-top: 8px; }
  .page-lml .fp-press-section .fp-press-item-outlet { grid-column: 1; grid-row: 1; font-size: 2.1vh; }
  .page-lml .fp-press-section .fp-press-item-headline { grid-column: 1; grid-row: 2; font-size: 2.9vh; padding-right: 0; }
  .page-lml .fp-press-section .fp-press-item-headline--zh { font-size: calc(2.9vh - 3px); }
  .page-lml .fp-press-section .fp-press-item-date { grid-column: 1; grid-row: 3; align-self: start; font-size: 1.8vh; padding-bottom: 8px; }

  /* BTS */
  .fp-bts { height: var(--app-height); overflow: hidden; position: relative; }
  .fp-bts-grid {
    display: flex !important; flex-direction: row !important;
    overflow-x: auto !important; overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch;
    touch-action: pan-x !important;
    gap: 3px; grid-template-columns: unset; grid-template-rows: unset;
    flex: 0 0 var(--app-height) !important; width: 100% !important; height: var(--app-height) !important;
    transform: none !important;
    transition: none !important;
    scrollbar-width: none;
  }
  .fp-bts-grid::-webkit-scrollbar { display: none; }
  .fp-bts-photo { flex: 0 0 100vw !important; width: 100vw !important; height: 100% !important; scroll-snap-align: start !important; scroll-snap-stop: always; }
  .fp-bts-photo:first-child { grid-row: unset !important; flex: 0 0 100vw !important; width: 100vw !important; height: 100% !important; }
  .fp-bts-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Footer — Mobile: bottom sheet drawer */
  .fp-bts-footer {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: var(--app-height); flex: none;
    padding: 12px 24px 24px; overflow-y: auto; justify-content: flex-start;
    border-radius: 16px 16px 0 0; box-shadow: 0 -4px 24px rgba(10,10,10,0.1);
    transform: translateY(calc(100% - 72px));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10;
  }
  .fp-bts-footer.fp-footer-open { transform: translateY(0); }
  .fp-footer-handle {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px 0 14px; flex-shrink: 0; cursor: pointer; transition: opacity 0.25s;
  }
  .fp-footer-handle-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(10,10,10,0.5);
  }
  .fp-bts-footer.fp-footer-open .fp-footer-handle {
    position: sticky; top: 0; z-index: 2; background: #EAE6DE;
    opacity: 1; pointer-events: auto; margin-bottom: 8px;
  }
  .fp-bts-footer.fp-footer-open .fp-footer-handle svg { transform: rotate(180deg); }
  .fp-footer-top { flex-direction: column; align-items: stretch; padding: 0 0 16px; gap: 24px; }
  .fp-footer-left { flex-direction: column; align-items: flex-start; gap: 20px; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(10,10,10,0.12); padding-bottom: 24px; }
  .fp-footer-divider { display: none; }
  .fp-footer-right { flex-direction: column; padding-left: 0; min-width: unset; gap: 20px; border-top: none; padding-top: 0; }
  .fp-footer-social { flex-direction: row; justify-content: center; gap: 16px; padding: 10px 0 4px; }
  .fp-footer-social-links { flex-direction: row; gap: 16px; }
  .fp-bts-footer .fp-bts-soundtrack-cover { width: 62px; height: 62px; }
  .fp-bts-footer .fp-text-link { font-size: 21px; font-weight: 600; }
  .fp-footer-mv-label span { font-size: 16px !important; font-weight: 600; }
  .fp-bts-footer .fp-bts-soundtrack-links { font-size: 21px !important; font-weight: 600; }
  .fp-footer-newsletter-text { font-size: 19px; line-height:1.55; font-weight: 600; }
  .fp-footer-newsletter-label { font-size:19px; font-weight: 700; }
  .fp-footer-social-links { font-size: 19px; font-weight: 600; }
  .fp-footer-form { width: 100%; }
  .fp-bts-swipe-label {
    display: flex; position: absolute;
    top: 44%; transform: translateY(-50%);
    left: 0; right: 0;
    align-items: center; justify-content: center; gap: 12px;
    text-align: center; pointer-events: none; z-index: 5;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px; font-weight: 400;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    opacity: 1; transition: opacity 0.4s ease;
  }
  .fp-bts-swipe-arrow {
    display: block;
    flex: 0 0 auto;
    width: 16px;
    height: 20px;
    opacity: 0;
    color: rgba(255,255,255,0.95);
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.55));
    transition: opacity 0.25s ease;
  }
  .fp-bts-swipe-arrow polyline { stroke: currentColor; }
  .fp-bts-swipe-label.can-swipe-left .fp-bts-swipe-arrow--left,
  .fp-bts-swipe-label.can-swipe-right .fp-bts-swipe-arrow--right {
    opacity: 1 !important;
  }
  .fp-bts-swipe-label.fp-swipe-label-hidden { opacity: 0; }

  /* Video overlay */
  .fp-video-inner { width: 95vw; }
}
