/**
 * JK! Studios — cinematic.css
 * Film grain, theatrical overlays, cinematic typography & dramatic mood.
 * Comedy-first: the drama is always a little too much on purpose.
 *
 * Load AFTER style.css so these override/layer on top.
 */

/* ============================================
   Import Theatrical Fonts
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================
   Cinematic Design Tokens
   ============================================ */
:root {
    /* Cinematic palette overlays */
    --film-black:      #0A0704;
    --film-warm:       #1C1208;
    --film-amber:      #C8860A; /* Original amber */
    --film-gold:       #D4A843; /* Original gold */
    --film-sepia:      rgba(180, 120, 30, 0.08); /* Original sepia */
    --film-vignette:   rgba(0, 0, 0, 0.65);
    --film-scratch:    rgba(255, 255, 255, 0.03);

    /* Upgrade fonts to theatrical */
    --font-heading:    'Bebas Neue', 'Arial Black', sans-serif;
    --font-cinematic:  'Playfair Display', 'Georgia', serif;
    --font-dramatic:   'DM Serif Display', 'Georgia', serif;
    --font-body:       'Inter', 'Arial', sans-serif;
    --font-accent:     'Space Mono', monospace;

    /* Letterbox bars */
    --letterbox-h:     clamp(6px, 1vh, 10px);

    /* Grain intensity */
    --grain-opacity:   0.045;
    --grain-size:      180px;
}

/* ============================================
   GLOBAL FILM GRAIN OVERLAY
   Applied to the html element so it floats
   above everything without affecting layout.
   ============================================ */
html::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: var(--grain-opacity);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: var(--grain-size) var(--grain-size);
    animation: grainShift 0.12s steps(1) infinite;
    mix-blend-mode: overlay;
}

@keyframes grainShift {
    0%   { background-position: 0 0; }
    10%  { background-position: -30px 15px; }
    20%  { background-position: 60px -20px; }
    30%  { background-position: -15px 40px; }
    40%  { background-position: 45px 10px; }
    50%  { background-position: -60px -30px; }
    60%  { background-position: 20px 55px; }
    70%  { background-position: -40px -10px; }
    80%  { background-position: 70px 25px; }
    90%  { background-position: -25px 60px; }
    100% { background-position: 0 0; }
}

/* ============================================
   CINEMATIC LETTERBOX BARS
   Top & bottom black bars — like a real movie.
   ============================================ */
body::before,
body::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    height: var(--letterbox-h);
    background: var(--film-black);
    z-index: 9998;
    pointer-events: none;
}

body::before { top: 0; }
body::after  { bottom: 0; }

/* ============================================
   CINEMATIC HEADER  — unified, single source of truth
   ============================================ */

/* ── Letterbox bars: thin film-strip lines, not fat bars ── */
:root {
    --letterbox-h: clamp(6px, 1vh, 10px);
}

/* ── Base header ── */
.site-header {
    top: var(--letterbox-h) !important;
    background: #0a0704 !important;
    border-bottom: none !important;
    box-shadow:
        0 1px 0 rgba(200,134,10,0.55),
        0 2px 0 rgba(200,134,10,0.15),
        0 8px 32px rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(10px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.4) !important;
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.25s ease,
        box-shadow 0.25s ease !important;
    will-change: transform;
}

/* ── Container ── */
.header-container {
    min-height: 64px !important;
    padding: 0 var(--space-8) !important;
    gap: var(--space-6) !important;
}

/* ── Logo — screen blend removes any dark background ── */
.logo-link {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}
.logo {
    height: 58px !important;
    width: auto !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    mix-blend-mode: screen !important;
    filter: brightness(1.1) contrast(1.05) !important;
    transition: filter 0.2s ease !important;
}
.logo:hover {
    filter: brightness(1.25) contrast(1.1) !important;
}

/* ── Nav links ── */
.nav-list a {
    background: transparent !important;
    color: rgba(255,255,255,0.68) !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.14em !important;
    padding: 4px 2px !important;
    transition: color 0.15s ease, border-color 0.15s ease !important;
}
.nav-list a:hover {
    color: #e8c060 !important;
    border-bottom-color: #e8c060 !important;
    background: transparent !important;
}
.nav-list a.active {
    color: #fff !important;
    border-bottom-color: #c8860a !important;
    background: transparent !important;
}

/* ── Watch Now CTA ── */
.nav-cta,
.nav-cta:visited {
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 6px 14px !important;
    letter-spacing: 0.1em !important;
    transition: background 0.15s ease, box-shadow 0.15s ease !important;
    border-bottom: 2px solid transparent !important;
}
.nav-cta:hover {
    background: #c01020 !important;
    box-shadow: 0 0 18px rgba(232,25,46,0.45) !important;
    border-bottom-color: transparent !important;
    color: #fff !important;
}

/* ── Scrolled state ── */
.site-header.header--scrolled {
    background: rgba(8,5,3,0.97) !important;
    box-shadow:
        0 1px 0 rgba(200,134,10,0.7),
        0 6px 40px rgba(0,0,0,0.75) !important;
}

/* ── Hidden (scroll-down) ── */
.site-header.header--hidden {
    transform: translateY(calc(-100% - var(--letterbox-h))) !important;
}

/* ── Scroll progress bar ── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8860a, var(--red));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(200,134,10,0.6);
}

/* Pad body so content clears the bars */
body {
    padding-top: var(--letterbox-h);
    padding-bottom: var(--letterbox-h);
}

