@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,450;0,9..144,560;0,9..144,650;0,9..144,760;1,9..144,450;1,9..144,600&family=Anton&family=Work+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root{
  /* Brand constants — identical in both themes, used for always-dark
     brand sections (hero, footer, marquee) and solid chips/buttons */
  --maroon-900:#33110b;
  --maroon-800:#4c1c12;
  --maroon-700:#652518;
  --maroon:#832d1d;
  --maroon-600:#9c3a25;
  --maroon-500:#b64a30;
  --gold:#c9962e;
  --gold-soft:#e2c07f;
  --gold-pale:#f1e2bd;
  --cream:#f7f1e6;
  --white:#ffffff;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 26px;
  --container: 1240px;
  --ff-display: 'Fraunces', ui-serif, Georgia, serif;
  --ff-display-2: 'Anton', var(--ff-display);
  --ff-body: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(.22,.85,.32,1);

  /* Theme-aware tokens — dark is the default palette */
  --paper:#20120a;
  --cream-2:#2c1a10;
  --ink:#f2e9dc;
  --ink-soft:#cbb9a8;
  --ink-faint:#96806c;
  --heading:#f7f1e6;
  --accent:#deb567;
  --line: rgba(247,241,230,.14);
  --header-bg: rgba(21,12,7,.8);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 14px 34px rgba(0,0,0,.45);
  --shadow-lg: 0 26px 68px rgba(0,0,0,.58);
  color-scheme: dark;
}

:root[data-theme="light"]{
  --paper:#fffcf6;
  --cream-2:#efe4cf;
  --ink:#241509;
  --ink-soft:#5c4a3c;
  --ink-faint:#8a7969;
  --heading:#33110b;
  --accent:#832d1d;
  --line: rgba(36,21,9,.12);
  --header-bg: rgba(255,252,246,.86);
  --shadow-sm: 0 2px 10px rgba(51,17,11,.08);
  --shadow-md: 0 12px 32px rgba(51,17,11,.14);
  --shadow-lg: 0 24px 64px rgba(51,17,11,.22);
  color-scheme: light;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:inherit; }
h1,h2,h3,h4{ font-family:var(--ff-display); margin:0; font-weight:650; letter-spacing:-.01em; color:var(--heading); }
p{ margin:0; }
.container{ max-width:var(--container); margin-inline:auto; padding-inline:clamp(20px,4vw,56px); }
section{ position:relative; }

::selection{ background:var(--gold-soft); color:var(--maroon-900); }

/* Reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ==========================================================================
   Texture: bogolan-inspired diamond watermark
   ========================================================================== */
.texture{
  position:absolute; inset:0; pointer-events:none;
  background-image:
    radial-gradient(circle at 8px 8px, currentColor 1.4px, transparent 1.6px);
  background-size:34px 34px;
  opacity:.06;
  color:var(--maroon-900);
}
.texture-gold{ color:var(--gold); }

.diamond-row{
  position:absolute; inset:0; pointer-events:none; overflow:hidden; opacity:.5;
}
.diamond-row svg{ position:absolute; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border-radius:999px; border:1.5px solid transparent;
  font-family:var(--ff-body); font-weight:700; font-size:.86rem; letter-spacing:.02em;
  text-transform:uppercase; white-space:nowrap;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  position:relative; isolation:isolate; overflow:hidden;
}
.btn-primary{ background:var(--maroon); color:var(--cream); box-shadow:var(--shadow-sm); }
.btn-primary::after{
  content:''; position:absolute; inset:0; z-index:-1; background:var(--maroon-600);
  transform:translateY(100%); transition:transform .4s var(--ease);
}
.btn-primary:hover::after{ transform:translateY(0); }
.btn-primary:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); }

.btn-gold{ background:var(--gold); color:var(--maroon-900); box-shadow:var(--shadow-sm); }
.btn-gold:hover{ background:#d6a83e; transform:translateY(-2px); box-shadow:var(--shadow-md); }

.btn-outline{ background:transparent; border-color:currentColor; color:var(--maroon); }
.btn-outline:hover{ background:var(--maroon); color:var(--cream); transform:translateY(-2px); }

.btn-ghost-light{ background:rgba(255,255,255,.08); color:var(--cream); border-color:rgba(247,241,230,.35); backdrop-filter:blur(6px); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.18); border-color:var(--cream); }

.btn-sm{ padding:10px 20px; font-size:.72rem; }
.btn[disabled]{ opacity:.45; pointer-events:none; }
.btn svg{ width:16px; height:16px; }

.link-underline{
  position:relative; padding-bottom:2px; font-weight:600;
}
.link-underline::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1.5px; background:currentColor;
  transition:right .35s var(--ease);
}
.link-underline:hover::after{ right:0; }

/* ==========================================================================
   Eyebrow / tags
   ========================================================================== */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.74rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent);
}
.eyebrow::before{
  content:''; width:26px; height:2px; background:var(--gold); display:block;
}
.tag{
  display:inline-flex; align-items:center; padding:5px 12px; border-radius:999px;
  font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  background:var(--cream-2); color:var(--accent); border:1px solid var(--line);
}
.tag-gold{ background:var(--gold); color:var(--maroon-900); border-color:transparent; }
.tag-outline{ background:transparent; border:1px solid rgba(247,241,230,.5); color:var(--cream); }

/* ==========================================================================
   Header
   ========================================================================== */
