/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */

/* --- START OF FILE: style.css --- */
/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */

/* --- START OF FILE: style-v2.css --- */
/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */

/* --- START OF FILE: style.css --- */
/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */

/* --- START OF FILE: style-v2.css --- */
/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */

/* --- START OF FILE: style.css --- */
/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */

/* --- START OF FILE: style-v2.css --- */
/* --- START OF FILE: 01-base.css --- */
/* Import Google Fonts for Cinematic Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1d;
  --storm-blue: #161e31;
  --burnt-orange: #df542c;
  --amber: #f2991a;
  --steel-gray: #3a4655;
  --crimson: #921a22;
  --indigo: #1a152d;
  --glow-orange: rgba(223, 84, 44, 0.45);
  --glow-amber: rgba(242, 153, 26, 0.35);
  --glow-crimson: rgba(146, 26, 34, 0.4);
  --projector-beam: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 153, 26, 0.04) 0%, rgba(10, 15, 29, 0) 100%);
  --glass-bg: rgba(10, 15, 29, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --condensed: 'Oswald', sans-serif;
}

/* Base resets & scrollsnap */
html {
  scroll-behavior: auto; /* Managed by Lenis */
  background-color: var(--navy);
  color: #f1f3f9;
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



/* Base styles configured */
/* --- END OF FILE: 01-base.css --- */

/* --- START OF FILE: 02-layout.css --- */
/* Projector Spotlight */
.projector-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--projector-beam);
  pointer-events: none;
  z-index: 99;
}

/* Typography styles */
.text-cinematic-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #ffd3ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cinematic-subtitle {
  font-family: var(--condensed);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-billing-credit {
  font-family: var(--condensed);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8c9bb0;
  line-height: 1.6;
}

.text-billing-bold {
  font-weight: 500;
  color: #cbd5e1;
}

/* Poster layout helper utilities */
.poster-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.poster-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.15) 0%, rgba(10, 15, 29, 0.65) 60%, rgba(10, 15, 29, 0.98) 100%);
}

.poster-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

/* Distinct Poster Composition Systems */

/* 1. Monolithic Centered */
.poster-monolithic {
  text-align: center;
}
.poster-monolithic .title-huge {
  font-size: clamp(3rem, 10vw, 9rem);
  text-shadow: 0 0 30px var(--glow-orange);
}

/* 2. Split Cinematic */
.poster-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .poster-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* 3. The Letterbox / Cinemascope */
.poster-widescope-frame {
  border-top: clamp(2rem, 8vh, 6rem) solid #000;
  border-bottom: clamp(2rem, 8vh, 6rem) solid #000;
  width: 100%;
  min-height: calc(100vh - 12vh);
}