/* ============================================
   GLOBAL SEPIA / WARM GRADE
   A subtle warm colour grade over everything.
   ============================================ */
.site-header,
.hero-block,
.hero-block-top,
.hero-cast-strip,
.film-block,
.projects-section,
.tour-section,
.youtube-section,
.newsletter-section,
.stats-bar,
.section,
.section--dark,
.page-hero-block,
main {
    position: relative;
}

/* Warm cinematic grade on images sitewide */
img:not(.logo):not(.footer-logo) {
    filter: contrast(1.06) saturate(0.92) sepia(0.08) brightness(0.97);
    transition: filter 0.4s ease;
}

img:not(.logo):not(.footer-logo):hover {
    filter: contrast(1.04) saturate(1.0) sepia(0.04) brightness(1.02);
}

/* ============================================
   HERO — Full Cinematic Treatment
   ============================================ */
.hero-block {
    background: var(--film-black) !important;
}

/* Dramatic vignette over the cast strip */
.hero-cast-strip-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Red ambient glow — like stage lighting */
.hero-block::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--red) 20%,
        var(--yellow) 50%,
        var(--red) 80%,
        transparent 100%);
    z-index: 10;
    opacity: 0.7;
}

/* Cast strip — film-grade each cell */
.strip-cell img {
    filter: contrast(1.1) saturate(0.85) sepia(0.12) brightness(0.92) !important;
}

.strip-cell:hover img {
    filter: contrast(1.05) saturate(1.0) sepia(0.04) brightness(1.0) !important;
}

/* The animated stripe becomes a film-strip perforation row */
.hero-block-stripe {
    background: repeating-linear-gradient(
        90deg,
        var(--film-black) 0px,
        var(--film-black) 12px,
        var(--yellow)     12px,
        var(--yellow)     28px,
        var(--film-black) 28px,
        var(--film-black) 40px,
        var(--red)        40px,
        var(--red)        52px,
        var(--film-black) 52px,
        var(--film-black) 64px
    ) !important;
    height: 20px !important;
    animation: filmstripScroll 1.2s linear infinite;
    opacity: 0.9;
}

@keyframes filmstripScroll {
    from { background-position: 0 0; }
    to   { background-position: 64px 0; }
}

/* ============================================
   HERO TYPOGRAPHY — Theatrical Upgrade
   ============================================ */
.hero-block-title,
.hero-block-title .title-line {
    font-family: 'Bebas Neue', var(--font-heading) !important;
    letter-spacing: 0.06em !important;
    line-height: 0.88 !important;
    text-shadow:
        2px 2px 0 rgba(0,0,0,0.8),
        0 0 40px rgba(232, 25, 46, 0.3);
}

.title-accent {
    color: var(--yellow) !important;
    text-shadow:
        2px 2px 0 rgba(0,0,0,0.8),
        0 0 30px rgba(255, 217, 61, 0.4) !important;
}

.title-outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.7) !important;
    text-shadow: none !important;
}

/* ============================================
   SECTION DIVIDERS — Film Reel Style
   ============================================ */
.section-divider {
    height: 20px !important;
    background: var(--film-black) !important;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    background: linear-gradient(90deg,
        var(--yellow) 0%, var(--red) 50%, var(--yellow) 100%) !important;
    animation: dividerScan 1.8s ease-in-out infinite !important;
    opacity: 0.8;
}

@keyframes dividerScan {
    0%   { left: -50%; width: 50%; }
    100% { left: 100%; width: 50%; }
}

/* ============================================
   FILM BLOCK — Movie-Poster Staging
   ============================================ */
.film-block {
    background: linear-gradient(
        135deg,
        #111008 0%,
        #1a0a0a 40%,
        #0f0c06 100%
    ) !important;
    border-bottom: 4px solid var(--red) !important;
}

.film-title {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    color: var(--white) !important;
    text-shadow: 3px 3px 0 rgba(232,25,46,0.5), 0 0 60px rgba(232,25,46,0.2);
    letter-spacing: -0.01em !important;
}

.film-quote {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
    font-size: var(--text-xl) !important;
    color: rgba(255,255,255,0.8) !important;
    border-left: 4px solid var(--yellow) !important;
}

.film-label,
.film-narrator {
    color: rgba(255,255,255,0.5) !important;
}

.film-desc {
    color: rgba(255,255,255,0.7) !important;
}

.film-poster-block {
    box-shadow:
        var(--shadow-xl),
        0 0 60px rgba(232,25,46,0.25),
        0 0 120px rgba(0,0,0,0.8) !important;
}

.film-poster-badge {
    background: var(--red) !important;
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.15em !important;
    font-size: var(--text-sm) !important;
    box-shadow: 0 0 20px rgba(232,25,46,0.5) !important;
}

/* ============================================
   PAGE HERO — Cinematic Two-Column
   ============================================ */
.page-hero-block {
    background: linear-gradient(
        160deg,
        var(--film-black) 0%,
        #1a0a0a 100%
    ) !important;
}

/* Dramatic light bleed top-right on hero images */
.page-hero-block-visual::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(232,25,46,0.08) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.page-hero-title {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.04em !important;
    text-shadow:
        2px 2px 0 rgba(0,0,0,0.9),
        0 0 50px rgba(232,25,46,0.2);
    line-height: 0.88 !important;
}