.marquee-bar{
  background:var(--maroon-900); color:var(--gold-pale); overflow:hidden;
  font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  border-bottom:1px solid rgba(201,150,46,.25);
}
.marquee-track{
  display:flex; width:max-content; gap:48px; padding:9px 0;
  animation:marquee 32s linear infinite;
}
.marquee-track span{ display:flex; align-items:center; gap:48px; white-space:nowrap; }
.marquee-track span::after{ content:'✦'; color:var(--gold); margin-left:48px; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--header-bg); backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid transparent;
  transition:border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled{ border-color:var(--line); box-shadow:0 6px 24px rgba(51,17,11,.08); }
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap:24px; padding-block:12px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:46px; width:auto; }
.brand-word{ font-family:var(--ff-display); font-weight:650; font-size:1.02rem; line-height:1.1; color:var(--heading); }
.brand-word small{ display:block; font-family:var(--ff-body); font-weight:600; font-size:.6rem; letter-spacing:.16em; color:var(--gold); text-transform:uppercase; margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:.82rem; font-weight:600; letter-spacing:.02em; color:var(--ink-soft);
  position:relative; padding:6px 0; transition:color .25s;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--maroon);
  transition:width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color:var(--heading); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:transparent; border:1px solid var(--line); color:var(--heading); transition:.25s;
}
.icon-btn:hover{ background:var(--cream-2); }
.burger{ display:none; }

.theme-toggle{ position:relative; }
.theme-toggle .icon-sun{ display:none; }
.theme-toggle .icon-moon{ display:block; }
[data-theme="light"] .theme-toggle .icon-sun{ display:block; }
[data-theme="light"] .theme-toggle .icon-moon{ display:none; }

@media (max-width:980px){
  .nav-links{ display:none; }
  .burger{
    display:flex; width:42px; height:42px; align-items:center; justify-content:center;
    border-radius:50%; border:1px solid var(--line); background:transparent;
  }
}

/* Mobile drawer */
.drawer{
  position:fixed; inset:0; z-index:200; visibility:hidden;
}
.drawer.open{ visibility:visible; }
.drawer-backdrop{
  position:absolute; inset:0; background:rgba(36,21,9,.5); opacity:0; transition:opacity .35s;
}
.drawer.open .drawer-backdrop{ opacity:1; }
.drawer-panel{
  position:absolute; top:0; right:0; height:100%; width:min(340px,84vw);
  background:var(--paper); padding:26px 26px 40px; transform:translateX(100%);
  transition:transform .45s var(--ease); display:flex; flex-direction:column; gap:6px;
  box-shadow:var(--shadow-lg);
}
.drawer.open .drawer-panel{ transform:translateX(0); }
.drawer-panel a{ padding:14px 4px; font-family:var(--ff-display); font-size:1.3rem; font-weight:560; border-bottom:1px solid var(--line); color:var(--heading); }
.drawer-close{ align-self:flex-end; width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom:14px; background:none; }

/* ==========================================================================
   Buttons ticket-notch card
   ========================================================================== */
.ticket-edge{ position:relative; }
.ticket-edge::before,.ticket-edge::after{
  content:''; position:absolute; width:22px; height:22px; background:var(--paper); border-radius:50%;
  top:50%; transform:translateY(-50%); z-index:2;
}
.ticket-edge::before{ left:-11px; }
.ticket-edge::after{ right:-11px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--maroon-900); color:var(--cream); position:relative; overflow:hidden; }
.site-footer .texture{ color:var(--gold); opacity:.05; }
.footer-top{ padding:76px 0 48px; display:grid; grid-template-columns:1.4fr .8fr .8fr 1fr; gap:40px; position:relative; }
.footer-brand-word{ font-family:var(--ff-display); font-size:1.5rem; color:var(--cream); margin-bottom:14px; }
.footer-tag{ color:var(--gold-pale); font-size:.92rem; line-height:1.6; max-width:32ch; }
.footer-col h5{ font-family:var(--ff-body); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; font-weight:700; }
.footer-col a, .footer-col p{ display:block; color:rgba(247,241,230,.78); font-size:.88rem; margin-bottom:11px; transition:color .25s; }
.footer-col a:hover{ color:var(--cream); }
.footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(247,241,230,.28); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--maroon-900); }
.footer-pay{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.footer-pay span{ font-size:.68rem; font-weight:700; padding:6px 10px; border-radius:6px; background:rgba(247,241,230,.1); letter-spacing:.03em; }
.footer-bottom{
  border-top:1px solid rgba(247,241,230,.14); padding:22px 0; display:flex; justify-content:space-between;
  font-size:.76rem; color:rgba(247,241,230,.55); flex-wrap:wrap; gap:10px;
}
.newsletter-form{ display:flex; margin-top:6px; border-bottom:1.5px solid rgba(247,241,230,.35); padding-bottom:8px; max-width:280px; }
.newsletter-form input{ background:none; border:none; color:var(--cream); flex:1; outline:none; font-size:.86rem; }
.newsletter-form input::placeholder{ color:rgba(247,241,230,.45); }
.newsletter-form button{ background:none; border:none; color:var(--gold); font-weight:700; }

@media(max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-top{ grid-template-columns:1fr; } }

/* ==========================================================================
   Utility layout
   ========================================================================== */
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:40px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(1.9rem,3.2vw,2.7rem); margin-top:10px; }
.grid{ display:grid; gap:28px; }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media(max-width:1080px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:640px){ .grid-4,.grid-3,.grid-2{ grid-template-columns:1fr; } }

