/* ================================================================
   VLADIMIR KOPTSEV — Premium Filmmaker Portfolio
   Design Direction: Cinematic editorial, sharp geometry,
   restrained warm palette, film grain authenticity
   ================================================================ */

/* --- 1. Design Tokens ----------------------------------------- */
:root {
    --bg: #08090b;
    --bg-surface: #0e1014;
    --bg-card: rgba(255, 255, 255, 0.022);
    --text: #ece8df;
    --text-secondary: #b0aa9f;
    --text-muted: #6d675e;
    --accent: #b89658;
    --accent-hover: #cba86a;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(184, 150, 88, 0.16);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 3px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-color: rgba(184, 150, 88, 0.2) transparent;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

main { display: block; }

section[id] { scroll-margin-top: 100px; }

a, button { outline: none; }
a:focus-visible, button:focus-visible {
    outline: 1px solid var(--accent);
    outline-offset: 3px;
}

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

/* --- 3. Film Grain Overlay ------------------------------------ */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
    mix-blend-mode: overlay;
}

/* --- 4. Custom Scrollbar -------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(184, 150, 88, 0.18);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(184, 150, 88, 0.3); }

/* --- 5. Accessibility ----------------------------------------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: var(--bg);
    padding: 0.75rem 1rem;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- 6. Typography -------------------------------------------- */
h1, h2, h3, h4,
.film-title,
.press-kit-title,
.contact-email {
    font-family: var(--font-display);
    color: var(--text);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.02em;
}

/* --- 7. Navigation -------------------------------------------- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.6rem clamp(1.25rem, 3vw, 3rem);
    z-index: 99;
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.88), rgba(8, 9, 11, 0));
    transition: all 0.5s var(--ease-smooth);
}

nav.scrolled {
    background: rgba(8, 9, 11, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding-block: 1.1rem;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 40px;
}

.nav-links {
    display: flex;
    gap: clamp(1.8rem, 2.4vw, 3rem);
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: rgba(236, 232, 223, 0.7);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding-bottom: 0.4rem;
    position: relative;
    transition: color 0.35s;
}

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

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--accent); }
.nav-links a.is-active::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.6rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.4rem 0.2rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.lang-btn:hover { color: var(--text-secondary); }
.lang-btn.active { color: var(--accent); }

/* --- 8. Mobile Menu ------------------------------------------- */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    z-index: 102;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 9, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-overlay a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.mobile-menu-overlay a:hover { color: var(--accent); }
.mobile-menu-overlay a.is-active { color: var(--accent); }

.mobile-menu-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

/* --- 9. Sections Common --------------------------------------- */
section {
    padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 2.5rem);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