/* ============================================
   STATS BAR — Marquee / Credits Strip
   ============================================ */
.stats-bar {
    background: var(--film-black) !important;
    border-bottom: 3px solid rgba(232,25,46,0.6) !important;
    border-top: 2px solid rgba(255,217,61,0.3) !important;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: 'NOW PLAYING  ◆  NOW PLAYING  ◆  NOW PLAYING  ◆  NOW PLAYING  ◆  NOW PLAYING  ◆  NOW PLAYING  ◆  NOW PLAYING  ◆  NOW PLAYING  ◆';
    position: absolute;
    top: 0; left: 0;
    width: 200%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255,217,61,0.25);
    line-height: 1;
    padding-top: 2px;
    animation: marqueeScroll 18s linear infinite;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif !important;
    color: var(--yellow) !important;
    text-shadow: 0 0 20px rgba(255,217,61,0.4);
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: rgba(255,255,255,0.5) !important;
    position: relative;
    z-index: 1;
}

.stat-divider {
    color: rgba(232,25,46,0.6) !important;
    position: relative;
    z-index: 1;
}

/* ============================================
   TOUR SECTION — Broadway Marquee Feel
   ============================================ */
.tour-section {
    background: linear-gradient(
        180deg,
        #0a0704 0%,
        #110808 100%
    ) !important;
    position: relative;
}

/* Spotlight effect from above */
.tour-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(
        ellipse at top center,
        rgba(255,217,61,0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.tour-date-num {
    font-family: 'Bebas Neue', sans-serif !important;
    color: var(--yellow) !important;
    text-shadow: 0 0 15px rgba(255,217,61,0.3) !important;
}

.tour-date-day {
    color: rgba(255,217,61,0.6) !important;
}

.tour-date-info strong {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.08em !important;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.tour-date-item {
    border-bottom-color: rgba(255,217,61,0.1) !important;
    transition: background 0.2s ease, border-left 0.2s ease !important;
    border-left: 3px solid transparent;
}

.tour-date-item:hover {
    background: rgba(232,25,46,0.06) !important;
    border-left-color: var(--red);
}

.tour-promo-block {
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.2) !important;
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.15em !important;
    font-size: var(--text-base) !important;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
    animation: marqueeGlow 2.5s ease-in-out infinite;
}

@keyframes marqueeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,25,46,0); }
    50%       { box-shadow: 0 0 30px 4px rgba(232,25,46,0.35); }
}

/* ============================================
   YOUTUBE / RED SECTION — Stage Spotlight
   ============================================ */
.youtube-section {
    background: radial-gradient(
        ellipse at 30% 50%,
        #c01020 0%,
        #8a0f1a 50%,
        #5a0810 100%
    ) !important;
    position: relative;
    overflow: hidden;
}

/* Lens flare effect */
.youtube-section::after {
    content: '';
    position: absolute;
    top: -40%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.youtube-content h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    letter-spacing: 0.06em !important;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.yt-stat strong {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* ============================================
   NEWSLETTER — Dark Room / Credits Roll
   ============================================ */
.newsletter-section {
    background: linear-gradient(
        180deg,
        var(--film-black) 0%,
        #0f0c06 100%
    ) !important;
    border-top: 3px solid rgba(255,217,61,0.2) !important;
}

.newsletter-section h2,
.newsletter-inner h2 {
    color: var(--yellow) !important;
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.06em !important;
    text-shadow: 0 0 30px rgba(255,217,61,0.25);
}

.newsletter-inner p {
    color: rgba(255,255,255,0.55) !important;
}

.newsletter-eyebrow {
    color: rgba(255,217,61,0.5) !important;
    letter-spacing: 0.3em !important;
}

.newsletter-form {
    border-color: rgba(255,217,61,0.3) !important;
    box-shadow:
        var(--shadow-lg),
        0 0 40px rgba(255,217,61,0.08) !important;
}

/* Header styles consolidated above — see CINEMATIC HEADER block */


/* ============================================
   FOOTER — End CREDITS
   ============================================ */
.site-footer {
    background: var(--film-black) !important;
    border-top: 3px solid rgba(232,25,46,0.4) !important;
    position: relative;
    overflow: hidden;
}

/* Vignette light bleed at footer top */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(232,25,46,0.5) 30%,
        rgba(255,217,61,0.3) 50%,
        rgba(232,25,46,0.5) 70%,
        transparent
    );
    pointer-events: none;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.15em !important;
    font-size: var(--text-base) !important;
    border-bottom-color: rgba(255,217,61,0.4) !important;
}

.footer-tagline {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
    color: rgba(255,255,255,0.4) !important;
    font-size: var(--text-base) !important;
}

.footer-made-with {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    color: rgba(255,217,61,0.35) !important;
}

/* ============================================
   VIDEO CARDS — Movie Screening Feel
   ============================================ */