.pill-scroll{ display:flex; gap:10px; overflow-x:auto; padding-bottom:6px; scrollbar-width:none; }
.pill-scroll::-webkit-scrollbar{ display:none; }
.filter-pill{
  padding:10px 20px; border-radius:999px; border:1.5px solid var(--line); background:var(--paper);
  font-size:.8rem; font-weight:600; white-space:nowrap; transition:.25s; color:var(--ink);
}
.filter-pill.active,.filter-pill:hover{ background:var(--maroon); color:var(--cream); border-color:var(--maroon); }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-hero{
  background:var(--maroon-900); color:var(--cream); padding:120px 0 70px; position:relative; overflow:hidden;
}
.page-hero .eyebrow{ color:var(--gold-soft); }
.page-hero .eyebrow::before{ background:var(--gold); }
.page-hero h1{ color:var(--cream); font-size:clamp(2.4rem,5vw,4rem); margin-top:14px; max-width:16ch; }
.page-hero p.lead{ color:rgba(247,241,230,.72); max-width:56ch; margin-top:18px; font-size:1.05rem; line-height:1.7; }
.breadcrumb{ font-size:.76rem; color:rgba(247,241,230,.55); letter-spacing:.04em; }
.breadcrumb a:hover{ color:var(--gold); }

/* ==========================================================================
   Movie cards
   ========================================================================== */
.movie-card{ position:relative; }
.movie-poster{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:2/3; background:var(--cream-2);
  box-shadow:var(--shadow-sm); transition:box-shadow .4s var(--ease);
}
.movie-card:hover .movie-poster{ box-shadow:var(--shadow-lg); }
.movie-poster img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.movie-card:hover .movie-poster img{ transform:scale(1.07); }
.movie-poster-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(51,17,11,.92) 0%, rgba(51,17,11,.35) 46%, rgba(51,17,11,0) 68%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:18px; opacity:0; transition:opacity .4s;
}
.movie-card:hover .movie-poster-overlay{ opacity:1; }
.movie-poster-overlay .btn{ width:100%; }
.movie-badge{
  position:absolute; top:12px; left:12px; z-index:2; padding:5px 11px; border-radius:999px;
  background:var(--gold); color:var(--maroon-900); font-size:.64rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
}
.movie-meta-title{ font-family:var(--ff-display); font-size:1.06rem; font-weight:600; margin-top:14px; color:var(--heading); }
.movie-meta-sub{ font-size:.78rem; color:var(--ink-faint); margin-top:5px; display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.movie-meta-sub .dot{ width:3px; height:3px; background:var(--ink-faint); border-radius:50%; }

/* ==========================================================================
   Home hero (editorial split)
   ========================================================================== */
.hero{
  background:var(--maroon-900); color:var(--cream); position:relative; overflow:hidden;
  padding-top:56px;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:40px; min-height:78vh; padding-block:40px; position:relative;
}
.hero-index{ font-family:var(--ff-display); font-size:.95rem; color:var(--gold-soft); letter-spacing:.1em; margin-bottom:22px; display:flex; gap:10px; align-items:center; }
.hero-index b{ color:var(--gold); font-size:1.1rem; }
.hero h1{
  color:var(--cream); font-size:clamp(2.6rem,5.4vw,4.6rem); line-height:1.02; font-weight:650;
}
.hero h1 em{ font-style:italic; color:var(--gold-soft); font-weight:450; }
.hero .lead{ color:rgba(247,241,230,.72); max-width:46ch; margin-top:22px; font-size:1.06rem; line-height:1.75; }
.hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; align-items:center; }
.hero-meta-row{ display:flex; gap:28px; margin-top:56px; flex-wrap:wrap; }
.hero-meta-row div{ border-left:2px solid var(--gold); padding-left:14px; }
.hero-meta-row b{ display:block; font-family:var(--ff-display); font-size:1.4rem; color:var(--cream); }
.hero-meta-row span{ font-size:.72rem; color:rgba(247,241,230,.6); letter-spacing:.04em; }

.hero-visual{ position:relative; display:flex; justify-content:center; }
.hero-poster-stack{ position:relative; width:min(360px,88%); aspect-ratio:2/3; }
.hero-poster-stack .p1,.hero-poster-stack .p2,.hero-poster-stack .p3{
  position:absolute; inset:0; border-radius:22px; overflow:hidden; box-shadow:var(--shadow-lg);
  transition:transform .6s var(--ease);
}
.hero-poster-stack .p1{ transform:rotate(-7deg) translate(-34px,10px) scale(.92); filter:brightness(.7); z-index:1; }
.hero-poster-stack .p3{ transform:rotate(7deg) translate(34px,10px) scale(.92); filter:brightness(.7); z-index:1; }
.hero-poster-stack .p2{ z-index:2; }
.hero-poster-stack img{ width:100%; height:100%; object-fit:cover; }
.hero-poster-stack .p2::after{
  content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(51,17,11,.85) 100%);
}
.hero-play{
  position:absolute; bottom:20px; left:20px; right:20px; z-index:3; color:var(--cream);
}
.hero-play .btn-gold{ margin-top:12px; }
.hero-play b{ font-family:var(--ff-display); font-size:1.3rem; display:block; }

