/**
 * JK! Studios - BRUTALIST BOLD Redesign
 * Built around the red (#E8192E), yellow (#FFD93D), black (#1A0A0A) color scheme
 * from the existing image assets
 */

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
    /* Brand Colors from Assets */
    --red: #E8192E;
    --red-dark: #B5101F;
    --red-light: #FF4444;
    --yellow: #FFD93D;
    --yellow-dark: #E6BB00;
    --black: #1A0A0A;
    --white: #FFFFFF;
    --off-white: #FFFAF8;

    /* Text Colors */
    --text: #1A0A0A;
    --text-light: #4A3A3A;
    --text-lighter: #8A7A7A;

    /* Typography Scale - Fluid using clamp() */
    --text-xs: clamp(0.7rem, 1.5vw, 0.75rem);
    --text-sm: clamp(0.8rem, 2vw, 0.875rem);
    --text-base: clamp(0.9rem, 2.5vw, 1rem);
    --text-lg: clamp(1rem, 3vw, 1.125rem);
    --text-xl: clamp(1.1rem, 3.5vw, 1.25rem);
    --text-2xl: clamp(1.25rem, 4vw, 1.5rem);
    --text-3xl: clamp(1.5rem, 5vw, 2rem);
    --text-4xl: clamp(2rem, 6vw, 2.75rem);
    --text-5xl: clamp(2.5rem, 8vw, 4rem);

    /* Font Families - Bold & Geometric */
    --font-heading: 'Space Grotesk', 'Arial Black', sans-serif;
    --font-body: 'Inter', 'Arial', sans-serif;
    --font-accent: 'Space Mono', monospace;

    /* Spacing - 8pt Grid */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --container-max: 1400px;
    --container-narrow: 900px;
    --section-padding: clamp(3rem, 8vw, 5rem) var(--space-6);

    /* BRUTALIST: Sharp Corners, Hard Borders */
    --border-radius: 0px;
    --border-radius-sm: 0px;
    --border-radius-lg: 0px;
    --border: 4px solid var(--black);
    --border-red: 4px solid var(--red);
    --border-yellow: 4px solid var(--yellow);

    /* BRUTALIST: Hard Offset Shadows */
    --shadow-sm: 4px 4px 0 var(--black);
    --shadow-md: 6px 6px 0 var(--black);
    --shadow-lg: 8px 8px 0 var(--black);
    --shadow-xl: 12px 12px 0 var(--black);
    --shadow-red: 6px 6px 0 var(--red);
    --shadow-yellow: 6px 6px 0 var(--yellow);

    /* Transitions - Snappy */
    --transition-fast: 0.1s ease;
    --transition: 0.15s ease;
    --transition-slow: 0.25s ease;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
}

/* ============================================
   Reset & Base - Brutalist Foundation
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.5;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

/* BRUTALIST: Custom Scrollbar */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: var(--yellow);
    border-left: 4px solid var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* BRUTALIST: Text Selection */
::selection {
    background: var(--yellow);
    color: var(--black);
}

/* ============================================
   Typography - Bold & Uppercase
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    line-height: 1.7;
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 4px solid var(--yellow);
    outline-offset: 2px;
}

/* ============================================
   Layout Components
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--section-padding);
}

.section--dark {
    background-color: var(--black);
    color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.7);
}

.section--red {
    background-color: var(--red);
    color: var(--white);
}

.section--red h1,
.section--red h2,
.section--dark h3 {
    color: var(--white);
}

.section--yellow {
    background-color: var(--yellow);
}

/* BRUTALIST: Section Dividers */
.section-divider {
    height: 16px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--yellow);
    animation: slide 2s ease-in-out infinite;
}

@keyframes slide {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* ============================================
   BRUTALIST Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    border: var(--border);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-xl);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}

.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    box-shadow: 8px 8px 0 var(--red-dark);
}

.btn-red:active {
    box-shadow: 2px 2px 0 var(--red-dark);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--black);
    box-shadow: var(--shadow-yellow);
}