.video-card {
    background: var(--film-black) !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow:
        var(--shadow-md),
        0 4px 30px rgba(0,0,0,0.5) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.video-card:hover {
    box-shadow:
        var(--shadow-xl),
        0 8px 50px rgba(232,25,46,0.2) !important;
}

.video-card-info {
    background: #0f0c09 !important;
    border-top-color: rgba(255,255,255,0.06) !important;
}

.video-card-title {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
    color: var(--white) !important;
}

.video-card-meta {
    color: rgba(255,217,61,0.45) !important;
}

.play-btn {
    background: rgba(232,25,46,0.9) !important;
    box-shadow: 0 0 20px rgba(232,25,46,0.4) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.video-card:hover .play-btn {
    box-shadow: 0 0 40px rgba(232,25,46,0.7) !important;
    transform: scale(1.12) !important;
}

/* ============================================
   PROJECT CARDS — Film Festival Poster
   ============================================ */
.project-card {
    background: var(--film-black) !important;
    border-color: rgba(255,255,255,0.06) !important;
    box-shadow:
        var(--shadow-md),
        0 8px 40px rgba(0,0,0,0.6) !important;
}

.project-card:hover {
    box-shadow:
        var(--shadow-xl),
        0 12px 60px rgba(232,25,46,0.15) !important;
    transform: translate(-3px,-3px) !important;
}

.project-card-info {
    background: #0c0906 !important;
    border-top-color: rgba(255,255,255,0.06) !important;
}

.project-card-info h3 {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
    color: var(--white) !important;
}

.project-card-info p {
    color: rgba(255,217,61,0.4) !important;
}

.project-card-tag {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.1em !important;
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: rgba(0,0,0,0.3) !important;
}

.project-card-play {
    font-size: 2.5rem !important;
    filter: drop-shadow(0 0 12px rgba(232,25,46,0.5));
}

/* ============================================
   SECTION HEADINGS — Theatrical Upgrade
   ============================================ */
h2 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    line-height: 0.92;
}

/* Highlighted spans in headings */
h2 span.text-red,
.video-showcase-title span {
    color: var(--red) !important;
    text-shadow: 0 0 20px rgba(232,25,46,0.3);
}

/* Section eyebrow labels */
.eyebrow,
.page-hero-label,
.film-label,
.tour-eyebrow,
.newsletter-eyebrow,
.hero-block-label {
    font-family: 'Space Mono', monospace !important;
    letter-spacing: 0.25em !important;
}

/* ============================================
   BUTTONS — Cinematic Glows
   ============================================ */
.btn {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.12em !important;
    font-size: var(--text-base) !important;
    transition: transform 0.12s ease, box-shadow 0.2s ease !important;
}

.btn-red:hover {
    box-shadow:
        8px 8px 0 var(--red-dark),
        0 0 30px rgba(232,25,46,0.3) !important;
}

.btn-yellow:hover {
    box-shadow:
        8px 8px 0 var(--yellow-dark),
        0 0 30px rgba(255,217,61,0.25) !important;
}

.btn-ghost--light:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    box-shadow: 0 0 20px rgba(255,255,255,0.15) !important;
}

/* ============================================
   BADGES — Film Rating Style
   ============================================ */
.badge {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.15em !important;
}

.badge-red {
    box-shadow: 0 0 12px rgba(232,25,46,0.3) !important;
}

/* ============================================
   PAGE-HERO STRIPE — Film Perforations
   ============================================ */
.page-hero-stripe {
    background: repeating-linear-gradient(
        90deg,
        var(--film-black)  0px, var(--film-black)  8px,
        var(--red)         8px, var(--red)         20px,
        var(--film-black) 20px, var(--film-black) 28px,
        var(--yellow)     28px, var(--yellow)     40px,
        var(--film-black) 40px, var(--film-black) 48px
    ) !important;
    height: 14px !important;
    animation: filmstripScroll 0.9s linear infinite;
}

/* ============================================
   SCROLLBAR — Film Strip
   ============================================ */
::-webkit-scrollbar       { width: 12px !important; }
::-webkit-scrollbar-track { background: var(--film-black) !important; border-left: 2px solid rgba(255,217,61,0.2) !important; }
::-webkit-scrollbar-thumb { background: var(--red) !important; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow) !important; }

/* ============================================
   TEXT SELECTION — Marquee Highlight
   ============================================ */
::selection {
    background: rgba(232, 25, 46, 0.7) !important;
    color: var(--white) !important;
}

/* ============================================
   MODAL — Screening Room
   ============================================ */
.modal,
.search-overlay {
    background: rgba(5, 3, 2, 0.97) !important;
}

.modal-content {
    box-shadow:
        var(--shadow-xl),
        0 0 80px rgba(232,25,46,0.15) !important;
    border-color: rgba(255,255,255,0.08) !important;
}

/* ============================================
   MISSION / QUOTE / RED SECTIONS
   ============================================ */
.mission-block {
    background: radial-gradient(
        ellipse at center,
        #c01020 0%,
        #8a0f1a 60%,
        #5a0810 100%
    ) !important;
}

.quote-section {
    background: var(--film-black) !important;
}

.quote-text {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.quote-label {
    font-family: 'Space Mono', monospace !important;
    border-color: rgba(255,217,61,0.4) !important;
    color: rgba(255,217,61,0.7) !important;
}

.quote-author {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
}

/* ============================================
   TIMELINE — Film Credits Roll
   ============================================ */
.timeline-section {
    background: #0c0906 !important;
}

.timeline-item {
    background: #110d08 !important;
    border-color: rgba(255,255,255,0.07) !important;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(0,0,0,0.5) !important;
}

.timeline-item:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(232,25,46,0.1) !important;
}

.timeline-year {
    font-family: 'Bebas Neue', sans-serif !important;
    color: var(--red) !important;
    text-shadow: 0 0 15px rgba(232,25,46,0.3) !important;
}

.timeline-content h3 {
    font-family: 'DM Serif Display', serif !important;
    font-style: italic !important;
    color: rgba(255,255,255,0.9) !important;
}