.hero-ring{
  position:absolute; width:520px; height:520px; border:1.5px solid var(--gold); border-radius:50%; opacity:.18;
  right:-160px; top:-120px;
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats-band{ background:var(--cream-2); padding:64px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stats-band .grid{ text-align:center; }
.stat b{ font-family:var(--ff-display); font-size:clamp(2.2rem,4vw,3.2rem); color:var(--accent); display:block; }
.stat span{ font-size:.76rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; display:block; margin-top:8px; }

/* ==========================================================================
   Loyalty / feature cards
   ========================================================================== */
.feature-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:34px 28px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.feature-icon{
  width:52px; height:52px; border-radius:14px; background:var(--maroon); color:var(--cream);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.feature-icon svg{ width:24px; height:24px; }
.feature-card h3{ font-size:1.18rem; margin-bottom:10px; }
.feature-card p{ color:var(--ink-soft); font-size:.9rem; line-height:1.65; }

.band-dark{ background:var(--maroon-900); color:var(--cream); }
.band-dark h2, .band-dark h3{ color:var(--cream); }
.band-dark .feature-card{ background:rgba(255,255,255,.04); border-color:rgba(247,241,230,.14); }
.band-dark .feature-card p{ color:rgba(247,241,230,.68); }
.band-dark .feature-card:hover{ border-color:var(--gold); }

/* ==========================================================================
   Events / horizontal strip
   ========================================================================== */
.event-card{
  display:grid; grid-template-columns:110px 1fr auto; gap:22px; align-items:center;
  padding:22px; border-radius:var(--radius); border:1px solid var(--line); background:var(--paper);
  transition:.3s;
}
.event-card:hover{ border-color:var(--maroon); box-shadow:var(--shadow-sm); }
.event-date{ text-align:center; background:var(--cream-2); border-radius:10px; padding:12px 8px; }
.event-date b{ display:block; font-family:var(--ff-display); font-size:1.6rem; color:var(--accent); line-height:1; }
.event-date span{ font-size:.68rem; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-soft); }
.event-card h4{ font-size:1.06rem; margin-bottom:6px; }
.event-card p{ font-size:.82rem; color:var(--ink-faint); }
@media(max-width:640px){ .event-card{ grid-template-columns:70px 1fr; } .event-card .btn{ grid-column:1/-1; } }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background:linear-gradient(120deg, var(--maroon) 0%, var(--maroon-700) 100%); color:var(--cream);
  border-radius:var(--radius-lg); padding:64px clamp(24px,6vw,80px); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-band h2{ color:var(--cream); font-size:clamp(1.8rem,3vw,2.5rem); max-width:18ch; }
.cta-band p{ color:rgba(247,241,230,.75); margin-top:10px; max-width:44ch; }

/* ==========================================================================
   Footer marquee divider (perforation)
   ========================================================================== */
.perforation{
  height:26px; background-image:radial-gradient(circle, var(--paper) 6px, transparent 6.5px);
  background-size:28px 28px; background-position:center; background-repeat:repeat-x;
}

/* ==========================================================================
   Buttons: play icon
   ========================================================================== */
.play-btn{
  width:64px; height:64px; border-radius:50%; background:rgba(247,241,230,.14); border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; color:var(--gold); transition:.3s;
}
.play-btn:hover{ background:var(--gold); color:var(--maroon-900); transform:scale(1.06); }
.play-btn svg{ width:20px; height:20px; margin-left:3px; }

/* ==========================================================================
   Films listing page
   ========================================================================== */
.films-toolbar{ display:flex; justify-content:space-between; gap:20px; align-items:center; margin-bottom:36px; flex-wrap:wrap; }
.search-box{ position:relative; }
.search-box input{
  width:280px; max-width:60vw; padding:12px 16px 12px 42px; border-radius:999px; border:1.5px solid var(--line);
  background:var(--paper); font-size:.86rem; outline:none; transition:border-color .25s; color:var(--ink);
}
.search-box input:focus{ border-color:var(--maroon); }
.search-box svg{ position:absolute; left:15px; top:50%; transform:translateY(-50%); width:16px; height:16px; color:var(--ink-faint); }

/* ==========================================================================
   Film detail
   ========================================================================== */
.film-hero{ background:var(--maroon-900); color:var(--cream); padding:130px 0 0; position:relative; overflow:hidden; }
.film-hero-grid{ display:grid; grid-template-columns:300px 1fr; gap:52px; padding-bottom:60px; position:relative; }
.film-poster-big{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:2/3; }
.film-poster-big img{ width:100%; height:100%; object-fit:cover; }
.film-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.film-hero h1{ color:var(--cream); font-size:clamp(2rem,4vw,3.2rem); max-width:20ch; }
.film-info-row{ display:flex; gap:26px; margin-top:20px; flex-wrap:wrap; color:rgba(247,241,230,.72); font-size:.86rem; }
.film-info-row div{ display:flex; align-items:center; gap:8px; }
.film-info-row svg{ width:16px; height:16px; color:var(--gold); }
.film-synopsis{ margin-top:26px; max-width:64ch; color:rgba(247,241,230,.8); line-height:1.8; }
.film-hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }

@media(max-width:840px){ .film-hero-grid{ grid-template-columns:180px 1fr; gap:28px; } }
@media(max-width:600px){ .film-hero-grid{ grid-template-columns:1fr; } .film-poster-big{ width:150px; margin:0 auto; } }

/* Showtime picker */
.showtimes{ padding:60px 0 90px; }
.day-tabs{ display:flex; gap:10px; overflow-x:auto; margin-bottom:32px; }
.day-tab{
  flex:0 0 auto; padding:12px 18px; border-radius:14px; border:1.5px solid var(--line); background:var(--paper);
  text-align:center; min-width:66px; transition:.25s; color:var(--ink);
}
.day-tab b{ display:block; font-family:var(--ff-display); font-size:1.2rem; }
.day-tab span{ font-size:.68rem; text-transform:uppercase; color:var(--ink-faint); }
.day-tab.active,.day-tab:hover{ background:var(--maroon); border-color:var(--maroon); color:var(--cream); }
.day-tab.active span,.day-tab:hover span{ color:rgba(247,241,230,.7); }

.room-block{ border:1px solid var(--line); border-radius:var(--radius); padding:26px; margin-bottom:20px; }
.room-block-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; flex-wrap:wrap; gap:10px; }
.room-block-head h4{ font-size:1.1rem; }
.room-block-head span{ font-size:.78rem; color:var(--ink-faint); }
.time-slots{ display:flex; gap:12px; flex-wrap:wrap; }
.time-slot{
  padding:12px 20px; border-radius:10px; border:1.5px solid var(--line); background:var(--paper);
  font-weight:700; font-size:.92rem; transition:.25s; display:flex; flex-direction:column; align-items:center; gap:3px;
  color:var(--ink);
}
.time-slot span{ font-size:.64rem; font-weight:600; color:var(--ink-faint); text-transform:uppercase; }
.time-slot:hover{ border-color:var(--maroon); }
.time-slot.selected{ background:var(--maroon); border-color:var(--maroon); color:var(--cream); }
.time-slot.selected span{ color:var(--gold-soft); }

