/* ============================================
   THE ERGO COMPANY — Website Styles
   ============================================ */

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

:root {
    --orange: #f67611;
    --orange-light: #ff9a44;
    --orange-dark: #d4600a;
    --black: #0a0a0a;
    --dark: #141414;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gray: #848484;
    --gray-light: #a0a0a0;
    --gray-lighter: #c8c8c8;
    --white: #f5f5f5;
    --white-pure: #ffffff;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    width: 160px;
    margin: 0 auto 32px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    animation: loaderFill 1.5s var(--ease-in-out) forwards;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 12px 48px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    width: 140px;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 16px;
}

.nav-social a {
    color: var(--gray);
    transition: color 0.3s;
}

.nav-social a:hover {
    color: var(--orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gray);
    transition: all 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.open .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link:hover {
    color: var(--orange);
}

.mobile-menu-social {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.mobile-menu-social a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    transition: color 0.3s;
}

.mobile-menu-social a:hover {
    color: var(--orange);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.8) 100%);
}

.hero-bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 1.8s var(--ease-out) forwards;
}

.hero-tagline-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.hero-tagline-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white-pure);
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: heroReveal 1s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) .hero-title-word { animation-delay: 1.9s; }
.hero-title-line:nth-child(2) .hero-title-word:nth-child(1) { animation-delay: 2s; }
.hero-title-line:nth-child(2) .hero-title-word:nth-child(2) { animation-delay: 2.1s; }

.hero-title-accent {
    color: var(--orange);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 2.3s var(--ease-out) forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--orange);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 2.5s var(--ease-out) forwards;
}

.hero-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(246, 118, 17, 0.3);
}

.hero-cta svg {
    transition: transform 0.3s;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0;
    animation: heroFadeUp 0.8s 2.8s var(--ease-out) forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
    opacity: 0.08;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero-strip-inner {
    display: flex;
    gap: 12px;
    height: 100%;
    width: max-content;
    animation: stripScroll 40s linear infinite;
}

.hero-strip img {
    height: 100%;
    width: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

@keyframes stripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Section Common --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--white-pure);
}

.section-title em {
    color: var(--orange);
    font-style: italic;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* --- Films Section --- */
.films {
    padding: 120px 48px;
    max-width: 1500px;
    margin: 0 auto;
}

.film-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
    padding: 48px;
    background: var(--dark);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.film-featured-poster {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2/3;
    max-height: 500px;
}

.film-featured-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.film-featured:hover .film-featured-poster img {
    transform: scale(1.03);
}

.film-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--orange);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
}

.film-featured-info {
    padding: 24px 0;
}

.film-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.film-featured-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-pure);
}

.film-featured-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.film-featured-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.film-featured-meta span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Film Grid */
.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.film-card {
    cursor: pointer;
    transition: transform 0.4s var(--ease-out);
}

.film-card:hover {
    transform: translateY(-6px);
}

.film-card-poster {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2/3;
    margin-bottom: 12px;
}

.film-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.film-card:hover .film-card-poster img {
    transform: scale(1.06);
}

.film-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.film-card:hover .film-card-overlay {
    opacity: 1;
}

.film-card-view {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    padding: 8px 16px;
    border: 1px solid var(--orange);
    border-radius: 3px;
}

.film-card-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.film-card-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- About Section --- */
.about {
    padding: 120px 48px;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.about-img-1 {
    width: 65%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 55%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-stat {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 3;
    background: var(--orange);
    color: var(--black);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-label {
    text-align: left;
}

.about-content p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about-value {
    padding: 24px;
    background: var(--dark-2);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s;
}

.about-value:hover {
    border-color: rgba(246, 118, 17, 0.2);
}

.about-value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 118, 17, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--orange);
}

.about-value h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.about-value p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Producers Section --- */
.producers {
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.producers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.producer-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
    padding: 40px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.producer-card:hover {
    border-color: rgba(246, 118, 17, 0.15);
}

.producer-photo {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.producer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.4s;
}

.producer-card:hover .producer-photo img {
    filter: grayscale(0%);
}

.producer-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white-pure);
    margin-bottom: 4px;
}

.producer-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.producer-info p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.producer-email {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

.producer-email:hover {
    color: var(--orange);
}

/* --- Directors Section --- */
.directors {
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.director-card {
    position: relative;
    padding: 32px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s var(--ease-out);
}

.director-card:hover {
    border-color: rgba(246, 118, 17, 0.15);
    background: var(--dark-2);
    transform: translateY(-3px);
}

.director-card:hover::before {
    height: 100%;
}

.director-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    transition: color 0.3s;
}

.director-card:hover .director-name {
    color: var(--orange);
}

/* --- Marquee --- */
.marquee {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: var(--dark);
}

.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gray);
    opacity: 0.4;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* --- Contact Section --- */