.btn-yellow:hover {
    box-shadow: 8px 8px 0 var(--yellow-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-ghost:hover {
    background: var(--black);
    color: var(--white);
}

.btn-ghost--light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-ghost--light:hover {
    background: var(--white);
    color: var(--black);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    box-shadow: var(--shadow-sm);
}

.btn-sm:hover {
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-base);
}

/* ============================================
   BRUTALIST Header
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background-color: var(--yellow);
    border-bottom: var(--border);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo-link {
    display: block;
}

.logo {
    height: 50px;
    width: auto;
    border: var(--border);
    padding: var(--space-2);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-list {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-list li {
    margin-left: -4px;
}

.nav-list a {
    display: block;
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: var(--yellow);
    color: var(--black);
    border: var(--border);
    margin-left: -4px;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    background: var(--black);
    color: var(--white);
    z-index: 1;
    position: relative;
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--red-dark) !important;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border: var(--border);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 4px;
    background: var(--white);
}

.search-trigger {
    display: none;
}

/* ============================================
   BRUTALIST Hero
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
    border-bottom: var(--border);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 90vh;
    width: 100%;
}

.hero-content {
    padding: var(--space-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: var(--space-4);
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border: 2px solid var(--red);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.hero-title-accent {
    color: var(--yellow);
    display: block;
}

.hero-title-outline {
    color: transparent;
    -webkit-text-stroke: 3px var(--white);
    display: block;
}

.hero-sub {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-12);
    flex-wrap: wrap;
}

.subscriber-counter {
    text-align: left;
}

.stats-icon {
    font-size: var(--text-2xl);
    display: block;
    margin-bottom: var(--space-1);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--yellow);
    display: block;
    line-height: 1;
}

.stats-label {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border-left: var(--border);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.cast-cell {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--black);
}

.cast-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter var(--transition);
}

.cast-cell:hover img {
    filter: grayscale(0%);
}

.cast-cell:nth-child(5) {
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
}

/* Hero Stripes - Brutalist Decoration */
.hero-stripes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--yellow) 0px,
        var(--yellow) 40px,
        var(--black) 40px,
        var(--black) 80px
    );
}

/* Hero Floatables */
.hero-floatables {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-emoji {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.float-emoji--1 { top: 10%; left: 5%; animation-delay: 0s; }
.float-emoji--2 { top: 20%; right: 10%; animation-delay: 1s; }
.float-emoji--3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.float-emoji--4 { top: 40%; right: 20%; animation-delay: 3s; }
.float-emoji--5 { bottom: 20%; right: 5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.float-star {
    position: absolute;
    font-size: 2rem;
    color: var(--yellow);
    animation: star 4s ease-in-out infinite;
}

.float-star--1 { top: 15%; right: 15%; animation-delay: 0s; }
.float-star--2 { bottom: 25%; left: 10%; animation-delay: 2s; }

@keyframes star {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ============================================
   BRUTALIST Featured Film
   ============================================ */
.featured-film {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-lg);
}

.film-poster {
    position: relative;
    border-right: var(--border);
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.film-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-sm);
}

.film-info {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticker {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    padding: var(--space-1) var(--space-3);
    border: 2px solid var(--red);
    margin-bottom: var(--space-4);
    width: fit-content;
}

.film-info h2 {
    margin-bottom: var(--space-4);
}

.film-tagline {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.film-narrator {
    font-size: var(--text-sm);
    color: var(--text-lighter);
    margin-bottom: var(--space-4);
}

.film-desc {
    margin-bottom: var(--space-6);
    max-width: 500px;
}

.platform-badges {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.platform-badge {
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

/* ============================================
   BRUTALIST Tour Section
   ============================================ */
.tour-section {
    background: var(--yellow);
    border-top: var(--border);
    border-bottom: var(--border);
}

.tour-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.tour-header .eyebrow {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-lighter);
}

.tour-header h2 {
    margin-bottom: var(--space-2);
}

.tour-list {
    border: var(--border);
}

.tour-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-4) var(--space-6);
    border-bottom: var(--border);
    background: var(--white);
    transition: background var(--transition-fast);
}

.tour-item:last-child {
    border-bottom: none;
}

.tour-item:hover {
    background: var(--yellow);
}

.tour-date {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--red);
    min-width: 100px;
}

.tour-location {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
}

.tour-venue {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-lighter);
}

.ticket-btn {
    margin-left: auto;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ticket-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-md);
}

.tour-promo {
    text-align: center;
    padding: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
}

/* ============================================
   BRUTALIST Video Showcase
   ============================================ */
.video-showcase {
    padding: var(--section-padding);
}

.video-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: var(--border);
}

.video-showcase-title {
    margin: 0;
}

.video-showcase-title span {
    color: var(--red);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.video-card {
    display: block;
    background: var(--black);
    border: var(--border);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    overflow: hidden;
}

.video-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-xl);
}

.video-card-thumb {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-card-thumb .play-btn {
    width: 60px;
    height: 60px;
    background: var(--red);
    border: none;
    position: relative;
}

.video-card-thumb .play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--white);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-card-info {
    padding: var(--space-4);
    background: var(--white);
    border-top: var(--border);
}

