/*
Theme Name: Bluebells Studios
Theme URI: https://bluebells.vn
Author: Bluebells Studios
Description: Official Film Hub — cinematic, premium, minimal.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: bluebells
*/

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── VARIABLES ─── */
:root {
  --black:       #020202;
  --white:       #F2F2F2;
  --warm-white:  #e0e0e0;
  --blue:        #2438D7;
  --blue-light:  #3a4fe0;
  --navy:        #10304A;
  --navy-light:  #1a4060;
  --gold:        #FECD4E;
  --gold-dim:    rgba(254,205,78,0.7);
  --accent:      #FECD4E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #ffffff;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--black); }

.section-label {
  font-size: 26px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #888; margin-bottom: 20px; font-weight:600;
  display: flex; align-items: center; gap: 16px;
}
.section-label::after { content:''; flex:1; max-width:64px; height:0.5px; background:#ddd; }

/* Unified section header — used across all blocks */
.section-heading {
  font-family: var(--font-body);
  font-size: clamp(20px, 4vw, 48px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  word-break: keep-all;
}
/* When inside a flex row with view-all link, drop bottom margin */
.slate-header .section-heading,
.partners-header .section-heading { margin-bottom: 0; }
@media (max-width: 540px) {
  .section-heading {
    font-size: clamp(15px, 4.8vw, 20px);
    letter-spacing: 0.03em;
    margin-bottom: 14px;
  }
  .slate-header, .partners-header {
    gap: 10px;
    margin-bottom: 14px;
    align-items: center;
  }
  .view-all { font-size: 9px; letter-spacing: 0.08em; }
  .view-all::after { font-size: 10px; }
}

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content:center;
  padding: 9px 22px; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; transition: all 0.2s; min-width:140px;
  border-radius: 4px;
}
.btn-primary {
  background: var(--blue); color: #fff; border: none;
}
.btn-primary:hover { background: var(--blue-light); }
.btn-ghost {
  color: rgba(0,0,0,0.5); background: transparent;
  border: 0.5px solid rgba(0,0,0,0.15); font-weight:500;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--black); }

/* HEADER — dark */
#site-header {
  position: sticky; top:0; z-index:100;
  background: var(--black); border-bottom:1px solid var(--navy);
  height:72px;
}
.header-inner {
  max-width:1240px; margin:0 auto; padding:0 40px;
  display:flex; align-items:center; gap:48px; height:100%;
}
.site-logo { display:flex; align-items:center; flex-shrink:0; }
.site-logo-img { height:48px; width:auto; display:block; filter:brightness(0) invert(1); }
.site-logo-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--white);
}
.site-logo-text span { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap:0; height:100%; flex:1; }
.nav-links { display:flex; gap:0; align-items:center; height:100%; list-style:none; margin:0; padding:0; }
.nav-links li { display:flex; align-items:center; height:100%; }
.nav-links a {
  font-size: 14px; letter-spacing: 0.04em; font-weight:500;
  color: rgba(242,242,242,0.6); transition: color 0.2s;
  padding:0 24px; height:100%; display:flex; align-items:center;
  position:relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a { color:var(--white); }
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after,
.nav-links .current-menu-ancestor > a::after {
  content:''; position:absolute; bottom:0; left:24px; right:24px;
  height:3px; background:var(--gold);
}
.lang-switch {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,242,242,0.85); border: 0.5px solid rgba(242,242,242,0.35);
  padding: 6px 14px; margin-left:auto; transition: all 0.2s;
  border-radius: 3px; cursor: pointer; flex-shrink:0;
}
.lang-switch:hover { color: var(--white); border-color: rgba(242,242,242,0.7); background: rgba(255,255,255,0.05); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle span { display:block; width:24px; height:0.5px; background:var(--white); }

/* HERO SLIDER */
.hero-slider { position:relative; width:100%; overflow:hidden; max-width:1160px; margin:0 auto; }
.hero-track { display:flex; width:100%; transition:transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.hero-slide {
  flex:0 0 100%; position:relative;
  display:none; align-items:flex-end; overflow:hidden; width:100%; color:inherit; text-decoration:none;
  aspect-ratio:21/9; max-height:85vh;
}
.hero-slide .hero-bg-image {
  position:absolute; inset:0; background-size:cover;
  background-position:center; z-index:0;
}
.hero-slide .hero-bg-image::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to right, rgba(2,2,2,0.55) 30%, transparent 100%),
              linear-gradient(to top, rgba(2,2,2,0.8) 0%, transparent 40%);
}
.hero-content {
  position:relative; z-index:2;
  width:100%; padding:0 40px 48px;
}
.hero-eyebrow {
  font-size:14px; letter-spacing:0.28em; text-transform:uppercase; font-weight:700;
  color:var(--accent); margin-bottom:18px;
  display:flex; align-items:center; gap:14px;
}
.hero-eyebrow.hero-eyebrow-below { margin-top:14px; margin-bottom:0; }
.hero-title {
  font-family:var(--font-display); font-size:clamp(24px,3vw,44px);
  font-weight:700; line-height:1.05; letter-spacing:-0.01em;
  margin-bottom:24px; color:#fff;
}
.hero-title .title-part,
.showing-title .title-part {
  display:inline-block; white-space:nowrap;
}
.hero-ctas {
  display:flex; gap:16px; flex-wrap:wrap;
  min-height:42px; align-items:center;  /* preserves space even when empty */
}
.hero-title em { font-style:italic; color:rgba(255,255,255,0.6); display:block; }
/* Hero CTA buttons stay light on dark banner */
.hero-slide .btn-ghost,
.film-hero .btn-ghost {
  color:rgba(255,255,255,0.6); border-color:rgba(255,255,255,0.2);
}
.hero-slide .btn-ghost:hover,
.film-hero .btn-ghost:hover {
  color:#fff; border-color:var(--blue);
}