.timeline-content p {
    color: rgba(255,255,255,0.5) !important;
}

/* ============================================
   BODY BACKGROUND — Film Warmth
   ============================================ */
body {
    background-color: var(--film-black) !important;
}

/* ============================================
   RESPONSIVE — Keep letterbox on mobile
   ============================================ */
@media (max-width: 768px) {
    :root {
        --letterbox-h: 6px;
        --grain-opacity: 0.04;
    }

    .hero-block-title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
    }

    .film-title {
        font-size: clamp(2rem, 7vw, 3rem) !important;
    }
}

@media (max-width: 480px) {
    :root {
        --letterbox-h: 4px;
    }
}

/* ============================================================
   CINEMATIC COMPONENT OVERRIDES
   Converts every shared component to the dark cinematic theme.
   Applied globally so every page benefits automatically.
   ============================================================ */

/* ── Body & global background ── */
body { background: var(--film-black) !important; }
.main-content { background: var(--film-black) !important; }

/* ── Page Hero Block ── */
.page-hero-block {
    background: var(--film-black) !important;
    border-bottom: var(--border) !important;
    color: var(--white) !important;
    min-height: 420px !important;
}
.page-hero-block-inner {
    background: var(--film-black) !important;
    min-height: 420px !important;
    border: none !important;
}
.page-hero-block-content {
    background: var(--film-black) !important;
    border-right: var(--border) !important;
    padding: 3rem 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
}
.page-hero-label {
    font-family: 'Space Mono', monospace !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: var(--film-amber, #c8860a) !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
}
.page-hero-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(4rem, 10vw, 8rem) !important;
    line-height: 0.88 !important;
    color: var(--white) !important;
    text-shadow: 4px 4px 0 var(--red) !important;
    margin: 0 0 1.25rem !important;
    letter-spacing: 0.01em !important;
}
.title-accent { color: var(--yellow) !important; }
.page-hero-text {
    color: rgba(255,255,255,0.68) !important;
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    max-width: 480px !important;
    margin-bottom: 1.5rem !important;
}
.page-hero-subtitle {
    font-family: 'Space Mono', monospace !important;
    font-size: 0.75rem !important;
    color: var(--film-amber, #c8860a) !important;
    letter-spacing: 0.2em !important;
}
.page-hero-block-visual {
    border-left: var(--border) !important;
    overflow: hidden !important;
}
.page-hero-stripe { display: none !important; }
.page-hero-block-visual .page-hero-stripe {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 10px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0 24px, var(--black) 24px 48px);
    z-index: 2;
}