.video-card-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

.video-card-meta {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lighter);
}

/* ============================================
   BRUTALIST Newsletter
   ============================================ */
.newsletter {
    background: var(--black);
    padding: var(--space-16) 0;
    border-top: var(--border);
}

.newsletter-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-6);
}

.newsletter-eyebrow {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--yellow);
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-base);
    border: var(--border);
    border-right: none;
    background: var(--white);
    color: var(--black);
}

.newsletter-form input::placeholder {
    color: var(--text-lighter);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--yellow);
}

/* ============================================
   BRUTALIST Footer
   ============================================ */
.site-footer {
    background: var(--black);
    color: var(--white);
    border-top: var(--border);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-12) var(--space-6);
}

.footer-brand {
    margin-bottom: var(--space-8);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-4);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
}

.footer-col h4 {
    font-size: var(--text-sm);
    color: var(--white);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-2);
}

.footer-col a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--yellow);
}

.social-links li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.social-links a::before {
    content: '►';
    font-size: 0.7em;
    color: var(--red);
}

.footer-newsletter h4 {
    border-bottom-color: var(--red);
}

.footer-newsletter p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form input {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    margin-bottom: var(--space-2);
    font-family: var(--font-body);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--red);
    color: var(--white);
    font-size: var(--text-lg);
    border: 2px solid var(--red);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

.footer-made-with {
    font-family: var(--font-accent);
    font-size: var(--text-xs) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   BRUTALIST Search Modal
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 10, 0.95);
    z-index: var(--z-modal);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
}

.search-overlay.active {
    display: flex;
}

.search-modal {
    width: 100%;
    max-width: 600px;
    padding: 0 var(--space-6);
}

.search-modal-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: var(--border);
    font-size: var(--text-2xl);
    cursor: pointer;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: var(--space-4);
    font-size: var(--text-xl);
    color: var(--text-lighter);
}

.search-input {
    width: 100%;
    padding: var(--space-5);
    padding-left: var(--space-12);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    text-transform: uppercase;
    border: var(--border);
    background: var(--white);
    color: var(--black);
}

.search-input:focus {
    outline: none;
    box-shadow: var(--shadow-lg);
}

.search-clear {
    position: absolute;
    right: var(--space-4);
    width: 32px;
    height: 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: var(--text-lg);
}

.search-results {
    margin-top: var(--space-4);
    background: var(--white);
    border: var(--border);
}

/* ============================================
   BRUTALIST Video Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 10, 0.95);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background: var(--black);
    border: var(--border);
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: var(--border);
    font-size: var(--text-2xl);
    cursor: pointer;
    z-index: 1;
}

.video-modal-body {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--white);
}

.video-placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-4);
    color: var(--red);
}

.video-placeholder-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.video-placeholder-sub {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BRUTALIST Skip Link
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: var(--border);
    z-index: 9999;
}

.skip-link:focus {
    top: var(--space-4);
}

/* ============================================
   BRUTALIST Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive - Mobile Brutalist
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .featured-film {
        grid-template-columns: 1fr;
    }

    .film-poster {
        border-right: none;
        border-bottom: var(--border);
        max-height: 400px;
        overflow: hidden;
    }

    .film-poster img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--yellow);
        border-bottom: var(--border);
        z-index: 100;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin-left: 0;
    }

    .nav-list a {
        border: none;
        border-bottom: var(--border);
        margin-left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .search-trigger {
        display: none;
    }

    .hero-content {
        padding: var(--space-8);
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .video-showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: var(--border);
        margin-bottom: var(--space-2);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   BRUTALIST LAYOUT - New Homepage Sections
   ============================================ */

/* HERO BLOCK */
.hero-block {
    min-height: 90vh;
    background: var(--black);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}

.hero-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.hero-block-content {
    padding: var(--space-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-block-label {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: var(--space-6);
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border: 2px solid var(--red);
}

.hero-block-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-8);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--yellow);
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 3px var(--white);
}

.hero-block-text {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
    line-height: 1.5;
}

.hero-block-ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-block-visual {
    position: relative;
    border-left: var(--border);
    background: var(--red);
}

.hero-cast-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.mosaic-cell {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--black);
}

.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.2s ease;
}

.mosaic-cell:hover img {
    filter: grayscale(0%);
}

.mosaic-cell--5 {
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-mark {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
}

.hero-block-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--yellow) 0px,
        var(--yellow) 40px,
        var(--black) 40px,
        var(--black) 80px
    );
}