/* Hero dots */
.hero-dots {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  z-index:10; display:flex; gap:8px;
}
.hero-dot {
  width:28px; height:3px; border-radius:2px; border:none;
  background:rgba(255,255,255,0.4); cursor:pointer; padding:0; transition:all 0.3s;
}
.hero-dot.active { background:#fff; width:40px; }
.hero-dot:hover { background:rgba(255,255,255,0.7); }

/* Hero arrows */
.hero-arrow {
  position:absolute; top:50%; transform:translateY(-50%); z-index:10;
  width:48px; height:48px; border-radius:50%;
  background:rgba(0,0,0,0.3); border:1px solid rgba(255,255,255,0.15);
  color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
  backdrop-filter:blur(4px);
}
.hero-arrow:hover { background:rgba(0,0,0,0.6); border-color:rgba(255,255,255,0.3); }
.hero-arrow-prev { left:16px; }
.hero-arrow-next { right:16px; }

/* Hero slide content animation */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-slide.active .hero-content > * { animation:fadeUp 0.6s ease forwards; opacity:0; }
.hero-slide.active .hero-content > *:nth-child(1){animation-delay:0.1s}
.hero-slide.active .hero-content > *:nth-child(2){animation-delay:0.25s}
.hero-slide.active .hero-content > *:nth-child(3){animation-delay:0.4s}

/* FILM DETAIL HERO (single-film page) */
.film-hero {
  position:relative; aspect-ratio:21/9; max-height:85vh;
  display:flex; align-items:flex-end; overflow:hidden; width:100%;
  max-width:1160px; margin:0 auto;
}
.film-hero .hero-bg-image {
  position:absolute; inset:0; background-size:cover;
  background-position:center; z-index:0;
}
.film-hero .hero-bg-image::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.1) 100%);
}
.film-hero-content {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; padding:0 40px 28px;
  width:100%;
}
.film-hero-logo {
  max-width:220px; width:35%; height:auto; margin-bottom:10px;
  filter:drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.film-hero-title {
  font-family:var(--font-body); font-size:15px; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.7); margin-bottom:20px;
}
.film-hero-ctas { justify-content:center; }
.film-hero-ctas .btn-primary,
.film-hero-ctas .btn-ghost {
  padding:8px 20px; font-size:9px;
}
.film-hero .hero-content > * { animation:fadeUp 0.6s ease forwards; opacity:0; }
.film-hero .hero-content > *:nth-child(1){animation-delay:0.1s}
.film-hero .hero-content > *:nth-child(2){animation-delay:0.25s}
.film-hero .hero-content > *:nth-child(3){animation-delay:0.4s}

/* CONTAINER */
.site-container { max-width:1240px; margin:0 auto; padding:0 40px; }

/* SECTIONS */
.section-pad { padding:20px 0 32px; }
.section-pad > .section-label,
.section-pad > .slate-header,
.section-pad > .partners-header,
.section-pad > h2,
.section-pad > .films-carousel,
.section-pad > .video-carousel,
.section-pad > .photo-carousel,
.section-pad > .photo-counter,
.section-pad > .films-grid,
.section-pad > .featured-movies-grid,
.section-pad > .more-movies-btn,
.section-pad > .coming-grid,
.section-pad > .about-grid,
.section-pad > .partners-cats,
.section-pad > .partners-gallery,
.section-pad > .partners-group,
.section-pad > .partners-intro,
.section-pad > .press-inner,
.section-pad > .showing-inner { max-width:1080px; margin-left:auto; margin-right:auto; padding-left:20px; padding-right:20px; }
.section-dark { background:#ffffff; }
.section-gray { background:#f5f5f5; }
.section-border-top { border-top:none; }

/* FILMS GRID */
.slate-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:24px; }
.slate-title { font-size: clamp(36px,4.5vw,56px); }
.view-all {
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:#888; display:flex; align-items:center; gap:8px; font-weight:500;
  transition:color 0.2s; white-space:nowrap;
}
.view-all::after { content:'→'; font-size:14px; }
.view-all:hover { color:var(--black); }

.films-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:24px; }