/* ── Projects Hub ── */
.projects-section {
    background: var(--black) !important;
    border-bottom: var(--border) !important;
    padding: 0 !important;
}
.projects-section--dark { background: #0d0b09 !important; }
.section-header {
    border-bottom: var(--border) !important;
    background: var(--film-black) !important;
    padding: 1.25rem 2rem !important;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2rem !important;
    color: var(--white) !important;
    letter-spacing: 0.08em !important;
    margin: 0 !important;
}
.title-icon { color: var(--film-amber, #c8860a) !important; }
.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 0 !important;
}
.project-card {
    background: var(--black) !important;
    border: none !important;
    border-right: var(--border) !important;
    border-bottom: var(--border) !important;
    color: var(--white) !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.project-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 6px 0 var(--film-amber, #c8860a), 0 8px 30px rgba(0,0,0,0.5) !important;
    z-index: 2 !important;
    position: relative !important;
}
.project-card-thumb {
    aspect-ratio: 16/10 !important;
    overflow: hidden !important;
    position: relative !important;
}
.project-card-thumb img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block !important;
    filter: grayscale(15%) brightness(0.88) !important;
    transition: filter 0.4s ease, transform 0.4s ease !important;
}
.project-card:hover .project-card-thumb img {
    filter: grayscale(0%) brightness(1) !important;
    transform: scale(1.04) !important;
}
.project-card-badge {
    position: absolute !important; top: 0.75rem !important; left: 0.75rem !important;
    background: var(--red) !important; color: var(--white) !important;
    font-family: 'Space Mono', monospace !important; font-size: 0.58rem !important;
    letter-spacing: 0.15em !important; text-transform: uppercase !important;
    padding: 3px 8px !important; z-index: 2 !important;
}
.project-card-tag {
    position: absolute !important; top: 0.75rem !important; left: 0.75rem !important;
    background: rgba(0,0,0,0.75) !important; color: var(--white) !important;
    font-family: 'Space Mono', monospace !important; font-size: 0.58rem !important;
    letter-spacing: 0.15em !important; text-transform: uppercase !important;
    padding: 3px 8px !important; z-index: 2 !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}
.project-card-play {
    position: absolute !important; inset: 0 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 2.5rem !important; color: rgba(255,255,255,0.85) !important;
    opacity: 0 !important; transition: opacity 0.25s !important;
    background: rgba(0,0,0,0.3) !important;
}
.project-card:hover .project-card-play { opacity: 1 !important; }
.project-card-info {
    padding: 1.1rem 1.25rem 1.25rem !important;
    border-top: var(--border) !important;
    flex: 1 !important;
}
.project-card-info h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.4rem !important; color: var(--white) !important;
    margin: 0 0 0.25rem !important; letter-spacing: 0.05em !important;
}
.project-card-info p {
    font-size: 0.72rem !important; color: rgba(255,255,255,0.45) !important;
    letter-spacing: 0.08em !important; text-transform: uppercase !important;
    font-family: 'Space Mono', monospace !important; margin: 0 0 0.6rem !important;
}
.project-card-link {
    font-family: 'Space Mono', monospace !important;
    font-size: 0.68rem !important; color: var(--film-amber, #c8860a) !important;
    letter-spacing: 0.12em !important; text-transform: uppercase !important;
}

/* ── Project Detail Pages ── */
.project-detail-section {
    background: var(--black) !important;
    border-bottom: var(--border) !important;
    color: var(--white) !important;
}
.project-detail-inner {
    max-width: 1100px !important; margin: 0 auto !important;
    padding: 3.5rem 3rem !important;
}
.project-detail-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important; color: var(--white) !important;
    border-left: 6px solid var(--red) !important; padding-left: 1rem !important;
    margin-bottom: 1.5rem !important; text-transform: uppercase !important;
}
.project-detail-text {
    font-size: 1rem !important; line-height: 1.85 !important;
    color: rgba(255,255,255,0.72) !important; margin-bottom: 1.25rem !important;
}
.project-highlight-block {
    background: var(--film-black) !important; border-left: 4px solid var(--film-amber, #c8860a) !important;
    padding: 1.5rem 1.75rem !important; margin-top: 2rem !important;
    display: flex !important; gap: 1rem !important; align-items: flex-start !important;
}
.project-highlight-icon { color: var(--film-amber, #c8860a) !important; font-size: 1.5rem !important; flex-shrink: 0 !important; }
.project-highlight-quote {
    font-family: 'DM Serif Display', serif !important; font-style: italic !important;
    font-size: 1.15rem !important; line-height: 1.6 !important;
    color: rgba(255,255,255,0.8) !important; margin: 0 !important; border: none !important;
}

/* ── Cast section on project pages ── */
.cast-section {
    background: var(--yellow) !important;
    border-bottom: var(--border) !important;
}
.cast-section-inner {
    max-width: 1100px !important; margin: 0 auto !important;
    padding: 3rem 3rem !important;
}
.cast-section-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2.5rem !important; color: var(--black) !important;
    margin-bottom: 1.75rem !important;
}
.cast-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 1rem !important;
}
.cast-member { text-align: center !important; }
.cast-member-avatar {
    width: 80px !important; height: 80px !important;
    border-radius: 0 !important; border: var(--border) !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-family: 'Bebas Neue', sans-serif !important; font-size: 1.8rem !important;
    color: var(--white) !important; margin: 0 auto 0.6rem !important;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4) !important;
}
.cast-member-name {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.1rem !important; color: var(--black) !important;
    margin: 0 0 0.2rem !important;
}
.cast-member-role {
    font-family: 'Space Mono', monospace !important;
    font-size: 0.6rem !important; color: rgba(0,0,0,0.55) !important;
    letter-spacing: 0.1em !important;
}

/* ── Highlights / Episode cards ── */
.highlights-section {
    background: var(--film-black) !important;
    border-bottom: var(--border) !important; color: var(--white) !important;
}
.highlights-inner {
    max-width: 1100px !important; margin: 0 auto !important;
    padding: 3rem 3rem !important;
}
.highlights-inner h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2.5rem !important; color: var(--white) !important;
    margin-bottom: 1.75rem !important; border-left: 6px solid var(--yellow) !important;
    padding-left: 1rem !important;
}
.highlights-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 0 !important; border: var(--border) !important;
}
.highlight-card {
    border-right: var(--border) !important;
    background: var(--black) !important;
    overflow: hidden !important;
}
.highlight-card:last-child { border-right: none !important; }
.highlight-card-thumb {
    aspect-ratio: 16/10 !important; position: relative !important;
    cursor: pointer !important;
}
.highlight-card-play {
    position: absolute !important; inset: 0 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 2rem !important; color: rgba(255,255,255,0.9) !important;
    background: rgba(0,0,0,0.25) !important; transition: background 0.2s !important;
}
.highlight-card:hover .highlight-card-play { background: rgba(0,0,0,0.45) !important; }
.highlight-card-info {
    padding: 1rem 1.25rem !important; border-top: var(--border) !important;
}
.highlight-card-info h3 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 1.3rem !important;
    color: var(--white) !important; margin: 0 0 0.3rem !important;
}
.highlight-card-info p {
    font-size: 0.78rem !important; color: rgba(255,255,255,0.5) !important;
    margin: 0 !important; line-height: 1.5 !important;
}
.highlights-cta { margin-top: 2rem !important; }

/* ── Back / nav section ── */
.back-section {
    background: var(--film-black) !important;
    border-top: var(--border) !important;
    padding: 1.5rem 3rem !important;
}

/* ── Platform cards ── */
.platform-section {
    margin-top: 2.5rem !important; padding-top: 2rem !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}