/* ==========================================================================
   Booking / seat map
   ========================================================================== */
.booking-wrap{ padding:130px 0 90px; }
.steps{ display:flex; gap:0; margin-bottom:50px; max-width:640px; }
.step{ flex:1; text-align:center; position:relative; }
.step::before{
  content:''; position:absolute; top:15px; left:-50%; width:100%; height:2px; background:var(--line); z-index:0;
}
.step:first-child::before{ display:none; }
.step.done::before, .step.active::before{ background:var(--maroon); }
.step-dot{
  width:32px; height:32px; border-radius:50%; background:var(--paper); border:2px solid var(--line);
  display:flex; align-items:center; justify-content:center; margin:0 auto 10px; position:relative; z-index:1;
  font-weight:700; font-size:.82rem; color:var(--ink-faint);
}
.step.active .step-dot{ border-color:var(--maroon); background:var(--maroon); color:var(--cream); }
.step.done .step-dot{ border-color:var(--maroon); background:var(--maroon); color:var(--gold-soft); }
.step span.label{ font-size:.72rem; font-weight:600; color:var(--ink-faint); text-transform:uppercase; letter-spacing:.04em; }
.step.active span.label{ color:var(--maroon); }

.booking-grid{ display:grid; grid-template-columns:1fr 360px; gap:44px; align-items:start; }
@media(max-width:900px){ .booking-grid{ grid-template-columns:1fr; } }

.screen-wrap{ text-align:center; margin-bottom:50px; }
.screen{
  height:10px; width:min(560px,90%); margin:0 auto; border-radius:50%;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow:0 22px 40px -12px var(--gold-soft);
}
.screen-label{ font-size:.68rem; letter-spacing:.3em; color:var(--ink-faint); margin-top:14px; text-transform:uppercase; }

.seat-map{ display:flex; flex-direction:column; align-items:center; gap:10px; margin-bottom:30px; }
.seat-row{ display:flex; gap:9px; align-items:center; }
.seat-row-label{ width:20px; font-size:.72rem; color:var(--ink-faint); font-weight:700; }
.seat{
  width:28px; height:28px; border-radius:7px 7px 10px 10px; border:1.5px solid var(--line); background:var(--paper);
  transition:.2s; cursor:pointer;
}
.seat:hover{ border-color:var(--maroon); }
.seat.taken{ background:var(--cream-2); border-color:var(--cream-2); cursor:not-allowed; }
.seat.selected{ background:var(--maroon); border-color:var(--maroon); }
.seat.gap{ visibility:hidden; width:16px; }
.seat-legend{ display:flex; gap:22px; justify-content:center; flex-wrap:wrap; font-size:.78rem; color:var(--ink-soft); margin-top:16px; }
.seat-legend div{ display:flex; align-items:center; gap:8px; }
.seat-legend .seat{ width:16px; height:16px; pointer-events:none; }

.summary-card{
  border:1px solid var(--line); border-radius:var(--radius); padding:28px; position:sticky; top:110px;
  background:var(--paper); box-shadow:var(--shadow-sm);
}
.summary-card h4{ font-size:1.1rem; margin-bottom:18px; }
.summary-row{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line); font-size:.88rem; }
.summary-row span:last-child{ font-weight:700; color:var(--heading); }
.summary-total{ display:flex; justify-content:space-between; padding-top:16px; font-family:var(--ff-display); font-size:1.3rem; color:var(--accent); }
.summary-card .btn{ width:100%; margin-top:20px; }
.summary-empty{ font-size:.84rem; color:var(--ink-faint); text-align:center; padding:18px 0; }

/* ==========================================================================
   Payment
   ========================================================================== */