.contact {
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-label {
    text-align: left;
}

.contact-info p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.contact-detail svg {
    color: var(--orange);
    flex-shrink: 0;
}

.contact-detail a {
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--orange);
}

.contact-social {
    display: flex;
    gap: 24px;
}

.contact-social a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.3s;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-social a:hover {
    color: var(--orange);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23848484' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    width: 100%;
    justify-content: center;
}

.form-submit:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 118, 17, 0.25);
}

/* --- Footer --- */
.footer {
    padding: 80px 48px 40px;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- Film Modal --- */
.film-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.film-modal.open {
    opacity: 1;
    visibility: visible;
}

.film-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.film-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s var(--ease-out);
}

.film-modal.open .film-modal-content {
    transform: translateY(0) scale(1);
}

.film-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.film-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
}

.film-modal-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 400px;
}

.film-modal-poster {
    background: var(--black);
    overflow: hidden;
}

.film-modal-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.film-modal-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.film-modal-info h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white-pure);
    margin-bottom: 28px;
    line-height: 1.2;
}

.film-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.film-modal-meta-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.film-modal-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    min-width: 90px;
}

.film-modal-meta-item span:last-child {
    font-size: 0.95rem;
    color: var(--white);
}

.film-modal-synopsis {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.film-modal-awards {
    font-size: 0.85rem;
    color: var(--orange);
    line-height: 1.6;
    margin-top: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: rgba(246, 118, 17, 0.08);
    border-left: 3px solid var(--orange);
    border-radius: 0 4px 4px 0;
}

.film-modal-trailer {
    margin: 0 32px 32px;
    position: relative;
    width: calc(100% - 64px);
    padding-bottom: calc(56.25% - 36px);
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.film-modal-trailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.film-modal-trailer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding: 10px 22px;
    background: var(--orange);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.film-modal-trailer-btn:hover {
    background: #e06a0f;
    transform: translateY(-1px);
}

.film-modal-trailer-btn svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .film-modal-body {
        grid-template-columns: 1fr;
    }
    .film-modal-poster {
        max-height: 300px;
    }
    .film-modal-info {
        padding: 28px;
    }
    .film-modal-info h2 {
        font-size: 1.6rem;
    }
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav { padding: 16px 32px; }
    .nav.scrolled { padding: 12px 32px; }
    .nav-links, .nav-social { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 120px 32px 80px; }

    .films { padding: 80px 32px; }
    .film-featured {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    .film-featured-poster {
        max-height: 400px;
    }
    .film-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    .about { padding: 80px 32px; }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-stack { height: 400px; }
    .about-values {
        grid-template-columns: 1fr;
    }

    .producers { padding: 80px 32px; }
    .producers-grid {
        grid-template-columns: 1fr;
    }
    .producer-card {
        grid-template-columns: 160px 1fr;
        gap: 24px;
        padding: 32px;
    }

    .directors { padding: 80px 32px; }
    .directors-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .contact { padding: 80px 32px; }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer { padding: 60px 32px 32px; }
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-nav { gap: 48px; }
}

@media (max-width: 640px) {
    .nav { padding: 14px 20px; }
    .nav.scrolled { padding: 10px 20px; }
    .nav-logo { width: 110px; }

    .hero { padding: 100px 20px 60px; }
    .hero-desc { font-size: 0.95rem; }
    .hero-strip { height: 120px; }

    .films { padding: 60px 20px; }
    .film-featured { padding: 24px; }
    .film-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .film-card-info h4 { font-size: 0.8rem; }
    .film-card-info span { font-size: 0.7rem; }

    .about { padding: 60px 20px; }
    .about-image-stack { height: 300px; }
    .about-stat {
        bottom: 16px;
        left: 16px;
        padding: 16px 20px;
    }
    .about-stat-number { font-size: 2rem; }

    .producers { padding: 60px 20px; }
    .producer-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .producer-photo {
        max-width: 180px;
    }

    .directors { padding: 60px 20px; }
    .directors-grid {
        grid-template-columns: 1fr 1fr;
    }
    .director-card { padding: 20px; }
    .director-name { font-size: 1rem; }

    .contact { padding: 60px 20px; }
    .contact-form-wrap { padding: 28px; }

    .footer { padding: 48px 20px 24px; }
    .footer-nav { gap: 32px; }

    .mobile-link { font-size: 2.2rem; }

    .section-header { margin-bottom: 40px; }
}
