/* ============================================
   ESTUDIO 9 — CINE Y TELEVISIÓN
   Premium Cinematic Theme
   ============================================ */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gold: #c9a84c;
    --gold-light: #e0c873;
    --gold-dark: #a88a3a;
    --white: #f5f5f5;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --gray-dark: #444444;
    --red: #8b1a1a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--gold-light);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader p {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-top: 1.5rem;
}

.film-strip {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.film-strip span {
    width: 12px;
    height: 40px;
    background: var(--gold);
    border-radius: 2px;
    animation: filmPulse 1s ease-in-out infinite;
}

.film-strip span:nth-child(2) { animation-delay: 0.1s; }
.film-strip span:nth-child(3) { animation-delay: 0.2s; }
.film-strip span:nth-child(4) { animation-delay: 0.3s; }
.film-strip span:nth-child(5) { animation-delay: 0.4s; }

@keyframes filmPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ---- Header / Nav ---- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease);
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--white);
}

.logo-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.5rem 1.1rem;
    transition: all 0.3s var(--ease);
}

.nav-links a.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.nav-links a.nav-cta::after {
    display: none;
}

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

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

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

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.85) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh); }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.line-1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gray-light);
    animation-delay: 0.7s !important;
}

.line-2 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--white);
    animation-delay: 0.9s !important;
}

.line-2 em {
    color: var(--gold);
    font-style: italic;
}

.line-3 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    animation-delay: 1.1s !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 2s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem 0;
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ---- Sections ---- */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

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

.section-title.light {
    color: var(--white);
}

.title-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.title-line.light {
    background: var(--gold);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-light);
    font-size: 1.05rem;
}

/* ---- About ---- */
.about {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--gold);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value {
    text-align: center;
}

.value-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.85rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.icon-svg {
    display: inline-block;
    vertical-align: middle;
    color: var(--gold);
}

.placeholder-icon-svg {
    width: 56px;
    height: 56px;
    color: var(--gray-dark);
    opacity: 0.6;
}

.value h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.value p {
    font-size: 0.85rem;
    color: var(--gray);
}

.about-visual {
    position: relative;
}

.film-frame {
    position: relative;
    background: var(--dark-2);
    padding: 1.5rem 3rem;
    border: 1px solid var(--dark-3);
}

.film-frame-inner {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black);
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.95);
}

.founder-frame {
    background: var(--dark-2);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid var(--dark-3);
}

.placeholder-img span {
    color: var(--gray-dark);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.placeholder-icon {
    font-size: 3rem !important;
    opacity: 0.5;
}

.placeholder-icon svg {
    width: 56px;
    height: 56px;
    color: var(--gray-dark);
}

.film-perforations {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1rem 0;
}

.film-perforations.left {
    left: 0.75rem;
}

.film-perforations.right {
    right: 0.75rem;
}

.film-perforations span {
    width: 10px;
    height: 14px;
    border-radius: 2px;
    border: 1px solid var(--gray-dark);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--black);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* ---- Founder ---- */
.founder {
    background: var(--black);
    overflow: hidden;
}

.founder-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.founder-frame {
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.2);
    position: relative;
}

.founder-placeholder {
    background: linear-gradient(180deg, var(--dark-2), var(--dark-3));
}

.founder-label {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    padding: 0.5rem 2rem;
}

.founder-label span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--black);
    text-transform: uppercase;
}

.founder-content .section-tag {
    text-align: left;
    display: block;
}

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

.founder-content .title-line {
    margin: 1.5rem 0;
}

.founder-role {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-content p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.founder-content strong {
    color: var(--gold);
}

.founder-quote {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.founder-quote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--white) !important;
    line-height: 1.6;
}

.founder-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--gold);
    font-style: normal;
}

/* ---- Disciplines ---- */
.disciplines {
    background: var(--dark);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.discipline-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.discipline-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.discipline-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.08);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
}

.discipline-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.discipline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.discipline-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.method-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem;
}

.method-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.method-content p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--white);
}

.feature-check {
    color: var(--gold);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 100%;
    height: 100%;
}