.pay-methods{ display:grid; gap:16px; }
.pay-method{
  display:flex; align-items:center; gap:16px; padding:20px; border:1.5px solid var(--line); border-radius:var(--radius);
  cursor:pointer; transition:.25s; position:relative;
}
.pay-method:hover{ border-color:var(--maroon-500); }
.pay-method.selected{ border-color:var(--maroon); background:var(--cream-2); }
.pay-method .pay-logo{ width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.72rem; color:#fff; text-align:center; }
.pay-method h5{ font-size:.98rem; margin-bottom:4px; }
.pay-method p{ font-size:.78rem; color:var(--ink-faint); }
.pay-method .radio{ margin-left:auto; width:20px; height:20px; border-radius:50%; border:2px solid var(--line); position:relative; flex:0 0 auto; }
.pay-method.selected .radio{ border-color:var(--maroon); }
.pay-method.selected .radio::after{ content:''; position:absolute; inset:3px; border-radius:50%; background:var(--maroon); }
.pay-method.disabled{ opacity:.5; pointer-events:none; }
.pay-method .soon{ margin-left:10px; }

.phone-input{ margin-top:22px; display:flex; align-items:center; border:1.5px solid var(--line); border-radius:12px; overflow:hidden; }
.phone-input .prefix{ background:var(--cream-2); padding:15px 14px; font-weight:700; font-size:.86rem; color:var(--ink-soft); }
.phone-input input{ border:none; padding:15px; flex:1; outline:none; font-size:.95rem; color:var(--ink); background:transparent; }

/* ==========================================================================
   Ticket / confirmation
   ========================================================================== */
.confirm-wrap{ padding:130px 0 100px; display:flex; justify-content:center; }
.check-circle{
  width:78px; height:78px; border-radius:50%; background:var(--maroon); display:flex; align-items:center;
  justify-content:center; margin:0 auto 22px; color:var(--gold-soft);
}
.check-circle svg{ width:36px; height:36px; }
.ticket{
  width:min(440px,100%); background:var(--paper); border-radius:22px; box-shadow:var(--shadow-lg); overflow:hidden;
  position:relative; border:1px solid var(--line);
}
.ticket-top{ background:var(--maroon-900); color:var(--cream); padding:26px 26px 34px; display:flex; gap:16px; }
.ticket-top img{ width:70px; height:100px; object-fit:cover; border-radius:8px; }
.ticket-top h3{ color:var(--cream); font-size:1.2rem; }
.ticket-top p{ font-size:.78rem; color:rgba(247,241,230,.65); margin-top:6px; }
.ticket-perf{ position:relative; height:0; }
.ticket-perf .notch{ position:absolute; width:26px; height:26px; background:var(--paper); border-radius:50%; top:-13px; }
.ticket-perf .notch.left{ left:-13px; }
.ticket-perf .notch.right{ right:-13px; }
.ticket-perf .dash{ position:absolute; top:0; left:26px; right:26px; border-top:2px dashed var(--line); }
.ticket-bottom{ padding:34px 26px 30px; }
.ticket-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:26px; }
.ticket-grid div span{ display:block; font-size:.64rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:5px; }
.ticket-grid div b{ font-family:var(--ff-display); font-size:1.05rem; color:var(--heading); }
.qr-wrap{ display:flex; flex-direction:column; align-items:center; gap:10px; }
.qr-wrap p{ font-size:.68rem; color:var(--ink-faint); letter-spacing:.04em; }
.ticket-code{ font-size:.72rem; letter-spacing:.1em; color:var(--ink-faint); text-align:center; margin-top:10px; }

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-head{
  width:100%; background:none; border:none; display:flex; justify-content:space-between; align-items:center;
  padding:22px 4px; text-align:left; font-family:var(--ff-display); font-size:1.08rem; color:var(--heading);
}
.accordion-head svg{ width:18px; height:18px; flex:0 0 auto; transition:transform .35s var(--ease); color:var(--accent); }
.accordion-item.open .accordion-head svg{ transform:rotate(45deg); }
.accordion-body{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.accordion-body-inner{ padding:0 4px 22px; color:var(--ink-soft); font-size:.9rem; line-height:1.7; max-width:64ch; }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.78rem; font-weight:700; margin-bottom:8px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.04em; }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:10px; border:1.5px solid var(--line); background:var(--paper);
  outline:none; transition:border-color .25s; font-size:.92rem; color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--maroon); }
.field textarea{ resize:vertical; min-height:120px; }

.contact-card{ display:flex; gap:16px; padding:22px; border:1px solid var(--line); border-radius:var(--radius); margin-bottom:16px; }
.contact-card .ic{ width:44px; height:44px; border-radius:12px; background:var(--cream-2); color:var(--accent); display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.contact-card h5{ font-size:.96rem; margin-bottom:5px; }
.contact-card p{ font-size:.84rem; color:var(--ink-soft); }

.map-panel{
  aspect-ratio:4/3; border-radius:var(--radius); background:var(--maroon-900); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; color:var(--cream);
}
.map-pin{ position:relative; z-index:1; text-align:center; }
.map-pin svg{ width:40px; height:40px; color:var(--gold); }

/* ==========================================================================
   Salle cards (About)
   ========================================================================== */
.salle-card{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); }
.salle-card-head{ background:var(--maroon); color:var(--cream); padding:30px 26px; position:relative; overflow:hidden; }
.salle-card-head h3{ color:var(--cream); font-size:1.4rem; }
.salle-card-body{ padding:24px 26px; }
.salle-spec{ display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--line); font-size:.86rem; }
.salle-spec:last-child{ border-bottom:none; }
.salle-spec b{ color:var(--heading); }

/* Timeline (histoire) */
.timeline{ position:relative; padding-left:34px; }
.timeline::before{ content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background:var(--line); }
.timeline-item{ position:relative; padding-bottom:34px; }
.timeline-item::before{ content:''; position:absolute; left:-34px; top:4px; width:14px; height:14px; border-radius:50%; background:var(--gold); border:3px solid var(--paper); box-shadow:0 0 0 2px var(--maroon); }
.timeline-item b{ display:block; font-family:var(--ff-display); color:var(--accent); font-size:1.1rem; margin-bottom:4px; }
.timeline-item p{ font-size:.88rem; color:var(--ink-soft); line-height:1.6; max-width:60ch; }

/* Toast (demo feedback) */
.toast{
  position:fixed; bottom:26px; left:50%; transform:translate(-50%,120%); background:var(--maroon-900); color:var(--cream);
  padding:16px 24px; border-radius:12px; font-size:.86rem; box-shadow:var(--shadow-lg); z-index:400; transition:transform .4s var(--ease);
  display:flex; align-items:center; gap:10px;
}
.toast.show{ transform:translate(-50%,0); }
.toast svg{ width:18px; height:18px; color:var(--gold); }

/* Misc */
.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media(max-width:860px){ .two-col{ grid-template-columns:1fr; gap:36px; } }