/* STATS BAR */
.stats-bar {
    background: var(--yellow);
    border-bottom: var(--border);
}

.stats-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--black);
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

.stat-divider {
    font-size: var(--text-xl);
    color: var(--black);
}

/* FILM BLOCK */
.film-block {
    padding: var(--space-12) 0;
    border-bottom: var(--border);
}

.film-block-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-8);
    align-items: center;
}

.film-poster-block {
    position: relative;
    border: var(--border);
    box-shadow: var(--shadow-lg);
}

.film-poster-block img {
    width: 100%;
    display: block;
}

.film-poster-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    border: var(--border);
}

.film-details-block {
    padding: var(--space-6);
}

.film-label {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border: 2px solid var(--red);
    margin-bottom: var(--space-4);
}

.film-title {
    margin-bottom: var(--space-4);
}

.film-quote {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.film-narrator {
    font-size: var(--text-sm);
    color: var(--text-lighter);
    margin-bottom: var(--space-4);
}

.film-desc {
    margin-bottom: var(--space-6);
    max-width: 500px;
}

.film-platforms {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.platform-btn {
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    transition: all 0.1s ease;
}

.platform-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

/* PROJECTS SECTION */
.projects-section {
    padding: var(--space-12) 0;
    background: var(--off-white);
    border-bottom: var(--border);
}

.projects-header {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.projects-title {
    margin: 0;
}

.projects-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.project-card {
    display: block;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-md);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.project-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-xl);
}

.project-card-thumb {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: var(--border);
}

.project-card-play {
    width: 60px;
    height: 60px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--white);
}

.project-card-tag {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--black);
}

.project-card-info {
    padding: var(--space-4);
}

.project-card-info h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-1);
}

.project-card-info p {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lighter);
}

/* TOUR SECTION */
.tour-section {
    background: var(--yellow);
    border-bottom: var(--border);
}

.tour-section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-12) var(--space-6);
}

.tour-header-block {
    text-align: center;
    margin-bottom: var(--space-8);
}

.tour-eyebrow {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-lighter);
}

.tour-header-block h2 {
    margin: var(--space-2) 0;
}

.tour-dates-list {
    border: var(--border);
    background: var(--white);
}

.tour-date-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-4) var(--space-6);
    border-bottom: var(--border);
}

.tour-date-item:last-child {
    border-bottom: none;
}

.tour-date-day {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-lighter);
    min-width: 60px;
}

.tour-date-num {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--red);
    min-width: 50px;
}

.tour-date-info {
    flex: 1;
}

.tour-date-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
}

.tour-date-info span {
    font-size: var(--text-sm);
    color: var(--text-lighter);
}

.tour-promo-block {
    text-align: center;
    padding: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
}

/* YOUTUBE SECTION */
.youtube-section {
    background: var(--red);
    padding: var(--space-12) 0;
    border-bottom: var(--border);
}

.youtube-section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.youtube-content {
    flex: 1;
}

.youtube-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-4);
}

.youtube-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.youtube-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
}

.youtube-stats {
    display: flex;
    gap: var(--space-4);
}

.yt-stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-4) var(--space-6);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.yt-stat strong {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    display: block;
}

.yt-stat span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* NEWSLETTER SECTION */
.newsletter-section {
    background: var(--black);
    padding: var(--space-16) 0;
    border-bottom: var(--border);
}

.newsletter-inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-6);
    text-align: center;
}

.newsletter-eyebrow {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--yellow);
}

.newsletter-section h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
}

/* BUTTON VARIANTS */
.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.btn-black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-black:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ============================================
   RESPONSIVE - New Layout
   ============================================ */
@media (max-width: 1024px) {
    .hero-block-inner {
        grid-template-columns: 1fr;
    }

    .hero-block-visual {
        display: none;
    }

    .film-block-inner {
        grid-template-columns: 1fr;
    }

    .film-poster-block {
        max-height: 400px;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero-block-content {
        padding: var(--space-8);
    }

    .hero-block-ctas {
        flex-direction: column;
    }

    .hero-block-ctas .btn {
        width: 100%;
    }

    .stats-bar-inner {
        gap: var(--space-4);
    }

    .stat-divider {
        display: none;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .youtube-section-inner {
        flex-direction: column;
        text-align: center;
    }

    .youtube-stats {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: var(--border);
        margin-bottom: var(--space-2);
    }
}

@media (max-width: 480px) {
    .tour-date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .tour-date-item .btn {
        width: 100%;
        text-align: center;
    }
}