/* 4. Film Strip Layout */
.filmstrip-item {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filmstrip-item:hover {
  transform: scale(1.03);
}

/* 5. Minimalist teaser */
.poster-teaser-center {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

/* 6. Vertical Poster Framing */
.vertical-poster-frame {
  aspect-ratio: 2/3;
  max-height: 75vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Billing block layout styling */
.billing-block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 6px;
}

/* Cinematic Video Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.4);
  animation: pulsePlayGlow 2s infinite;
}
.video-play-btn:hover {
  background: rgba(242, 153, 26, 1);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 30px rgba(242, 153, 26, 0.6);
}
@keyframes pulsePlayGlow {
  0% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 153, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(242, 153, 26, 0);
  }
}

/* Movie Ticket Contact Card */
.movie-ticket {
  background: #111827;
  border: 1px dashed #374151;
  position: relative;
}
.movie-ticket::before, .movie-ticket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.movie-ticket::before {
  left: -16px;
  border-right: 1px dashed #374151;
}
.movie-ticket::after {
  right: -16px;
  border-left: 1px dashed #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--storm-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

/* Glow classes */
.glow-text-orange {
  text-shadow: 0 0 25px var(--glow-orange);
}
.glow-text-amber {
  text-shadow: 0 0 25px var(--glow-amber);
}
.glow-text-crimson {
  text-shadow: 0 0 25px var(--glow-crimson);
}

/* Diagonal split custom */
.diagonal-split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.diagonal-split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Custom Editorial Layout additions */
.editorial-overlap-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.polaroid-tilt-left {
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-right {
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.75);
}
.polaroid-tilt-left:hover {
  transform: scale(1.03) rotate(-0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}
.polaroid-tilt-right:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(242, 153, 26, 0.5);
  box-shadow: 0 25px 50px -12px rgba(242, 153, 26, 0.3);
}

/* --- 8 UNIQUE CREATIVE LAYOUT SYSTEMS --- */

/* Layout 3: Cinematic Letterbox & Widescreen Spotlight */
.cinematic-letterbox-container {
  border-top: 4px solid var(--burnt-orange);
  border-bottom: 4px solid var(--burnt-orange);
  background: #05070f;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cinematic-letterbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(223, 84, 44, 0.1) 0%, rgba(5, 7, 15, 0.98) 80%);
  z-index: 1;
}
.spotlight-widescreen-frame {
  aspect-ratio: 21/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
}
.spotlight-widescreen-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Layout 4: Magazine Editorial Column */
.magazine-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .magazine-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .magazine-left {
    grid-column: span 5;
  }
  .magazine-right {
    grid-column: span 7;
  }
}
.magazine-portrait-frame {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--amber);
  box-shadow: 0 35px 70px -15px rgba(242, 153, 26, 0.25);
}
.magazine-landscape-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Layout 5: Film Strip Overlay */
.filmstrip-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .filmstrip-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .filmstrip-cell:nth-child(1) {
    transform: translateY(-20px) rotate(-2deg);
    margin-right: -2rem;
    z-index: 10;
  }
  .filmstrip-cell:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
    z-index: 12;
  }
  .filmstrip-cell:nth-child(3) {
    transform: translateY(-10px) rotate(-1deg);
    margin-left: -2rem;
    z-index: 11;
  }
  .filmstrip-cell:nth-child(4) {
    transform: translateY(15px) rotate(2deg);
    margin-left: -1rem;
    z-index: 9;
  }
}
.filmstrip-cell {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmstrip-cell:hover {
  transform: translateY(0) scale(1.05) rotate(0deg) !important;
  z-index: 99 !important;
  box-shadow: 0 25px 50px rgba(242, 153, 26, 0.3);
}

/* Layout 6: Blockbuster Floating Poster */
.blockbuster-floating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .blockbuster-floating-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}
.floating-wing-left, .floating-wing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.floating-hero-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.85);
  transform: scale(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.floating-hero-poster:hover {
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 30px 80px rgba(242, 153, 26, 0.4);
}

/* Layout 7: Parallel Slants & Geometric Wedges */
.slant-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .slant-grid-container {
    flex-direction: row;
    gap: 0.75rem;
    height: 380px;
    padding: 1rem 0;
  }
}
.slant-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex: none;
  height: 180px;
}
@media (min-width: 768px) {
  .slant-wrapper {
    flex: 1;
    height: auto;
    transform: skewX(-10deg) scale(0.98);
  }
  .slant-wrapper:hover {
    transform: skewX(-10deg) scale(1.04);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(242, 153, 26, 0.25);
    z-index: 20;
    flex: 1.2;
  }
}
.slant-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .slant-inner {
    transform: skewX(10deg) scale(1.15);
  }
  .slant-wrapper:hover .slant-inner {
    transform: skewX(10deg) scale(1.22);
  }
}

/* Layout 8: Dual Spotlight */
.dual-spotlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dual-spotlight-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-spotlight-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px rgba(242, 153, 26, 0.3);
}
.dual-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 50%, rgba(5,7,15,0) 100%);
  z-index: 2;
}
/* --- END OF FILE: 02-layout.css --- */

/* --- START OF FILE: 03-marquee.css --- */
/* Infinite Logo Marquee */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-track img {
  height: clamp(52px, 7vh, 68px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-track img:hover {
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%); /* Resets after 1/3 of the populated list (since we triple clone) */
  }
}
/* --- END OF FILE: 03-marquee.css --- */

/* --- START OF FILE: 04-gallery.css --- */
/* Screening Room Gallery Styles */
.gallery-filter-btn {
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c9bb0;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gallery-filter-btn:hover {
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(223, 84, 44, 0.2);
}

.gallery-filter-btn.active {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.45);
}

/* Movie Poster Grid Card */
.gallery-card {
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 48, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(242, 153, 26, 0.6);
  box-shadow: 0 25px 50px -15px rgba(242, 153, 26, 0.25);
}

.gallery-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 50%, rgba(10, 15, 29, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(0deg, rgba(10, 15, 29, 0.98) 0%, rgba(10, 15, 29, 0.6) 60%, rgba(223, 84, 44, 0.15) 100%);
}

.gallery-card-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 84, 44, 0.9);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(223, 84, 44, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.gallery-card:hover .gallery-card-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.gallery-card-info {
  position: relative;
  z-index: 4;
}

.gallery-card-category {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
  color: var(--amber);
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.gallery-card-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
/* --- END OF FILE: 04-gallery.css --- */

/* --- START OF FILE: 05-lightbox.css --- */
/* Cinematic Lightbox Modal Elements */
#lightbox-filmstrip::-webkit-scrollbar {
  height: 4px;
}

#lightbox-filmstrip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#lightbox-filmstrip::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border-radius: 2px;
}

#lightbox-filmstrip::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-orange);
}

.lightbox-thumb {
  height: clamp(40px, 6vh, 60px);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%) brightness(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-radius: 2px;
}

.lightbox-thumb:hover {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--amber);
}

.lightbox-thumb.active {
  filter: grayscale(0%) brightness(100%);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px var(--glow-orange);
  transform: scale(1.05);
}
/* --- END OF FILE: 05-lightbox.css --- */


/* --- END OF FILE: style-v2.css --- */


/* --- END OF FILE: style.css --- */


/* --- END OF FILE: style-v2.css --- */


/* --- END OF FILE: style.css --- */


/* --- END OF FILE: style-v2.css --- */


/* --- END OF FILE: style.css --- */