@media(max-width:900px){
  .hero-grid{ grid-template-columns:1fr; min-height:auto; padding-top:10px; }
  .hero-visual{ order:-1; }
}

/* ==========================================================================
   Hero v2 — full-bleed cinematic homepage hero (Pathé-inspired)
   ========================================================================== */
.hero-v2{
  position:relative; background:var(--maroon-900); overflow:hidden;
  isolation:isolate;
}
.hero-v2-art{ position:absolute; inset:0; z-index:0; }
.hero-v2-art .art-frame{ position:absolute; top:0; right:0; bottom:0; width:64%; overflow:hidden; }
.hero-v2-art img{
  width:100%; height:100%; object-fit:cover; object-position:center 18%;
  transition:opacity .7s var(--ease), transform 8s linear;
  transform:scale(1.02);
}
.hero-v2-art .scrim-x{
  position:absolute; inset:0;
  background:linear-gradient(90deg, var(--maroon-900) 0%, rgba(51,17,11,.88) 26%, rgba(51,17,11,.32) 52%, rgba(51,17,11,0) 74%);
}
.hero-v2-art .scrim-y{
  position:absolute; inset:0;
  background:linear-gradient(0deg, var(--maroon-900) 0%, rgba(51,17,11,0) 30%, rgba(51,17,11,0) 78%, rgba(51,17,11,.5) 100%);
}
.hero-v2-glow{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(ellipse 700px 500px at 18% 15%, rgba(201,150,46,.14), transparent 65%);
}

.hero-v2 .container{
  position:relative; z-index:2; display:grid; grid-template-rows:1fr auto;
  min-height:88vh; padding-top:132px; padding-bottom:44px;
}
.hero-v2-content{ align-self:center; max-width:660px; padding-bottom:20px; }
.hero-v2-eyebrow{
  display:inline-flex; align-items:center; gap:10px; font-size:.76rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:22px;
}
.hero-v2-eyebrow::before{ content:''; width:26px; height:2px; background:var(--gold); display:block; }
.hero-v2-title{
  font-family:var(--ff-display-2); text-transform:uppercase; color:var(--cream);
  font-size:clamp(2.6rem,7vw,5.4rem); line-height:.96; letter-spacing:.005em;
  text-shadow:3px 4px 0 rgba(20,10,5,.4);
}
.hero-v2-title .line{ display:block; }
.hero-v2-title .line.gold{ color:var(--gold); }
.hero-v2-meta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:26px; }
.hero-v2-desc{ color:rgba(247,241,230,.75); max-width:52ch; margin-top:20px; font-size:1rem; line-height:1.75; }
.hero-v2-actions{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; align-items:center; }

.hero-v2-bar{
  align-self:end; position:relative; z-index:3;
  background:rgba(15,8,5,.66); border:1px solid rgba(247,241,230,.16); border-radius:20px;
  padding:20px clamp(18px,3vw,30px); backdrop-filter:blur(12px);
  display:flex; align-items:center; gap:22px; flex-wrap:wrap; box-shadow:var(--shadow-lg);
}
.hero-v2-bar-label{ display:flex; align-items:center; gap:14px; flex:1 1 280px; min-width:0; }
.hero-v2-bar-label svg{ flex:0 0 auto; width:18px; height:18px; color:var(--gold); }
.hero-v2-bar-select-wrap{ display:flex; flex-direction:column; min-width:0; flex:1; }
.hero-v2-bar-select-wrap span{ font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(247,241,230,.5); margin-bottom:2px; }
.hero-v2-bar select{
  background:none; border:none; color:var(--cream); font-family:var(--ff-body); font-weight:700;
  font-size:1rem; outline:none; cursor:pointer; max-width:100%; text-overflow:ellipsis;
}
.hero-v2-bar select option{ color:#1a0f08; }
.hero-v2-bar-actions{ display:flex; gap:12px; flex-wrap:wrap; }

@media(max-width:760px){
  .hero-v2-art .art-frame{ width:100%; }
  .hero-v2-art .scrim-x{ background:linear-gradient(0deg, var(--maroon-900) 8%, rgba(51,17,11,.7) 45%, rgba(51,17,11,.35) 100%); }
  .hero-v2 .container{ padding-top:118px; min-height:auto; }
  .hero-v2-content{ padding-top:38vh; }
  .hero-v2-bar{ flex-direction:column; align-items:stretch; }
  .hero-v2-bar-actions .btn{ width:100%; }
}

/* ==========================================================================
   Photo hero — full-bleed lifestyle carousel (homepage)
   ========================================================================== */
.photo-hero{ position:relative; height:88vh; min-height:600px; max-height:840px; overflow:hidden; background:var(--maroon-900); isolation:isolate; }
.photo-hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 1.2s var(--ease), visibility 1.2s;
}
.photo-hero-slide.active{ opacity:1; visibility:visible; z-index:1; }
.photo-hero-slide img{
  width:100%; height:100%; object-fit:cover; object-position:center 30%;
  transform:scale(1.06); transition:transform 7s linear;
}
.photo-hero-slide.active img{ transform:scale(1); }
.photo-hero-slide::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(18,9,5,.94) 0%, rgba(18,9,5,.58) 32%, rgba(18,9,5,.1) 55%, rgba(18,9,5,.4) 100%);
}
.photo-hero-glow{
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background:radial-gradient(ellipse 640px 420px at 85% 8%, rgba(201,150,46,.16), transparent 65%);
}