/* --- 10. Hero ------------------------------------------------- */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(6rem, 12vh, 9rem) 2rem clamp(4rem, 8vh, 6rem);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(800px, 90vw);
    height: min(500px, 50vw);
    background: radial-gradient(ellipse, rgba(184, 150, 88, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(4.2rem, 10.5vw, 9.5rem);
    font-weight: 300;
    line-height: 0.92;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

#hero-name {
    font-size: clamp(4.2rem, 10vw, 9rem);
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-divider {
    width: 1px;
    height: clamp(60px, 9vh, 100px);
    background: linear-gradient(180deg, rgba(184, 150, 88, 0.8), rgba(184, 150, 88, 0.08));
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.hero-divider::after {
    content: '';
    position: absolute;
    left: -1px;
    width: 3px;
    height: 32px;
    background: linear-gradient(180deg, rgba(203, 168, 106, 0), rgba(203, 168, 106, 0.9), rgba(203, 168, 106, 0));
    filter: drop-shadow(0 0 4px rgba(203, 168, 106, 0.4));
    animation: dividerFlow 2.4s ease-in-out infinite;
}

@keyframes dividerFlow {
    0% { transform: translateY(-110%); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(280%); opacity: 0; }
}

.hero-description {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 3.5rem;
    font-weight: 300;
    line-height: 1.75;
    text-wrap: balance;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.4rem;
    border: 1px solid var(--border-accent);
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* --- 11. Projects (In Production) ----------------------------- */
.projects {
    display: flex;
    flex-direction: column;
    gap: clamp(5rem, 8vw, 8rem);
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    position: relative;
}

.project-image {
    max-width: 520px;
}

.project-card:nth-child(even) .project-image {
    margin-left: auto;
}

.js .project-card {
    opacity: 0;
    transform: translateY(40px);
}

.js .project-card.visible {
    opacity: 1;
    transform: none;
}

.project-card:nth-child(even) .project-image { order: 2; }
.project-card:nth-child(even) .project-content { order: 1; }

.project-image {
    aspect-ratio: 2/3;
    background: var(--bg-surface);
    border: none;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.5s, transform 0.6s var(--ease-out);
}

.project-image.loaded img { opacity: 1; }

@media (hover: hover) and (pointer: fine) {
    .project-card:hover .project-image img {
        transform: scale(1.02);
    }
}

.project-fallback {
    position: absolute;
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    padding: 1rem;
}

.project-image.loaded .project-fallback { opacity: 0; }

.project-content {
    position: relative;
    padding-left: clamp(1.5rem, 2.5vw, 2.5rem);
}

.project-content::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-accent), transparent);
}

.project-card:nth-child(even) .project-content {
    padding-left: 0;
    padding-right: clamp(1.5rem, 2.5vw, 2.5rem);
}

.project-card:nth-child(even) .project-content::before {
    left: auto; right: 0;
}

.project-status {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.project-content h3 {
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    font-weight: 400;
    line-height: 0.98;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.project-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 50ch;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.project-link {
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid transparent;
}

.project-link:hover {
    border-bottom-color: var(--accent);
    gap: 0.75rem;
}

.project-link.secondary {
    color: var(--text-muted);
    border-bottom-color: var(--border);
}

.project-link.secondary:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.project-link.muted {
    color: var(--text-muted);
    border-bottom-color: var(--border);
    cursor: not-allowed;
}

/* --- 12. Section Divider -------------------------------------- */
.section-divider {
    text-align: center;
    margin: clamp(4rem, 7vw, 7rem) 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: var(--border);
}

.section-divider span {
    background: var(--bg);
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
}

/* --- 13. Filmography (Completed Films) ------------------------ */
.filmography {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.film-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all 0.5s var(--ease-out);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
}

.js .film-item {
    opacity: 0;
    transform: translateY(30px);
}

.js .film-item.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.film-item:hover {
    border-color: var(--border-accent);
    background: rgba(255, 255, 255, 0.032);
}

.film-poster-wrap {
    margin: -0.25rem -0.25rem 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-surface);
    aspect-ratio: 1131 / 1600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.film-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.film-item:hover .film-poster {
    transform: scale(1.02);
}

.film-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.film-year {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.film-type {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: right;
}

.film-title {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.film-role {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.film-awards {
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.film-awards li {
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.film-awards li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 0.7em;
}

.film-awards li.award-win {
    color: var(--accent-hover);
    font-weight: 500;
}

.film-awards li.award-win::before {
    content: '\2605';
    color: var(--accent);
}

/* Awards "More" toggle */
details.awards-more {
    margin-top: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

details.awards-more summary {
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    list-style: none;
    transition: color 0.3s;
}

details.awards-more summary::-webkit-details-marker { display: none; }
details.awards-more summary:hover { color: var(--accent); }

/* Film Watch Link */
.film-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.film-link:hover {
    border-bottom-color: var(--accent);
    color: var(--accent-hover);
}

/* --- 14. About Section ---------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.js .stats {
    opacity: 0;
    transform: translateY(30px);
}

.js .stats.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* About Card */
.about {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: clamp(2rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    border-radius: var(--radius);
}

.js .about {
    opacity: 0;
    transform: translateY(30px);
}

.js .about.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.about-text > p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-text > p:nth-of-type(1),
.about-text > p:nth-of-type(2) {
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
}

/* Bio expand */
.bio-more {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.bio-more summary {
    cursor: pointer;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    list-style: none;
    transition: color 0.3s;
}

.bio-more summary::-webkit-details-marker { display: none; }

.bio-more summary::after {
    content: '\25BE';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.2s;
}

.bio-more:not([open]) summary::after {
    transform: rotate(-90deg);
}

.bio-more summary:hover { color: var(--accent-hover); }

.bio-more-body { margin-top: 1.25rem; }

.bio-more-body p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.bio-link {
    display: inline-block;
    margin-top: 0.35rem;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

.bio-link:hover {
    border-bottom-color: var(--accent);
    color: var(--accent-hover);
}

/* About Side */
.about-side {
    position: sticky;
    top: 110px;
    align-self: start;
}

.about-portrait {
    margin: 0 0 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-portrait img {
    width: 100%;
    height: auto;
    filter: grayscale(1) contrast(1.04) brightness(0.92);
    transition: filter 0.6s;
}

.about-portrait:hover img {
    filter: grayscale(0.3) contrast(1.02) brightness(0.96);
}

/* Education */
.education-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.education-list li {
    margin-bottom: 1.25rem;
    list-style: none;
    padding-left: 1.25rem;
    border-left: 1px solid var(--border-accent);
    position: relative;
}

.education-list li::before {
    content: '';
    position: absolute;
    left: -3px; top: 0.6rem;
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.ed-year {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.ed-school {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.15rem;
    font-family: var(--font-body);
    line-height: 1.35;
}

.ed-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.5;
}

/* --- 15. Press Kit -------------------------------------------- */
.press-kit {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: clamp(2rem, 4vw, 3.5rem);
    margin-top: 3.5rem;
    border-radius: var(--radius);
}

.js .press-kit {
    opacity: 0;
    transform: translateY(30px);
}

.js .press-kit.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.press-kit-title {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.press-kit-desc {
    color: var(--text-secondary);
    max-width: 52ch;
    margin-bottom: 1.5rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.press-kit-list {
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.press-kit-list li {
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
}

.press-kit-list li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.7em;
}

.press-kit-note {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 2rem;
    max-width: 48ch;
}

.press-kit-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.2rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-smooth);
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-accent);
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: var(--radius);
}

.btn-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* --- 16. Contact ---------------------------------------------- */
.contact {
    text-align: center;
    padding: clamp(6rem, 10vw, 10rem) 2rem;
}

.js .contact {
    opacity: 0;
    transform: translateY(30px);
}

.js .contact.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-email {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.03em;
    transition: color 0.4s;
    line-height: 1;
}

.contact-email:hover { color: var(--accent); }

.contact-location {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid transparent;
}

.contact-social a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.text-muted {
    color: var(--text-muted);
}

/* --- 17. Footer ----------------------------------------------- */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 0.04em;
}

/* --- 18. Responsive ------------------------------------------- */
@media (max-width: 1280px) {
    .filmography {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1120px) {
    .lang-switcher {
        position: fixed;
        right: 4.75rem;
        top: 1.6rem;
        transform: none;
    }

    .mobile-menu-btn { display: flex; }
    .nav-links { display: none; }
}

@media (max-width: 968px) {
    .project-card,
    .about {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-card:nth-child(even) .project-image,
    .project-card:nth-child(even) .project-content { order: initial; }

    .project-content::before,
    .project-card:nth-child(even) .project-content::before { display: none; }

    .project-content {
        padding-left: 0;
    }

    .project-card:nth-child(even) .project-content {
        padding-right: 0;
    }

    .about { padding: 2rem; }
    .about-side { position: static; }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.25rem;
    }

    #hero-name {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .hero-description {
        font-size: 0.98rem;
        max-width: 24rem;
    }

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

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .press-kit { padding: 1.5rem; }

    .press-kit-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .contact-social {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* --- 19. Reduced Motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .js .project-card,
    .js .film-item,
    .js .stats,
    .js .about,
    .js .press-kit,
    .js .contact {
        opacity: 1;
        transform: none;
    }
}