.platform-section h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.5rem !important; color: var(--white) !important;
    margin-bottom: 1rem !important;
}
.platform-inner { max-width: 1100px !important; margin: 0 auto !important; padding: 3rem !important; }
.platform-inner h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2rem !important; color: var(--white) !important;
    margin-bottom: 1.5rem !important;
}
.platform-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 0.75rem !important;
}
.platform-card {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    gap: 0.5rem !important; padding: 1.25rem 1rem !important;
    background: rgba(255,255,255,0.05) !important;
    border: var(--border) !important; color: var(--white) !important;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s !important;
}
.platform-card:hover {
    background: var(--film-amber, #c8860a) !important;
    color: var(--black) !important; border-color: var(--film-amber, #c8860a) !important;
}
.platform-icon { font-size: 1.5rem !important; }
.platform-name {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1rem !important; letter-spacing: 0.08em !important;
}

/* ── Watch page ── */
.watch-section {
    background: var(--black) !important; border-bottom: var(--border) !important;
    padding: 0 !important;
}
.watch-section--dark { background: #0d0b09 !important; }
.watch-section-header {
    border-bottom: var(--border) !important; background: var(--film-black) !important;
    padding: 1.25rem 2rem !important;
}
.watch-section-header h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2rem !important; color: var(--white) !important;
    letter-spacing: 0.08em !important; margin: 0 !important;
}
.watch-section-inner {
    max-width: 1100px !important; margin: 0 auto !important; padding: 3rem !important;
}
.watch-section-inner h2 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 2rem !important;
    color: var(--white) !important; margin-bottom: 1.5rem !important;
}
.watch-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 0 !important;
}
.watch-card {
    background: var(--black) !important; border: none !important;
    border-right: var(--border) !important; border-bottom: var(--border) !important;
    text-decoration: none !important; color: var(--white) !important;
    display: flex !important; flex-direction: column !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.watch-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 0 var(--film-amber, #c8860a) !important;
    z-index: 2 !important; position: relative !important;
}
.watch-card-thumb {
    aspect-ratio: 16/10 !important; position: relative !important; overflow: hidden !important;
}
.watch-card-badge {
    position: absolute !important; top: 0.6rem !important; left: 0.6rem !important;
    background: var(--yellow) !important; color: var(--black) !important;
    font-family: 'Space Mono', monospace !important; font-size: 0.55rem !important;
    letter-spacing: 0.12em !important; padding: 2px 7px !important;
    text-transform: uppercase !important; z-index: 2 !important;
}
.watch-play-btn {
    position: absolute !important; inset: 0 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 2rem !important; color: rgba(255,255,255,0.9) !important;
    opacity: 0 !important; background: rgba(0,0,0,0.3) !important;
    transition: opacity 0.2s !important;
}
.watch-card:hover .watch-play-btn,
.watch-featured-card:hover .watch-play-btn { opacity: 1 !important; }
.watch-card-info {
    padding: 0.9rem 1.1rem !important; border-top: var(--border) !important; flex: 1 !important;
}
.watch-card-info h3 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 1.3rem !important;
    color: var(--white) !important; margin: 0 0 0.2rem !important;
}
.watch-card-info p {
    font-size: 0.68rem !important; color: rgba(255,255,255,0.42) !important;
    margin: 0 !important; font-family: 'Space Mono', monospace !important;
    letter-spacing: 0.08em !important; text-transform: uppercase !important;
}
.watch-featured {
    padding: 0 !important;
}
.watch-featured-card {
    display: flex !important; text-decoration: none !important;
    color: var(--white) !important; border-bottom: var(--border) !important;
}
.watch-featured-thumb {
    width: 55% !important; flex-shrink: 0 !important;
    position: relative !important; overflow: hidden !important;
    min-height: 280px !important;
}
.watch-featured-thumb img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block !important;
}
.watch-featured-info {
    padding: 2rem !important; display: flex !important;
    flex-direction: column !important; justify-content: flex-end !important;
    border-left: var(--border) !important; flex: 1 !important;
    background: var(--film-black) !important;
}
.watch-featured-info h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3.5rem) !important; color: var(--white) !important;
    margin: 0 0 0.5rem !important; line-height: 1 !important;
}
.watch-featured-info p {
    font-family: 'Space Mono', monospace !important; font-size: 0.7rem !important;
    color: rgba(255,255,255,0.45) !important; letter-spacing: 0.1em !important; text-transform: uppercase !important;
}
.watch-featured-badge {
    position: absolute !important; top: 1rem !important; left: 1rem !important;
    background: var(--yellow) !important; color: var(--black) !important;
    font-family: 'Space Mono', monospace !important; font-size: 0.6rem !important;
    letter-spacing: 0.15em !important; padding: 3px 9px !important;
    text-transform: uppercase !important; z-index: 2 !important;
}
.youtube-cta-section {
    background: var(--red) !important; border-bottom: var(--border) !important;
    padding: 3rem 2rem !important;
}
.youtube-cta-inner { text-align: center !important; }
.youtube-cta-content { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 0.75rem !important; }
.youtube-cta-icon { font-size: 3rem !important; color: var(--white) !important; }
.youtube-cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: clamp(2.5rem, 5vw, 4rem) !important;
    color: var(--white) !important; margin: 0 !important;
}
.youtube-cta-inner p { color: rgba(255,255,255,0.8) !important; margin: 0 !important; }