/* FEATURED MOVIES — desktop 5-col grid, mobile horizontal scroll */
.featured-movies-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px 16px; }
.more-movies-btn {
  display:block; margin:32px auto 0;
  padding:12px 32px; font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
  font-weight:600; font-family:var(--font-body);
  background:transparent; color:var(--black);
  border:0.5px solid rgba(0,0,0,0.2); cursor:pointer;
  transition:all 0.2s;
  border-radius:4px;
}
.more-movies-btn:hover { background:var(--black); color:#fff; border-color:var(--black); }
.more-movies-btn.is-done { display:none; }

@media (max-width:900px) {
  /* Convert to horizontal swipe gallery — posters bigger, 2-2.5 visible */
  .section-pad > .featured-movies-grid {
    display:flex; grid-template-columns:none;
    overflow-x:auto; gap:12px;
    scroll-snap-type:x mandatory;
    /* Use explicit padding (overriding inherited 20px) for breathing room.
       scroll-padding ensures snap respects the inset on subsequent cards. */
    padding:0 20px 8px;
    scroll-padding-left:20px;
    scroll-padding-right:20px;
    -webkit-overflow-scrolling:touch;
  }
  /* Phantom spacer after last card so right edge gets breathing room too */
  .featured-movies-grid::after {
    content:''; flex:0 0 4px;
  }
  .featured-movies-grid::-webkit-scrollbar { height:3px; }
  .featured-movies-grid::-webkit-scrollbar-thumb { background:rgba(0,0,0,0.15); border-radius:2px; }
  .featured-movies-grid .film-card-link {
    flex:0 0 42%; scroll-snap-align:start;
  }
  .more-movies-btn { display:none; }
}
@media (max-width:540px) {
  .featured-movies-grid .film-card-link { flex:0 0 48%; }
}

/* Video & Films carousel on mobile: native horizontal scroll (more visible per view) */
@media (max-width:900px) {
  .video-carousel, .films-carousel { display:block; }
  .video-carousel .carousel-prev, .video-carousel .carousel-next,
  .films-carousel .carousel-prev, .films-carousel .carousel-next { display:none; }
  .video-carousel .carousel-viewport,
  .films-carousel .carousel-viewport {
    overflow-x:auto; scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
  }
  .video-carousel .carousel-viewport::-webkit-scrollbar,
  .films-carousel .carousel-viewport::-webkit-scrollbar { height:3px; }
  .video-carousel .carousel-viewport::-webkit-scrollbar-thumb,
  .films-carousel .carousel-viewport::-webkit-scrollbar-thumb { background:rgba(0,0,0,0.2); border-radius:2px; }
  .video-carousel .carousel-track,
  .films-carousel .carousel-track {
    transform:none !important;  /* override JS-set transform */
    gap:12px;
  }
  /* Videos: ~1.6 visible (peek next) */
  .video-carousel .carousel-slide { flex:0 0 62%; scroll-snap-align:start; }
  /* Films: ~2.7 visible (more films per view) */
  .films-carousel .carousel-slide { flex:0 0 32%; scroll-snap-align:start; }
}
@media (max-width:540px) {
  .video-carousel .carousel-slide { flex:0 0 78%; }
  .films-carousel .carousel-slide { flex:0 0 38%; }
}
.film-card-link { display:block; color:inherit; text-decoration:none; }
.film-card { position:relative; overflow:hidden; cursor:pointer; }
.film-poster { position:relative; overflow:hidden; aspect-ratio:2/3; border-radius:4px; }
.film-poster img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.film-card:hover .film-poster img { transform:scale(1.03); }
.film-poster-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.6),transparent 50%); }
.film-poster-label {
  position:absolute; top:8px; left:8px; z-index:1;
  font-size:9px; letter-spacing:0.16em; text-transform:uppercase; font-weight:600;
  padding:3px 8px; background:rgba(0,0,0,0.75);
  border:0.5px solid rgba(255,255,255,0.15); color:rgba(255,255,255,0.85);
  white-space:nowrap; line-height:1;
}
.film-poster-label.now-showing { border-color:var(--accent); color:var(--accent); }
@media(max-width:540px){
  .film-poster-label { font-size:7px; padding:2px 5px; letter-spacing:0.1em; top:5px; left:5px; }
}
.film-info { padding:6px 2px 0; }
.film-name { font-family:var(--font-body); font-size:clamp(12px,1.1vw,14px); font-weight:600; color:var(--black); line-height:1.3; margin-bottom:3px; letter-spacing:0.01em; }
.film-genre { font-family:var(--font-body); font-size:9px; letter-spacing:0.18em; text-transform:uppercase; color:#999; font-weight:500; }

/* NOW SHOWING */
.showing-inner { display:grid; grid-template-columns:340px 1fr; gap:40px; align-items:start; }
.showing-poster-wrap { width:100%; max-width:340px; position:relative; }
.showing-poster-wrap img { width:100%; aspect-ratio:2/3; object-fit:cover; display:block; }
.showing-details { padding-top:4px; }
/* Narrow viewport: meta becomes vertical, synopsis still full width */
@media(max-width:1100px) {
  .film-meta-row { flex-direction:column; gap:12px; }
}
.showing-banner-wrap { width:100%; position:relative; }
.showing-banner-wrap img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.poster-rating {
  position:absolute; top:20px; right:20px; width:44px; height:44px;
  border:1.5px solid rgba(254,205,78,0.6); display:flex; align-items:center;
  justify-content:center; font-size:13px; font-weight:500; color:var(--accent);
  font-family:var(--font-display); background:rgba(0,0,0,0.6);
}
.showing-eyebrow {
  font-size:10px; letter-spacing:0.3em; text-transform:uppercase;
  color:var(--blue); margin-bottom:20px; display:flex; align-items:center; gap:12px;
}
.showing-eyebrow::before { content:''; width:20px; height:0.5px; background:var(--blue); }
.showing-title { font-size:clamp(24px,3vw,40px); margin-bottom:12px; }
.film-meta-row { display:flex; gap:20px; margin-bottom:14px; flex-wrap:wrap; }
.meta-item { font-size:15px; color:rgba(0,0,0,0.75); font-weight:500; line-height:1.4; }
.meta-item strong { display:block; color:#888; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; margin-bottom:4px; font-weight:600; }
.showing-synopsis { font-size:15px; color:rgba(0,0,0,0.6); line-height:1.7; margin-bottom:20px; font-weight:400; border-left:2px solid rgba(36,56,215,0.3); padding-left:20px; }
.rating-logo { height:36px; width:auto; vertical-align:middle; display:inline-block; }
.meta-value .rating-logo { height:28px; }
.showing-ctas { display:flex; gap:12px; flex-wrap:wrap; }

/* FILM OVERVIEW (poster + info — single-film page) */
.film-overview { padding:48px 0 24px; }
.film-overview-grid {
  display:grid;
  grid-template-columns:35% 1fr;
  grid-template-areas:
    "poster info"
    "synopsis synopsis";
  gap:32px 40px;
  max-width:1080px; margin:0 auto; padding:0 20px; align-items:start;
}
.film-overview-poster   { grid-area:poster; position:relative; width:100%; }
.film-overview-info     { grid-area:info; display:flex; flex-direction:column; gap:14px; }
.film-overview-synopsis { grid-area:synopsis; }
.film-overview-poster img {
  width:100%; aspect-ratio:2/3; object-fit:cover; display:block;
}
.film-overview-rating {
  position:absolute; top:14px; right:14px;
  width:42px; height:42px; display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:600; color:var(--accent);
  font-family:var(--font-display); letter-spacing:0.02em;
  background:rgba(0,0,0,0.75); border:1px solid rgba(254,205,78,0.5);
}

.film-overview-title {
  font-family:var(--font-display); font-size:clamp(27px,3.4vw,45px);
  font-weight:700; line-height:1.05; color:var(--black); margin-bottom:6px;
}

.film-overview-vn {
  font-size:13px; color:rgba(0,0,0,0.4); font-weight:400;
  margin-bottom:10px; font-style:italic;
}
.film-overview-meta {
  display:grid; grid-template-columns:auto 1fr; gap:3px 16px;
  margin-bottom:0; align-items:baseline;
}
.meta-row {
  display:contents;
}
.meta-label {
  font-size:9px; font-weight:600; color:var(--black);
  letter-spacing:0.04em; text-transform:uppercase; white-space:nowrap;
}
.meta-value {
  font-size:11px; font-weight:500; color:var(--black);
}

.film-overview-synopsis {
  margin-top:8px;
  padding-top:28px;
  border-top:1px solid rgba(0,0,0,0.1);
}
.synopsis-heading {
  font-family:var(--font-display);
  font-size:20px; font-weight:700;
  color:var(--black);
  margin:0 0 14px;
  letter-spacing:-0.01em;
}
.synopsis-body {
  font-size:15px; color:rgba(0,0,0,0.65); line-height:1.7;
  font-weight:400;
}
.synopsis-body p { margin:0 0 12px; }
.synopsis-body p:last-child { margin-bottom:0; }

.film-overview-crew {
  margin-bottom:0;
}
.crew-block { padding:4px 0; }
.crew-block:first-child { padding-top:0; }
.crew-block:last-child { padding-bottom:0; }

.crew-block strong {
  display:block; font-size:14px; font-weight:700; color:var(--black);
  margin-bottom:3px;
}
.crew-block span {
  font-size:14px; color:rgba(0,0,0,0.6); line-height:1.6; font-weight:400;
}

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

/* VIDEO CAROUSEL */
.video-carousel { position:relative; display:flex; align-items:center; gap:16px; }
.films-carousel { position:relative; display:flex; align-items:center; gap:16px; }
.films-carousel .carousel-slide { flex:0 0 calc((100% - 64px) / 5); }
@media(max-width:1100px){ .films-carousel .carousel-slide { flex:0 0 calc((100% - 48px) / 4); } }
@media(max-width:900px){  .films-carousel .carousel-slide { flex:0 0 calc((100% - 32px) / 3); } }
@media(max-width:540px){  .films-carousel .carousel-slide { flex:0 0 calc((100% - 16px) / 2); } }
.carousel-viewport { overflow:hidden; flex:1; }
.carousel-track { display:flex; gap:16px; transition:transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); }
.carousel-track.centered { justify-content:center; }
.carousel-slide { flex:0 0 calc((100% - 32px) / 3); min-width:0; }
.video-thumb { position:relative; aspect-ratio:16/9; cursor:pointer; overflow:hidden; background:#eee; border:0.5px solid rgba(0,0,0,0.08); border-radius:4px; }
.video-thumb img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease, filter 0.3s; filter:brightness(0.7); }
.video-thumb:hover img { transform:scale(1.05); filter:brightness(0.9); }
.video-play {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:56px; height:56px; background:rgba(0,0,0,0.6);
  border:1.5px solid rgba(255,255,255,0.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.3s, border-color 0.3s, transform 0.3s;
}
.video-play svg { width:22px; height:22px; color:#fff; margin-left:2px; }
.video-title {
  font-family:var(--font-body); font-size:13px; font-weight:600;
  color:var(--black); margin-top:10px; line-height:1.35;
  letter-spacing:0.01em;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden;
}
@media(max-width:540px){ .video-title{ font-size:12px; } }
.video-thumb:hover .video-play { background:rgba(36,56,215,0.85); border-color:var(--blue); transform:translate(-50%,-50%) scale(1.08); }
.carousel-arrow {
  flex-shrink:0; width:40px; height:40px; background:rgba(255,255,255,0.85);
  border:0.5px solid rgba(0,0,0,0.08); border-radius:50%;
  color:#444; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  backdrop-filter:blur(4px);
}
.carousel-arrow:hover { background:#fff; color:var(--black); transform:scale(1.05); box-shadow:0 4px 12px rgba(0,0,0,0.12); }
.carousel-arrow:active { transform:scale(0.95); }
.carousel-arrow:disabled { opacity:0.3; cursor:default; pointer-events:none; }
.carousel-arrow.hidden { display:none; }
.carousel-arrow svg { width:18px; height:18px; }

/* PHOTO CAROUSEL — single image */
.photo-carousel { position:relative; display:flex; align-items:center; gap:16px; }
.photo-track {
  display:flex; gap:0; transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.photo-slide { flex:0 0 100%; min-width:0; }
.photo-item {
  position:relative; aspect-ratio:16/9; overflow:hidden; cursor:pointer;
  background:#111; border-radius:4px;
}
/* Landscape: cover full, no blur bg */
.photo-item.landscape .photo-blur { display:none; }
.photo-item.landscape img {
  position:relative; z-index:1; width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform 0.5s ease;
}
/* Portrait: contain with blurred bg */
.photo-item.portrait .photo-blur {
  display:block; position:absolute; inset:-20px; z-index:0;
  background-size:cover; background-position:center;
  filter:blur(20px) brightness(0.4); transform:scale(1.1);
}
.photo-item.portrait img {
  position:relative; z-index:1; width:auto; height:100%;
  max-width:100%; object-fit:contain; display:block;
  margin:0 auto; transition:transform 0.5s ease;
}
.photo-item:hover img { transform:scale(1.02); }
.photo-counter {
  text-align:center; margin-top:16px;
  font-size:12px; letter-spacing:0.15em; color:#999;
}

/* MODAL SYSTEM (shared by video + photo lightbox) */
.modal-overlay {
  position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,0.92); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity 0.3s; cursor:pointer;
}
.modal-overlay.active { opacity:1; }

.modal-close {
  position:absolute; top:20px; right:20px; z-index:10;
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
}
.modal-close:hover { background:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.4); }
.modal-close svg { width:20px; height:20px; }

.modal-nav {
  position:absolute; top:50%; transform:translateY(-50%); z-index:10;
  width:56px; height:56px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
}
.modal-nav:hover { background:rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.35); }
.modal-nav svg { width:24px; height:24px; }
.modal-nav-prev { left:20px; }
.modal-nav-next { right:20px; }

.modal-counter {
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  font-size:13px; letter-spacing:0.15em; color:rgba(255,255,255,0.6);
}

.modal-video-wrap { width:min(960px,92vw); cursor:default; }
.modal-video-ratio { position:relative; padding-bottom:56.25%; height:0; }
.modal-video-ratio iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; }

.modal-photo-wrap {
  display:flex; align-items:center; justify-content:center;
  max-width:90vw; max-height:80vh; cursor:default;
}
.modal-photo-img {
  max-width:90vw; max-height:80vh; object-fit:contain; display:block;
}

@media(max-width:540px) {
  .modal-close { top:12px; right:12px; width:40px; height:40px; }
  .modal-close svg { width:18px; height:18px; }
  .modal-nav { width:44px; height:44px; }
  .modal-nav svg { width:20px; height:20px; }
  .modal-nav-prev { left:8px; }
  .modal-nav-next { right:8px; }
}

/* COMING SOON */
.coming-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(0,0,0,0.06); margin-top:48px; }
.coming-card { background:#fff; overflow:hidden; cursor:pointer; transition:background 0.3s; }
.coming-card:hover { background:#f5f5f5; }
.coming-poster { aspect-ratio:2/3; position:relative; overflow:hidden; }
.coming-poster img { width:100%; height:100%; object-fit:cover; }
.coming-poster::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.6),transparent 60%); }
.coming-info { padding:8px 4px 16px; }
.coming-date { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; opacity:0.8; }
.coming-title { font-family:var(--font-body); font-size:clamp(12px,1.1vw,14px); font-weight:600; color:var(--black); margin-bottom:4px; line-height:1.3; letter-spacing:0.01em; }
.coming-genre { font-family:var(--font-body); font-size:9px; letter-spacing:0.18em; text-transform:uppercase; color:#999; font-weight:500; }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr; gap:60px; align-items:center; }
.about-grid:not(.has-image) { max-width:780px; }
.about-grid.has-image,
.about-grid:has(.caps-list),
.about-grid:has(.about-image) { grid-template-columns:1fr 1fr; gap:40px; }
.about-grid.has-image .about-body,
.about-grid:has(.about-image) .about-body { text-align:justify; }
.about-image {
  width:100%; max-width:480px; aspect-ratio:4/3; overflow:hidden; border-radius:4px; background:#eee;
  justify-self:end;
}
.about-image img {
  width:100%; height:100%; object-fit:cover; display:block;
}
@media(max-width:900px){
  .about-grid.has-image,
  .about-grid:has(.caps-list),
  .about-grid:has(.about-image) { grid-template-columns:1fr; gap:32px; }
  .about-image { justify-self:start; max-width:100%; }
}
.about-headline { font-size:clamp(32px,4vw,48px); margin-bottom:24px; }
.about-headline em { font-style:italic; color:rgba(0,0,0,0.4); }
.about-body { font-size:15px; color:rgba(0,0,0,0.6); line-height:1.75; margin-bottom:14px; font-weight:400; }
.about-body:last-of-type { margin-bottom:0; }
.caps-list { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:rgba(0,0,0,0.06); }
.cap-item { background:#f9f9f9; padding:28px 24px; }
.cap-num { font-family:var(--font-display); font-size:36px; font-weight:700; color:rgba(36,56,215,0.15); display:block; margin-bottom:12px; line-height:1; }
.cap-title { font-size:13px; letter-spacing:0.08em; text-transform:uppercase; color:var(--black); margin-bottom:8px; font-weight:600; font-family:var(--font-body); }
.cap-desc { font-size:13px; color:#777; line-height:1.6; font-weight:400; }

/* PARTNERS */
.partners-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:24px; }
.partners-title { font-size:clamp(32px,4vw,48px); }
.partners-cats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(0,0,0,0.06); }
.partner-cat { background:#fff; padding:32px 28px; border-top:2px solid transparent; transition:border-color 0.3s,background 0.3s; }
.partner-cat:hover { background:#f5f5f5; border-color:var(--blue); }
.cat-icon { width:36px; height:36px; border:0.5px solid rgba(0,0,0,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.cat-icon svg { width:16px; height:16px; stroke:#999; fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.cat-name { font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--black); margin-bottom:12px; font-weight:600; }
.cat-desc { font-size:13px; color:#777; line-height:1.6; font-weight:400; }
.cat-count { font-family:var(--font-display); font-size:28px; font-weight:700; color:rgba(0,0,0,0.08); margin-top:20px; display:block; }

/* Partners gallery — fixed 5 per row at all sizes, last row centered */
.partners-gallery {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:12px;
}
.partners-gallery .partner-tile {
  flex:0 0 calc((100% - 48px) / 5);  /* 5 per row, 4 × 12px gap */
  max-width:calc((100% - 48px) / 5);
}
@media(max-width:540px){
  .partners-gallery { gap:6px; }
  .partners-gallery .partner-tile {
    flex:0 0 calc((100% - 24px) / 5);  /* 5 per row, 4 × 6px gap */
    max-width:calc((100% - 24px) / 5);
    padding:8px;
  }
}
.partner-tile {
  aspect-ratio:1/1;
  background:#fff;
  border:0.5px solid rgba(0,0,0,0.08);
  display:flex; align-items:center; justify-content:center;
  padding:22px;
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-radius:2px;
  text-decoration:none;
}
.partner-tile.has-link { cursor:pointer; }
.partner-tile:not(.has-link) { cursor:default; }
.partner-tile.has-link:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
  border-color:rgba(0,0,0,0.15);
}
.partner-tile img {
  max-width:100%; max-height:100%;
  width:auto; height:auto;
  object-fit:contain;
}
@media(max-width:540px){
  .partners-gallery { grid-template-columns:repeat(3, 1fr); gap:8px; }
  .partner-tile { padding:14px; }
}

/* ARCHIVE HERO BANNER */
.archive-hero {
  position:relative; aspect-ratio:21/9; max-height:80vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; width:100%; max-width:min(1160px, calc(100% - 80px)); margin:0 auto;
  background:var(--black);
}
.archive-hero .hero-bg-image {
  position:absolute; inset:0; background-size:cover;
  background-position:center; z-index:0;
}
.archive-hero .hero-bg-image::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 100%);
}
.archive-hero-content {
  position:relative; z-index:2; text-align:center;
  display:flex; flex-direction:column; align-items:center;
  padding:40px;
}
.archive-hero-logo {
  max-width:400px; width:60%; height:auto; margin-bottom:20px;
  filter:drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.archive-hero-title {
  font-family:var(--font-display); font-size:clamp(48px,7vw,88px);
  font-weight:800; color:#fff; text-align:center; margin-bottom:16px;
  text-shadow:0 2px 20px rgba(0,0,0,0.5);
}
.archive-hero-status {
  font-size:13px; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.8); margin-bottom:24px; font-weight:500;
}
.archive-hero-ctas { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.archive-hero-btn { display:inline-flex; align-items:center; gap:8px; }
.archive-hero .btn-ghost {
  color:rgba(255,255,255,0.7); border-color:rgba(255,255,255,0.25);
}
.archive-hero .btn-ghost:hover { color:#fff; border-color:#fff; }

/* FILTER TABS */
.filter-tabs {
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom:48px;
  max-width:1080px; margin-left:auto; margin-right:auto; padding-left:20px; padding-right:20px;
}
.filter-tab {
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  padding:8px 20px; border:0.5px solid rgba(0,0,0,0.12);
  color:#999; transition:all 0.2s; font-weight:500;
}
.filter-tab:hover { border-color:rgba(0,0,0,0.3); color:var(--black); }
.filter-tab.active { border-color:rgba(0,0,0,0.4); color:var(--black); }

/* CONTACT */
.contact-section { padding:48px 0; text-align:center; }
.contact-inner { max-width:1080px; margin:0 auto; padding:0 20px; }
.contact-label { font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:var(--blue); margin-bottom:14px; display:block; font-weight:600; }
.contact-headline {
  font-size:clamp(22px,3.4vw,38px); margin:0 auto 48px;
  text-align:center; max-width:900px; line-height:1.3;
}
.contact-headline .slogan-part {
  display:inline-block; white-space:nowrap;
}
.contact-ctas { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* CONTACT 2-column: info left, form right */
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:56px;
  text-align:left; margin-top:8px; align-items:start;
}
.contact-info {
  border-right:1px solid rgba(0,0,0,0.12);
  padding-right:56px;
}
.contact-form-heading {
  font-family:var(--font-body); font-size:18px; font-weight:700;
  text-transform:uppercase; letter-spacing:0.16em;
  color:var(--black); margin:0 0 24px;
}
.contact-info { padding-top:4px; }
.contact-logo { height:auto; width:78%; max-width:280px; margin-bottom:32px; opacity:0.95; }
.contact-info-row {
  display:grid; grid-template-columns:84px 1fr; gap:14px;
  align-items:baseline; margin-bottom:10px;
  font-size:15px; color:rgba(0,0,0,0.75);
}
.contact-info-label {
  font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.18em;
  color:#999; line-height:1.6;
}
.contact-info-row a { color:var(--black); transition:color 0.2s; }
.contact-info-row a:hover { color:var(--blue); }
.contact-info-value { color:rgba(0,0,0,0.75); line-height:1.5; }

/* Form */
.contact-form { display:flex; flex-direction:column; gap:14px; }
.contact-field { display:flex; flex-direction:column; gap:6px; }
.contact-field > span {
  font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.2em;
  color:#888;
}
.contact-field input, .contact-field textarea {
  font-family:var(--font-body); font-size:14px; color:var(--black);
  padding:12px 14px;
  background:#fff;
  border:0.5px solid rgba(0,0,0,0.15);
  border-radius:4px;
  transition:border-color 0.15s;
  width:100%; box-sizing:border-box;
}
.contact-field input:focus, .contact-field textarea:focus {
  outline:none; border-color:var(--blue);
}
.contact-field textarea { resize:vertical; min-height:120px; }
.contact-hp { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.contact-submit {
  width:auto; align-self:flex-start; margin-top:6px; min-width:160px;
}
.contact-submit:disabled { opacity:0.6; cursor:wait; }
.contact-form-msg {
  font-size:14px; line-height:1.6; padding:6px 0;
  color:rgba(0,0,0,0.7); min-height:1em;
}
.contact-form-msg.is-success { color:#1a7f37; }
.contact-form-msg.is-error   { color:#c92a2a; }

@media(max-width:768px){
  .contact-grid { grid-template-columns:1fr; gap:20px; }
  .contact-info {
    padding-top:0; padding-right:0; padding-bottom:16px;
    border-right:none; border-bottom:1px solid rgba(0,0,0,0.12);
  }
  .contact-info-row:last-child { margin-bottom:0; }
  .contact-form-heading { font-size:16px; margin-bottom:18px; }
  .contact-headline { font-size:clamp(18px,5.5vw,26px); margin-bottom:32px; }
  /* Submit button: center + larger tap target on mobile */
  .contact-submit {
    align-self:center;
    margin:10px auto 0;
    min-width:200px;
    padding:14px 32px;
    font-size:12px;
  }
  .contact-form-msg { text-align:center; }
}
@media(max-width:540px){
  .contact-section { padding:32px 0; }
  .contact-headline { font-size:clamp(18px,5.5vw,24px); margin-bottom:24px; }
  .contact-logo { width:55%; max-width:220px; margin-bottom:20px; }
}

/* FOOTER — dark */
#site-footer { background:var(--black); padding:24px 0 40px; }
.footer-inner { max-width:1240px; margin:0 auto; padding:0 40px; }

/* Two-column grid with vertical divider */
.footer-grid {
  display:grid; grid-template-columns:1fr 1px 1fr;
  gap:64px;
  align-items:start;
}
.footer-grid::after {
  content:''; grid-column:2; grid-row:1;
  width:1px; min-height:100%;
  background:rgba(255,255,255,0.1);
  justify-self:center;
}

/* LEFT: Brand col */
.footer-brand { display:flex; flex-direction:column; }
.footer-logo { display:inline-block; margin-bottom:24px; }
.footer-logo-img { height:72px; width:auto; opacity:1; transition:opacity 0.2s; }
.footer-logo:hover .footer-logo-img { opacity:0.9; }

.footer-section-label {
  font-family:var(--font-body);
  font-size:13px; font-weight:700; letter-spacing:0.18em;
  text-transform:uppercase; color:#fff;
  margin:0 0 10px;
}

/* Social */
.footer-social-icons { display:flex; gap:12px; align-items:center; margin-bottom:24px; }
.footer-social-link {
  width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  transition:background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.footer-social-link:hover {
  background:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.35);
  color:#fff; transform:translateY(-2px);
}
.footer-social-link svg { width:24px; height:24px; }

.footer-copy {
  font-size:12px; color:rgba(242,242,242,0.45); line-height:1.6;
  margin:32px 0 0; text-align:center;
  padding-top:20px; border-top:0.5px solid rgba(255,255,255,0.08);
}
.footer-tagline {
  font-size:11px; letter-spacing:0.2em;
  color:rgba(242,242,242,0.4); text-transform:uppercase;
  margin:0;
}

/* RIGHT: Contact col */
.footer-contact-col { padding-left:8px; }
.footer-contact { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.footer-contact-row {
  display:flex; align-items:center; gap:14px;
  font-size:14px; line-height:1.55; color:rgba(242,242,242,0.75);
}
.footer-contact-icon {
  flex-shrink:0;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(242,242,242,0.85);
}
.footer-contact-icon svg { width:22px; height:22px; }
.footer-contact-row a {
  color:rgba(242,242,242,0.85); transition:color 0.2s;
}
.footer-contact-row a:hover { color:#fff; }

/* MOBILE */
@media(max-width:900px){
  #site-header{height:56px}
  .header-inner{padding:0 20px;gap:0}
  .site-logo-img{height:32px}
  .site-nav{display:none}
  .site-nav.open{display:flex;flex-direction:column;position:fixed;inset:0;background:rgba(2,2,2,0.98);justify-content:center;align-items:center;gap:32px;z-index:200;height:auto}
  .site-nav.open .nav-links{flex-direction:column;gap:24px;height:auto}
  .site-nav.open .nav-links li{height:auto}
  .site-nav.open .nav-links a{font-size:20px;letter-spacing:0.2em;height:auto;padding:0}
  .site-nav.open .nav-links a.active::after,
  .site-nav.open .nav-links .current-menu-item > a::after,
  .site-nav.open .nav-links .current_page_item > a::after{display:none}
  .lang-switch{font-size:10px;padding:5px 10px;margin-right:12px}
  .nav-toggle{display:flex;z-index:300}
  .section-pad{padding:24px 0}
  .films-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr))}
  .carousel-slide{flex:0 0 calc((100% - 16px) / 2)}
  .carousel-arrow{width:30px;height:30px}
  .carousel-arrow svg{width:14px;height:14px}
  .film-overview{padding:32px 0 16px}
  .film-overview-grid{
    grid-template-columns:38% 1fr;
    grid-template-areas:
      "poster meta"
      "crew crew"
      "synopsis synopsis";
    gap:16px 20px;
  }
  /* Break .film-overview-info so children become direct grid items on mobile */
  .film-overview-info     { display:contents; }
  .film-overview-poster   { grid-area:poster; }
  .film-overview-meta-col { grid-area:meta; }
  .film-overview-crew     { grid-area:crew; display:flex; flex-wrap:wrap; gap:14px 24px; margin-top:8px; }
  .film-overview-crew .crew-block { flex:1 1 calc(50% - 12px); min-width:140px; padding:0; }
  .film-overview-crew .crew-cast  { flex:1 1 100%; }
  .film-overview-synopsis { grid-area:synopsis; }
  .showing-inner{grid-template-columns:1fr;gap:16px}
  /* Poster smaller + centered on mobile single-column for visual balance */
  .showing-poster-wrap{max-width:280px;margin-left:auto;margin-right:auto}
  .showing-banner-wrap{max-width:480px;margin-left:auto;margin-right:auto}
  /* Buttons center-aligned on mobile for thumb-friendly UX */
  .showing-ctas{justify-content:center}
  .showing-ctas .btn-primary,
  .showing-ctas .btn-ghost{flex:1 1 0;max-width:180px;text-align:center;justify-content:center}
  .coming-grid{grid-template-columns:1fr 1fr}
  .about-grid{grid-template-columns:1fr;gap:48px}
  .partners-cats{grid-template-columns:1fr 1fr}
  .footer-inner{padding:0 24px}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-grid::after{
    grid-column:1;grid-row:auto;
    width:100%;height:1px;min-height:0;
    background:rgba(255,255,255,0.08);
  }
  .footer-contact-col{padding-left:0}
  .footer-logo-img{height:40px}
  .footer-section-label{font-size:12px;margin-bottom:12px}
  .footer-contact-row{font-size:13px}

  /* HOME HERO mobile: 5:4 image + content below — scoped to .hero-slide only */
  .hero-slide{aspect-ratio:auto;max-height:none;flex-direction:column;align-items:stretch}
  .hero-slide .hero-bg-image{position:relative;inset:auto;aspect-ratio:5/4;width:100%;flex-shrink:0}
  .hero-slide .hero-bg-image::after{background:linear-gradient(to top,rgba(2,2,2,0.45) 0%,transparent 50%)}
  .hero-slide .hero-content{position:relative;background:#fff;padding:18px 20px 28px;text-align:center;color:var(--black);width:100%}
  .hero-slide .hero-eyebrow{color:var(--blue);justify-content:center;margin-bottom:10px}
  .hero-slide .hero-eyebrow::before{background:var(--blue)}
  .hero-slide .hero-title{color:var(--black);font-size:clamp(24px,6.5vw,36px);margin-bottom:16px}
  .hero-slide .hero-ctas{flex-direction:row;gap:10px;align-items:stretch;justify-content:center;flex-wrap:nowrap}
  .hero-slide .hero-ctas .btn-primary,.hero-slide .hero-ctas .btn-ghost{
    padding:10px 22px;font-size:10px;min-width:0;border-radius:4px;
    display:inline-flex;align-items:center;justify-content:center;
  }
  /* When both Buy Tickets + Watch Trailer render, split width 50/50 */
  .hero-slide .hero-ctas-pair{width:100%;max-width:380px;margin-left:auto;margin-right:auto}
  .hero-slide .hero-ctas-pair .btn-primary,
  .hero-slide .hero-ctas-pair .btn-ghost{flex:1 1 0;width:auto}
  .hero-slide .btn-ghost{color:rgba(0,0,0,0.65);border-color:rgba(0,0,0,0.18)}
  .hero-slide .btn-ghost:hover{color:var(--black);border-color:var(--blue)}
  .hero-arrow{width:32px;height:32px;background:rgba(0,0,0,0.4)}
  .hero-arrow-prev{left:8px}
  .hero-arrow-next{right:8px}
  .hero-arrow svg{width:14px;height:14px}
  .hero-dots{bottom:auto;top:calc(80vw - 18px);left:50%;right:auto;transform:translateX(-50%);flex-direction:row;gap:6px}
  .hero-dot{width:22px;height:3px}
  .hero-dot.active{width:32px}

  /* SINGLE-FILM HERO mobile — 20th Century style: image full, smooth gradient, prominent logo, white CTAs */
  .film-hero{aspect-ratio:auto;min-height:88vh;max-height:95vh;background:var(--black)}
  .film-hero .hero-bg-image::after{
    background:linear-gradient(to bottom,
      transparent 0%,
      transparent 35%,
      rgba(0,0,0,0.4) 55%,
      rgba(0,0,0,0.9) 80%,
      #000 100%);
  }
  .film-hero-content{padding:0 24px 44px;align-items:center;text-align:center;width:100%}
  .film-hero-logo{max-width:240px;width:62%;margin-bottom:18px;filter:drop-shadow(0 4px 30px rgba(0,0,0,0.6))}
  .film-hero-title{
    font-size:12px;letter-spacing:0.18em;font-weight:700;
    color:#fff;margin-bottom:22px;text-shadow:0 1px 8px rgba(0,0,0,0.6);
  }
  .film-hero-ctas{flex-direction:column;gap:10px;width:100%;max-width:380px;margin:0 auto;align-items:stretch}
  .film-hero-ctas .btn-primary,.film-hero-ctas .btn-ghost{
    width:100%;max-width:100%;padding:15px 24px;font-size:11px;min-width:0;border-radius:4px;
  }
  /* 20th-style: white solid primary on dark hero */
  .film-hero .btn-primary{background:#fff;color:var(--black);border-color:#fff}
  .film-hero .btn-primary:hover{background:#f0f0f0;color:var(--black)}
  .film-hero .btn-ghost{color:#fff;border-color:rgba(255,255,255,0.6);background:transparent}
  .film-hero .btn-ghost:hover{color:var(--black);background:#fff;border-color:#fff}
}
@media(max-width:540px){
  .film-overview{padding:24px 0 12px}
  .film-overview-grid{gap:16px}
  .film-overview-title{font-size:clamp(24px,7vw,36px);margin-bottom:4px}
  .film-overview-meta{gap:2px 12px;margin-bottom:14px}
  .meta-label{font-size:8px}
  .meta-value{font-size:11px}
  .film-overview-synopsis{margin-top:4px;padding-top:20px}
  .synopsis-heading{font-size:17px;margin-bottom:10px}
  .synopsis-body{font-size:13px;line-height:1.7}
  .crew-block{padding:8px 0}
  .crew-block strong{font-size:12px;margin-bottom:2px}
  .crew-block span{font-size:12px;line-height:1.5}
  .film-overview-crew{margin-bottom:0}
  .film-overview-ctas{gap:8px}
  .film-overview-ctas .btn-primary,.film-overview-ctas .btn-ghost{padding:10px 20px;font-size:10px}
  .film-overview-rating{width:28px;height:28px;font-size:9px;top:8px;right:8px}
  .photo-carousel{gap:8px}
  .coming-grid,.partners-cats,.caps-list,.films-grid{grid-template-columns:1fr}
  .carousel-slide{flex:0 0 100%}
}


/* ─── PARTNERS PAGE ─── */
.partners-intro {
  margin: 0 auto 8px; text-align:center;
}
.partners-intro p {
  font-size:15px; line-height:1.8; color:#555; max-width:720px; margin:0 auto;
}
.partners-group { margin-top:40px; }
.partners-group:first-of-type { margin-top:24px; }
.partners-group-title {
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  font-weight:600; color:#8a8a8a; text-align:center; margin:0 0 20px;
}
@media(max-width:768px){
  .partners-group { margin-top:32px; }
  .partners-intro p { font-size:14px; }
}

/* ─── IN DEVELOPMENT: logline under the title ─── */
.coming-logline {
  font-size:13px; line-height:1.6; color:#777; margin:8px 0 0;
}

/* ─── PRESS MATERIALS (single film) ─── */
.press-inner { text-align:center; margin-top:24px; }
.press-note {
  font-size:14px; line-height:1.8; color:#666;
  max-width:640px; margin:0 auto 24px;
}
.press-actions {
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
}
@media(max-width:540px){
  .press-actions { flex-direction:column; align-items:stretch; }
  .press-actions a { text-align:center; min-height:44px; padding:12px 24px; }
}

/* ─── FOOTER NAV ─── */
.footer-nav { margin-top:32px; }
.footer-nav-links {
  list-style:none; margin:0; padding:0;
  display:flex; flex-wrap:wrap; gap:8px 28px; justify-content:center;
}
.footer-nav-links a {
  font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(242,242,242,0.55); text-decoration:none; transition:color 0.2s;
  display:inline-flex; align-items:center; min-height:44px; padding:0 4px;
}
.footer-nav-links a:hover { color:#fff; }
@media(max-width:768px){
  .footer-nav { margin-top:24px; }
  .footer-nav-links { gap:0 18px; }
  .footer-nav-links a { font-size:11px; }
}


/* ─── CTA BLOCK (bottom of Movies archive) ───────────────────────────────────
   Rhythm runs tight → loose: eyebrow sits close to the headline, the
   supporting line sits close under it, and the only generous gap is the one
   before the button, so the click target is what the spacing points at. */
.contact-section.contact-cta { padding:72px 0 80px; }
.contact-cta .contact-headline {
  font-size:clamp(24px,2.8vw,34px);
  line-height:1.25;
  max-width:640px;
  margin:0 auto 18px;
  text-wrap:balance;        /* keeps the two lines even when it wraps */
}
.contact-cta .contact-sub {
  font-size:15px; line-height:1.75; color:#666;
  max-width:680px;          /* fits the sentence on one line on desktop */
  margin:0 auto 32px;
}
.contact-cta .contact-ctas .btn-primary {
  padding:14px 36px; font-size:11px; letter-spacing:0.14em; min-width:190px;
}
@media(max-width:768px){
  .contact-section.contact-cta { padding:52px 0 60px; }
  .contact-cta .contact-headline { font-size:clamp(21px,5vw,28px); margin-bottom:14px; }
  .contact-cta .contact-sub { font-size:14px; margin-bottom:26px; }
}
@media(max-width:540px){
  .contact-section.contact-cta { padding:44px 0 52px; }
  .contact-cta .contact-label { font-size:10px; letter-spacing:0.18em; }
  .contact-cta .contact-ctas { padding:0 20px; }
  .contact-cta .contact-ctas .btn-primary { width:100%; min-width:0; }
}


/* Visible to screen readers and search engines, invisible on screen. */
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; border:0;
}

/* Language switch: 44px tap target on touch screens without changing its look. */
@media(max-width:768px){
  .lang-switch { min-height:44px; display:inline-flex; align-items:center; }
}