/* ---- Productions ---- */
.productions {
    background: var(--black);
}

.productions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.production-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    position: relative;
}

.production-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.production-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.production-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    z-index: 2;
}

.production-badge-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.6rem 1.1rem;
    font-size: 0.75rem;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
    transition: all 0.3s var(--ease);
    overflow: hidden;
}

.production-badge-cta:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

.production-badge-cta svg {
    flex-shrink: 0;
}

.badge-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    pointer-events: none;
    animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.production-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black);
}

.prod-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.production-card:hover .prod-cover {
    transform: scale(1.04);
}

.production-card.featured .production-img {
    aspect-ratio: auto;
    min-height: 300px;
}

.production-img .placeholder-img {
    min-height: 100%;
}

.production-content {
    padding: 2rem;
}

.production-tag {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.production-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin: 0.5rem 0 1rem;
}

.production-content p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.production-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gold);
}

.production-cast {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.production-cast strong {
    color: var(--gold);
}

.past-productions {
    border-top: 1px solid var(--dark-3);
    padding-top: 3rem;
}

.past-productions h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.past-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.past-item {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s var(--ease);
}

.past-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.past-year {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.past-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.past-type {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- Actors ---- */
.actors {
    background: var(--dark);
}

.actor-card.highlight {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.actor-img .placeholder-img.small {
    width: 200px;
    height: 250px;
}

.highlight-photo {
    width: 200px;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.actor-info h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.actor-info p.actor-achievement {
    display: inline-block;
    background: var(--gold);
    color: #0a0a0a;
    padding: 0.35rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.actor-info p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.actor-mini {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: 1.5rem;
    transition: all 0.3s var(--ease);
}

.actor-mini:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.actor-mini h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.actor-mini p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ---- Memoriam ---- */
.memoriam {
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.memoriam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.memoriam-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: 2rem;
    border-top: 2px solid var(--gold);
    transition: all 0.3s var(--ease);
}

.memoriam-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.memoriam-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.memoriam-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ---- Contact ---- */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

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

.contact-info .title-line {
    margin: 1.5rem 0;
}

.contact-info > p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
    color: var(--gold);
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.contact-item a,
.contact-item span {
    color: var(--white);
    font-size: 0.95rem;
}

.contact-process h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-process ol {
    list-style: none;
    counter-reset: steps;
}

.contact-process li {
    counter-increment: steps;
    padding: 0.5rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.contact-process li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 24px;
    height: 24px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
}

.contact-form-wrap {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: 2.5rem;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s var(--ease);
    outline: none;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

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

/* ---- Footer ---- */
.footer {
    background: var(--black);
    border-top: 1px solid var(--dark-3);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.85rem;
    transition: color 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--gold);
}

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

.footer-bottom {
    border-top: 1px solid var(--dark-3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

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

.footer-producer {
    color: var(--gray-dark);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: var(--gray);
    transition: color 0.3s var(--ease);
}

.footer-legal-links a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: 1.5rem 1.75rem;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s var(--ease-out);
    max-width: 1100px;
    margin: 0 auto;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-banner-text strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.cookie-banner-text p {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.25rem;
    }

    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cookie-banner-actions {
        justify-content: stretch;
    }

    .cookie-banner-actions .btn {
        flex: 1;
    }
}

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

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid,
    .founder-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-content .section-tag,
    .founder-content .section-title {
        text-align: center;
    }

    .founder-content .title-line {
        margin: 1.5rem auto;
    }

    .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .past-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .memoriam-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s var(--ease);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 5rem 0;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .disciplines-grid {
        grid-template-columns: 1fr;
    }

    .productions-grid {
        grid-template-columns: 1fr;
    }

    .actor-card.highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .actor-img .placeholder-img.small {
        margin: 0 auto;
    }

    .memoriam-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-info .title-line {
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-bar .container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .past-grid {
        grid-template-columns: 1fr;
    }

    .actors-grid {
        grid-template-columns: 1fr;
    }
}

.memoriam-cta {
    text-align: center;
    margin-top: 3rem;
}