/* ── Contact page ── */
.contact-section {
    background: var(--black) !important; color: var(--white) !important;
    border-bottom: var(--border) !important;
}
.contact-grid {
    max-width: 1100px !important; margin: 0 auto !important;
    padding: 3.5rem 3rem !important;
    display: grid !important; grid-template-columns: 3fr 2fr !important;
    gap: 3rem !important; align-items: start !important;
}
.contact-form-block h2 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 2.5rem !important;
    color: var(--white) !important; margin-bottom: 1.75rem !important;
    border-left: 6px solid var(--red) !important; padding-left: 1rem !important;
}
.form-group { margin-bottom: 1.25rem !important; }
.form-group label {
    display: block !important; margin-bottom: 0.4rem !important;
    font-family: 'Space Mono', monospace !important; font-size: 0.65rem !important;
    letter-spacing: 0.18em !important; text-transform: uppercase !important;
    color: rgba(255,255,255,0.55) !important;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100% !important; box-sizing: border-box !important;
    background: rgba(255,255,255,0.06) !important;
    border: 2px solid rgba(255,255,255,0.14) !important;
    color: var(--white) !important; padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important; font-family: inherit !important;
    outline: none !important; transition: border-color 0.2s, background 0.2s !important;
    border-radius: 0 !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3) !important; }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--film-amber, #c8860a) !important;
    background: rgba(255,255,255,0.1) !important;
}
.contact-form textarea { min-height: 140px !important; resize: vertical !important; }
.contact-info-block { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; }
.contact-info-card {
    background: var(--film-black) !important; border: var(--border) !important;
    padding: 1.75rem !important;
}
.contact-info-card h3 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 1.5rem !important;
    color: var(--white) !important; margin-bottom: 1.25rem !important;
    border-left: 4px solid var(--film-amber, #c8860a) !important; padding-left: 0.75rem !important;
}
.contact-info-item { margin-bottom: 1rem !important; padding-bottom: 1rem !important; border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
.contact-info-item:last-child { border-bottom: none !important; margin-bottom: 0 !important; }
.contact-info-label {
    display: block !important; font-family: 'Space Mono', monospace !important;
    font-size: 0.6rem !important; letter-spacing: 0.2em !important;
    text-transform: uppercase !important; color: var(--film-amber, #c8860a) !important;
    margin-bottom: 0.25rem !important;
}
.contact-info-item a { color: rgba(255,255,255,0.75) !important; text-decoration: none !important; font-size: 0.9rem !important; }
.contact-info-item a:hover { color: var(--yellow) !important; }
.contact-social-block { background: var(--film-black) !important; border: var(--border) !important; padding: 1.75rem !important; }
.contact-social-block h3 {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 1.5rem !important;
    color: var(--white) !important; margin-bottom: 0.5rem !important;
}
.contact-social-block p { color: rgba(255,255,255,0.5) !important; font-size: 0.85rem !important; margin-bottom: 1.25rem !important; }
.social-links { display: flex !important; flex-direction: column !important; gap: 0.5rem !important; }
.social-link {
    display: flex !important; align-items: center !important; gap: 0.75rem !important;
    padding: 0.6rem 1rem !important; background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important; color: var(--white) !important;
    text-decoration: none !important; font-size: 0.88rem !important;
    transition: background 0.15s, color 0.15s !important;
}
.social-link:hover {
    background: var(--film-amber, #c8860a) !important; color: var(--black) !important;
    border-color: var(--film-amber, #c8860a) !important;
}

/* ── Status banners (coming soon, etc.) ── */
.status-banner {
    background: var(--red) !important; border-bottom: var(--border) !important;
    padding: 1.5rem 3rem !important; text-align: center !important;
}
.status-banner h2 { font-family: 'Bebas Neue', sans-serif !important; color: var(--white) !important; margin: 0 !important; }
.status-banner p { color: rgba(255,255,255,0.8) !important; margin: 0.5rem 0 0 !important; }

/* ── Share buttons ── */
.share-section { margin-top: 2rem !important; display: flex !important; align-items: center !important; gap: 0.75rem !important; }
.share-label { font-family: 'Space Mono', monospace !important; font-size: 0.65rem !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; color: rgba(255,255,255,0.4) !important; }
.share-buttons { display: flex !important; gap: 0.5rem !important; }
.share-btn {
    width: 36px !important; height: 36px !important; border: var(--border) !important;
    background: rgba(255,255,255,0.06) !important; color: var(--white) !important;
    cursor: pointer !important; font-size: 0.9rem !important;
    transition: background 0.15s !important; display: flex !important;
    align-items: center !important; justify-content: center !important;
}
.share-btn:hover { background: var(--film-amber, #c8860a) !important; color: var(--black) !important; }

/* ── Secondary pages (404, generic) ── */
.error-section, .page-404, .simple-page {
    background: var(--film-black) !important; color: var(--white) !important;
    min-height: 60vh !important; display: flex !important; align-items: center !important;
    justify-content: center !important; text-align: center !important;
}
.error-code {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(6rem, 20vw, 16rem) !important; color: var(--red) !important;
    line-height: 1 !important; display: block !important;
    text-shadow: 6px 6px 0 rgba(200,134,10,0.3) !important;
}
.error-title {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 3rem !important;
    color: var(--white) !important; margin: 0 0 1rem !important;
}
.error-text { color: rgba(255,255,255,0.55) !important; margin-bottom: 2rem !important; }

/* ── Misc: marquee ticker inherits dark ── */
.marquee-ticker { background: var(--red) !important; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr !important; }
    .watch-featured-card { flex-direction: column !important; }
    .watch-featured-thumb { width: 100% !important; min-height: 200px !important; }
    .project-detail-inner, .cast-section-inner, .highlights-inner,
    .platform-inner, .back-section { padding: 2rem 1.25rem !important; }
    .page-hero-block-content { padding: 2rem 1.5rem !important; }
}