.photo-hero-content{
  position:absolute; left:0; right:0; bottom:0; z-index:3; padding-bottom:104px;
  transition:opacity .45s ease, transform .45s ease;
}
.photo-hero-content.fade{ opacity:0; transform:translateY(10px); }
.photo-hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px; font-size:.76rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:18px;
}
.photo-hero-eyebrow::before{ content:''; width:26px; height:2px; background:var(--gold); display:block; }
.photo-hero-title{
  font-family:var(--ff-display-2); text-transform:uppercase; color:var(--cream);
  font-size:clamp(2.1rem,5.2vw,4rem); line-height:1.02; max-width:18ch;
  text-shadow:2px 3px 0 rgba(15,8,4,.4);
}
.photo-hero-desc{ color:rgba(247,241,230,.82); max-width:50ch; margin-top:18px; font-size:1rem; line-height:1.75; }
.photo-hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }

.photo-hero-nav{ position:absolute; left:0; right:0; bottom:34px; z-index:4; display:flex; justify-content:center; gap:10px; }
.photo-hero-dot{ width:30px; height:4px; border-radius:2px; background:rgba(247,241,230,.32); border:none; padding:0; cursor:pointer; transition:.3s; }
.photo-hero-dot.active{ background:var(--gold); width:46px; }

.photo-hero-arrows{ position:absolute; right:clamp(18px,4vw,48px); bottom:34px; z-index:4; display:flex; gap:10px; }
.photo-hero-arrow{
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(247,241,230,.3); background:rgba(18,9,5,.4);
  color:var(--cream); display:flex; align-items:center; justify-content:center; backdrop-filter:blur(6px); transition:.25s;
}
.photo-hero-arrow:hover{ background:var(--gold); color:var(--maroon-900); border-color:var(--gold); }
.photo-hero-arrow svg{ width:16px; height:16px; }

@media(max-width:640px){
  .photo-hero{ height:78vh; min-height:520px; }
  .photo-hero-nav{ justify-content:flex-start; padding-left:20px; }
  .photo-hero-arrows{ display:none; }
}

/* ==========================================================================
   Programme de la semaine (weekly schedule, downloadable poster style)
   ========================================================================== */
.programme{ padding:100px 0; }
.programme-card{
  background:var(--maroon-900); border-radius:var(--radius-lg); overflow:hidden; position:relative;
  box-shadow:var(--shadow-lg);
}
.programme-card .texture{ color:var(--gold); opacity:.05; }
.programme-head{
  padding:44px clamp(20px,4vw,52px) 30px; text-align:center; position:relative; z-index:1;
}
.programme-head img{ height:56px; margin:0 auto 18px; }
.programme-head h2{ color:var(--cream); font-size:clamp(1.8rem,3.4vw,2.6rem); }
.programme-head p{ color:var(--gold-soft); font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.86rem; margin-top:10px; }
.programme-download{ margin-top:22px; }

.programme-table-wrap{ overflow-x:auto; padding:0 clamp(12px,3vw,30px) 8px; position:relative; z-index:1; }
.programme-table{ width:100%; min-width:820px; border-collapse:separate; border-spacing:0 8px; }
.programme-table thead th{
  background:var(--gold); color:var(--maroon-900); font-size:.72rem; text-transform:uppercase; letter-spacing:.05em;
  padding:12px 6px; text-align:center; font-weight:800;
}
.programme-table thead th:first-child{ background:none; }
.programme-table tbody tr{ background:rgba(255,255,255,.045); }
.programme-film-cell{ display:flex; align-items:center; gap:12px; padding:10px 14px; min-width:220px; }
.programme-film-cell img{ width:44px; height:62px; object-fit:cover; border-radius:6px; flex:0 0 auto; }
.programme-film-cell b{ display:block; color:var(--cream); font-family:var(--ff-display); font-size:.92rem; line-height:1.25; }
.programme-film-cell span{ display:block; color:rgba(247,241,230,.55); font-size:.7rem; margin-top:3px; }
.programme-table td{ text-align:center; padding:8px 4px; vertical-align:middle; }
.programme-table td.empty{ color:rgba(247,241,230,.18); font-size:.8rem; }
.programme-slot{ display:inline-flex; flex-direction:column; align-items:center; gap:2px; }
.programme-slot b{ color:var(--cream); font-size:.82rem; font-weight:800; }
.programme-slot span{
  font-size:.58rem; font-weight:700; padding:1px 6px; border-radius:4px; letter-spacing:.03em;
  background:rgba(247,241,230,.14); color:var(--gold-soft);
}

.programme-promo{
  margin:26px clamp(12px,3vw,30px) 0; border-radius:16px; overflow:hidden; position:relative; z-index:1;
  background:linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.15)), var(--maroon-700);
  display:flex; align-items:center; gap:20px; padding:20px 26px;
}
.programme-promo .new-tag{
  background:var(--gold); color:var(--maroon-900); font-weight:800; font-size:.7rem; letter-spacing:.05em;
  padding:6px 12px; border-radius:6px; flex:0 0 auto; text-transform:uppercase;
}
.programme-promo b{ color:var(--cream); font-family:var(--ff-display); font-size:1.15rem; }
.programme-promo span{ display:block; color:var(--gold-soft); font-size:.82rem; margin-top:3px; }

.programme-legend{
  display:flex; flex-wrap:wrap; gap:22px; justify-content:center; align-items:center;
  padding:26px clamp(16px,3vw,30px) 34px; position:relative; z-index:1; border-top:1px solid rgba(247,241,230,.12); margin-top:26px;
}
.programme-legend div{ display:flex; align-items:center; gap:8px; font-size:.76rem; color:rgba(247,241,230,.75); }
.programme-legend b{ color:var(--gold-soft); }
.programme-legend .swatch{ width:14px; height:14px; border-radius:4px; background:var(--gold); }

@media(max-width:640px){
  .programme-promo{ flex-direction:column; align-items:flex-start; }
}
