/* ============================================
   EVGENI BUDINOV — Design System
   Awwwards-level cinematic experience
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --bg: #080808;
    --bg-elevated: #0f0f0f;
    --bg-card: #141414;
    --surface: #1a1a1a;
    --gold: #c9a44c;
    --gold-light: #e4c76b;
    --gold-dark: #a0833a;
    --burgundy: #5c1a1a;
    --burgundy-light: #7a2525;
    --text: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: #222222;
    --border-light: #333333;

    /* Typography */
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-xs: clamp(0.7rem, 0.8vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.9vw, 0.9rem);
    --text-base: clamp(0.9rem, 1vw, 1rem);
    --text-lg: clamp(1.1rem, 1.2vw, 1.25rem);
    --text-xl: clamp(1.5rem, 2vw, 2rem);
    --text-2xl: clamp(2rem, 3vw, 3rem);
    --text-3xl: clamp(2.5rem, 4vw, 4rem);
    --text-4xl: clamp(3.5rem, 6vw, 6rem);
    --text-5xl: clamp(4rem, 8vw, 8rem);
    --text-6xl: clamp(5rem, 10vw, 10rem);

    /* Spacing */
    --space-xs: clamp(0.5rem, 1vw, 1rem);
    --space-sm: clamp(1rem, 2vw, 2rem);
    --space-md: clamp(2rem, 4vw, 4rem);
    --space-lg: clamp(4rem, 8vw, 8rem);
    --space-xl: clamp(6rem, 12vw, 12rem);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Reset & Base
   ============================================ */

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: var(--text-base);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--gold);
    color: var(--bg);
}

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

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

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ============================================
   Custom Cursor
   ============================================ */

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease-out-expo), width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--gold);
    mix-blend-mode: normal;
}

.cursor.view {
    width: 80px;
    height: 80px;
    background: var(--gold);
    mix-blend-mode: normal;
}

.cursor-text {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor.view + .cursor-text {
    opacity: 1;
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-text { display: none !important; }
    a, button { cursor: pointer; }
}

/* ============================================
   Preloader
   ============================================ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-sm);
}

.preloader-logo {
    font-size: var(--text-3xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    overflow: hidden;
}

.preloader-logo span {
    display: inline-block;
    transform: translateY(100%);
}

.preloader-bar {
    width: 120px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.preloader-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    transition: background 0.5s ease, padding 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-xs) var(--space-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1002;
}

.logo-mark {
    width: 46px;
    height: 46px;
    color: var(--gold);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.8s var(--ease-out-expo);
}

.logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-mark .ring-outer {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    transform-origin: 24px 24px;
    transition: opacity 0.4s ease;
}

.logo-mark .ring-inner {
    fill: none;
    stroke: currentColor;
    stroke-width: 0.5;
    opacity: 0.35;
    transform-origin: 24px 24px;
    animation: logoRingSpin 30s linear infinite;
}

.logo-mark .tick {
    fill: currentColor;
}

.logo-mark .mono {
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    fill: currentColor;
}

@keyframes logoRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-logo:hover .logo-mark {
    transform: rotate(90deg);
}

.nav-logo:hover .logo-mark .ring-outer {
    opacity: 0.6;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1;
}

.logo-text-top {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.logo-text-main {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}

.logo-text-main strong {
    color: var(--gold);
    font-weight: 800;
}

.nav-logo:hover .logo-text-top {
    color: var(--gold);
}

@media (max-width: 600px) {
    .logo-text-top { display: none; }
}

.nav-menu-btn {
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1002;
    border-radius: 50%;
    transition: all 0.5s var(--ease-out-expo);
}

.nav-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.nav-menu-btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-menu-btn.active::before {
    transform: scale(1);
    opacity: 1;
    border-color: var(--gold);
    background: rgba(201, 164, 76, 0.08);
}

.nav-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: all 0.5s var(--ease-out-expo);
    transform-origin: center;
    position: relative;
}

.nav-menu-btn span::after {
    content: '';
    position: absolute;
    inset: -4px -8px;
}

.nav-menu-btn.active {
    transform: rotate(90deg);
}

.nav-menu-btn.active span:first-child {
    transform: translateY(4.5px) rotate(45deg);
    background: var(--gold);
}

.nav-menu-btn.active span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
    background: var(--gold);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s var(--ease-out-expo);
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
    clip-path: inset(0 0 0 0);
    transition: opacity 0.6s var(--ease-out-expo), clip-path 0.9s var(--ease-out-expo);
}

/* Backdrop image */
.nav-overlay-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.2s var(--ease-out-expo) 0.2s;
}

.nav-overlay.active .nav-overlay-bg {
    opacity: 1;
}

.nav-overlay-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) grayscale(70%) contrast(1.05);
    transform: scale(1.15);
    transition: transform 12s ease-out;
}

.nav-overlay.active .nav-overlay-bg img {
    transform: scale(1);
}

.nav-overlay-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.85) 70%, var(--bg) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.7) 100%);
    z-index: 1;
}

/* Big stroke text behind everything */
.nav-overlay-stroke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 20rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 164, 76, 0.18);
    opacity: 0;
    transition: opacity 1.4s ease 0.4s, transform 1.4s var(--ease-out-expo) 0.4s;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
}

.nav-overlay.active .nav-overlay-stroke {
    opacity: 1;
}

/* Floating decorative thumbnails */
.nav-overlay-mosaic {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.nav-overlay-thumb {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.nav-overlay-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.85);
}

.nav-overlay.active .nav-overlay-thumb {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nav-overlay.active .nav-overlay-thumb:nth-child(1) { transition-delay: 0.45s; }
.nav-overlay.active .nav-overlay-thumb:nth-child(2) { transition-delay: 0.55s; }
.nav-overlay.active .nav-overlay-thumb:nth-child(3) { transition-delay: 0.65s; }
.nav-overlay.active .nav-overlay-thumb:nth-child(4) { transition-delay: 0.75s; }

.nav-overlay-thumb:nth-child(1) {
    width: 140px;
    height: 180px;
    top: 14%;
    left: 6%;
    transform-origin: top left;
    animation: floatThumb 9s ease-in-out infinite;
}

.nav-overlay-thumb:nth-child(2) {
    width: 110px;
    height: 150px;
    top: 18%;
    right: 8%;
    animation: floatThumb 11s ease-in-out infinite -3s;
}

.nav-overlay-thumb:nth-child(3) {
    width: 130px;
    height: 170px;
    bottom: 14%;
    left: 10%;
    animation: floatThumb 10s ease-in-out infinite -5s;
}

.nav-overlay-thumb:nth-child(4) {
    width: 160px;
    height: 200px;
    bottom: 10%;
    right: 6%;
    animation: floatThumb 12s ease-in-out infinite -7s;
}

@keyframes floatThumb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(0, -16px) rotate(0.6deg); }
}

.nav-overlay-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: var(--text-xs);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s ease 0.7s;
}

.nav-overlay.active .nav-overlay-side {
    opacity: 1;
}

.nav-overlay-side.left { left: var(--space-sm); }
.nav-overlay-side.right { right: var(--space-sm); transform: translateY(-50%) rotate(180deg); }

.nav-overlay-side strong {
    color: var(--gold);
    font-weight: 700;
}

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: var(--space-md) 0;
}

.nav-overlay-link {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    transition: color 0.4s ease, transform 0.5s var(--ease-out-expo), letter-spacing 0.5s var(--ease-out-expo);
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    padding: 0.35rem 1rem;
    opacity: 0;
    transform: translateY(40px);
}

.nav-overlay-link .nav-overlay-num {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
    font-variant-numeric: tabular-nums;
    align-self: center;
}

.nav-overlay-link:hover .nav-overlay-num {
    opacity: 1;
    transform: translateX(0);
}

.nav-overlay.active .nav-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay-link:nth-child(1) { transition-delay: 0.15s; }
.nav-overlay.active .nav-overlay-link:nth-child(2) { transition-delay: 0.22s; }
.nav-overlay.active .nav-overlay-link:nth-child(3) { transition-delay: 0.29s; }
.nav-overlay.active .nav-overlay-link:nth-child(4) { transition-delay: 0.36s; }
.nav-overlay.active .nav-overlay-link:nth-child(5) { transition-delay: 0.43s; }
.nav-overlay.active .nav-overlay-link:nth-child(6) { transition-delay: 0.50s; }

.nav-overlay-link::after {
    content: '';
    position: absolute;
    bottom: 0.4rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out-expo);
}

.nav-overlay-link:hover {
    color: var(--text);
    letter-spacing: 0.01em;
}

.nav-overlay-link:hover::after {
    width: 60%;
    left: 20%;
}

.nav-overlay-link.active {
    color: var(--gold);
}

.nav-overlay-link.active::before {
    content: '●';
    position: absolute;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5rem;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

/* Nav Overlay Close Button */
.nav-overlay-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s, color 0.3s ease;
}

.nav-overlay.active .nav-overlay-close {
    opacity: 1;
}

.nav-overlay-close:hover {
    color: var(--gold);
}

.nav-overlay-close-x {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.nav-overlay-close:hover .nav-overlay-close-x {
    border-color: var(--gold);
    transform: rotate(90deg);
}

.nav-overlay-close-x span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: background 0.3s ease;
}

.nav-overlay-close-x span:first-child {
    transform: rotate(45deg);
}

.nav-overlay-close-x span:last-child {
    transform: rotate(-45deg);
}

.nav-overlay-close:hover .nav-overlay-close-x span {
    background: var(--gold);
}

/* ============================================
   Layout
   ============================================ */

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 100%;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-lg) 0;
    position: relative;
}

.section-xl {
    padding: var(--space-xl) 0;
}

/* ============================================
   Typography
   ============================================ */

.heading-hero {
    font-size: var(--text-6xl);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.heading-1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.heading-2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.heading-3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.heading-4 {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
}

.body-large {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
}

.body-small {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-muted);
}

.label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    border: 1px solid transparent;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

/* ============================================
   Image Reveal
   ============================================ */

.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 1.2s var(--ease-out-expo);
}

.img-reveal.revealed img {
    transform: scale(1);
}

.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    transform-origin: right;
    transition: transform 1s var(--ease-out-expo);
}

.img-reveal.revealed::after {
    transform: scaleX(0);
}

/* ============================================
   Marquee
   ============================================ */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0 var(--space-sm);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
}

.marquee-item strong {
    color: var(--gold);
    font-weight: 800;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   Cards
   ============================================ */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: var(--space-md);
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease-out-expo);
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   Link Card
   ============================================ */

.link-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.link-card::after {
    content: '→';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: var(--text-xl);
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.link-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.link-card:hover::after {
    color: var(--gold);
    transform: translateX(4px);
}

.link-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 164, 76, 0.1);
    border-radius: 12px;
    margin-bottom: var(--space-xs);
}

.link-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.link-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
}

.link-card-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ============================================
   Gallery Grid
   ============================================ */

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

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: none;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.9);
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out-expo);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.6s var(--ease-out-expo);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--bg);
}

.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

.lightbox-counter {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-sm);
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ============================================
   Footer (redesigned)
   ============================================ */

.footer {
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    height: 140px;
    border-bottom: 1px solid var(--border);
}

.footer-mosaic-item {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.footer-mosaic-item:last-child { border-right: none; }

.footer-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) brightness(0.55);
    transition: filter 0.6s ease, transform 1s var(--ease-out-expo);
}

.footer-mosaic-item:hover img {
    filter: grayscale(0%) brightness(0.95);
    transform: scale(1.08);
}

.footer-mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.5) 100%);
    pointer-events: none;
}

.footer-signoff {
    padding: var(--space-lg) 0 var(--space-md);
    text-align: center;
    position: relative;
}

.footer-signoff-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.footer-col-title {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col-title::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease, transform 0.4s var(--ease-out-expo), padding-left 0.4s var(--ease-out-expo);
    position: relative;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 1rem;
}

.footer-col a::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    top: 0;
    opacity: 0;
    color: var(--gold);
    transition: opacity 0.3s ease, left 0.4s var(--ease-out-expo);
}

.footer-col a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-col-brand p {
    margin-bottom: var(--space-xs);
}

.footer-col-brand strong {
    color: var(--text);
    font-weight: 600;
}

.footer-brand-massive {
    font-size: clamp(4rem, 14vw, 14rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-light);
    text-align: center;
    padding: var(--space-md) 0;
    overflow: hidden;
    user-select: none;
    transition: color 0.6s ease, -webkit-text-stroke-color 0.6s ease;
    position: relative;
}

.footer-brand-massive:hover {
    color: var(--gold);
    -webkit-text-stroke-color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    font-size: var(--text-xs);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-bottom-meta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.footer-bottom-meta .sep {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-mosaic { grid-template-columns: repeat(4, 1fr); height: 100px; }
    .footer-mosaic-item:nth-child(n+5) { display: none; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
    .footer-mosaic { grid-template-columns: repeat(3, 1fr); height: 80px; }
    .footer-mosaic-item:nth-child(n+4) { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   Scroll progress bar
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    z-index: 1005;
    pointer-events: none;
    background: transparent;
}

.scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    box-shadow: 0 0 12px rgba(201, 164, 76, 0.6);
    transition: width 0.1s linear;
}

/* ============================================
   Live status chip (in nav)
   ============================================ */

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: border-color 0.3s ease;
}

.nav-status:hover {
    border-color: var(--gold);
}

.nav-status-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(201, 164, 76, 0.5);
    animation: pulseRing 2s ease-out infinite;
}

.nav-status-time {
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
    .nav-status { display: none; }
}

/* ============================================
   Cursor trail
   ============================================ */

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

@media (pointer: coarse) {
    .cursor-trail, .scroll-progress { display: none !important; }
}

/* ============================================
   Section indicator (live, right side)
   ============================================ */

.section-dots {
    position: fixed;
    top: 50%;
    right: var(--space-sm);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section-dots.visible { opacity: 1; }

.section-dot {
    width: 8px;
    height: 8px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s var(--ease-out-expo);
    pointer-events: auto;
    cursor: none;
}

.section-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(201, 164, 76, 0.15);
}

.section-dot:hover {
    border-color: var(--gold);
}

@media (max-width: 900px) {
    .section-dots { display: none; }
}

/* ============================================
   Utilities
   ============================================ */

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

.bg-elevated { background: var(--bg-elevated); }

.split-line {
    overflow: hidden;
    display: block;
}

.split-line-inner {
    display: block;
    transform: translateY(100%);
}

/* ============================================
   Scroll reveal base
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children via JS */

/* ============================================
   Page specific: Homepage
   ============================================ */

.hero-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

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

.hero-home-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(30%);
}

.hero-home-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-home-content {
    position: relative;
    z-index: 2;
}

.hero-home-label {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-home-label::before {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-home-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    max-width: 1000px;
}

.hero-home-title .line-2 {
    color: var(--gold);
}

.hero-home-desc {
    max-width: 500px;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.hero-home-stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-num {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* About teaser */

.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-teaser-img {
    position: relative;
}

.about-teaser-img-main {
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
}

.about-teaser-img-secondary {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--bg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.about-teaser-content {
    padding-left: var(--space-md);
}

/* Works list */

.works-list {
    display: flex;
    flex-direction: column;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr auto;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
    position: relative;
}

.work-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.work-item:hover {
    background: rgba(255,255,255,0.02);
}

.work-item:hover::before {
    transform: scaleY(1);
}

.work-year {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.work-title {
    font-size: var(--text-xl);
    font-weight: 700;
}

.work-meta {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: right;
}

.work-arrow {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.work-item:hover .work-arrow {
    color: var(--gold);
    transform: translateX(6px);
}

/* Featured section */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-sm);
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}

.featured-item:nth-child(1) { grid-column: span 5; }
.featured-item:nth-child(2) { grid-column: span 4; }
.featured-item:nth-child(3) { grid-column: span 3; }
.featured-item:nth-child(4) { grid-column: span 3; }
.featured-item:nth-child(5) { grid-column: span 5; }
.featured-item:nth-child(6) { grid-column: span 4; }

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}

.featured-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.featured-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-sm);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-item:hover .featured-item-overlay {
    opacity: 1;
}

/* Quote section */

.quote-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-size: var(--text-3xl);
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.quote-text strong {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

/* CTA section */

.cta-section {
    text-align: center;
    padding: var(--space-xl) 0;
}

.cta-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

/* ============================================
   Page: Biography
   ============================================ */

.bio-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-lg);
    position: relative;
}

.bio-hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: start;
}

.bio-img-wrapper {
    position: sticky;
    top: var(--space-lg);
}

.bio-img {
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
}

.bio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.bio-content p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.bio-content strong {
    color: var(--text);
    font-weight: 600;
}

.bio-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.bio-info-item {
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--border);
}

.bio-info-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.bio-info-value {
    font-weight: 600;
}

/* Timeline */

.timeline {
    position: relative;
    padding-left: var(--space-md);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-md) - 5px);
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg);
    box-shadow: 0 0 0 1px var(--gold);
}

.timeline-year {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ============================================
   Page: Filmography
   ============================================ */

.page-header {
    padding: calc(var(--space-xl) + 60px) 0 var(--space-lg);
}

.page-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-sm);
}

.film-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: var(--space-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

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

.film-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

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

.film-card-year {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.film-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.film-card-role {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.film-card-type {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    background: rgba(201, 164, 76, 0.1);
    color: var(--gold);
    border-radius: 100px;
}

/* ============================================
   Page: Theater
   ============================================ */

.theater-roles-list {
    display: flex;
    flex-direction: column;
}

.theater-role-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.theater-role-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theater-role-item:hover {
    background: rgba(255,255,255,0.02);
}

.theater-role-item:hover::before {
    opacity: 1;
}

.theater-role-play {
    font-size: var(--text-lg);
    font-weight: 700;
}

.theater-role-character {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.theater-role-character strong {
    color: var(--gold);
    font-weight: 600;
}

.theater-role-venue {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: right;
}

/* ============================================
   Page: Contact
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-info-item {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: var(--text-lg);
    font-weight: 600;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .nav-overlay-thumb:nth-child(1),
    .nav-overlay-thumb:nth-child(2) {
        width: 80px;
        height: 110px;
    }

    .nav-overlay-thumb:nth-child(3),
    .nav-overlay-thumb:nth-child(4) {
        width: 90px;
        height: 120px;
    }

    .nav-overlay-side { display: none; }

    .about-teaser,
    .bio-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-teaser-img-secondary {
        display: none;
    }

    .bio-img-wrapper {
        position: relative;
        top: 0;
    }

    .featured-item:nth-child(n) {
        grid-column: span 6;
    }

    .work-item {
        grid-template-columns: 1fr 1fr;
    }

    .work-meta,
    .work-arrow {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        align-items: flex-start;
    }

    .nav-overlay-link {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 768px) {
    .nav-overlay-mosaic { display: none; }
    .nav-overlay-stroke { font-size: clamp(6rem, 18vw, 10rem); }
    .image-strip { height: 200px; }
    .image-strip-item { width: 280px; height: 200px; }

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

    .heading-1 {
        font-size: var(--text-3xl);
    }

    .hero-home-stats {
        gap: var(--space-md);
    }

    .featured-item:nth-child(n) {
        grid-column: span 12;
    }

    .theater-role-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .theater-role-venue {
        text-align: left;
    }

    .work-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .lightbox-nav {
        display: none;
    }

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

    .metric-item:nth-child(2)::after {
        display: none;
    }

    .politics-teaser {
        grid-template-columns: 1fr;
    }

    .directing-cards {
        grid-template-columns: 1fr;
    }

    .gallery-categories {
        justify-content: center;
    }

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

/* ============================================
   Gallery Categories
   ============================================ */

.gallery-categories {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.gallery-cat-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.7rem 1.8rem;
    border-radius: 100px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: none;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.gallery-cat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.gallery-cat-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-cat-btn.active {
    border-color: var(--gold);
    color: var(--bg);
}

.gallery-cat-btn.active::before {
    transform: scaleX(1);
}

/* ============================================
   Moving Gradients
   ============================================ */

.moving-gradient {
    position: relative;
    overflow: hidden;
}

.moving-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 164, 76, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(92, 26, 26, 0.1) 0%, transparent 40%);
    animation: gradientMove 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, 5%) rotate(5deg); }
    66% { transform: translate(-5%, 3%) rotate(-3deg); }
}

/* ============================================
   Floating Animation
   ============================================ */

.float {
    animation: float 6s ease-in-out infinite;
}

.float-delay-1 { animation-delay: -2s; }
.float-delay-2 { animation-delay: -4s; }

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

/* ============================================
   Text Gradient
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 5s ease infinite;
}

@keyframes textGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ============================================
   Metrics Strip
   ============================================ */

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    position: relative;
}

.metrics-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.metrics-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.metric-item {
    text-align: center;
    position: relative;
    padding: var(--space-sm) 0;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border);
}

.metric-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   Cinematic Break
   ============================================ */

.cinematic-break {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinematic-break img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) grayscale(40%);
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.cinematic-break.revealed img {
    transform: scale(1);
}

.cinematic-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}

.cinematic-break-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-md);
}

.cinematic-break-text {
    font-size: var(--text-3xl);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--text);
}

.cinematic-break-text strong {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

/* ============================================
   Section Title Deco
   ============================================ */

.section-deco {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.section-deco-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-deco-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================
   Politics Teaser
   ============================================ */

.politics-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.politics-teaser-img {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
}

.politics-teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}

.politics-teaser:hover .politics-teaser-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ============================================
   Directing Cards
   ============================================ */

.directing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-sm);
}

.directing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: var(--space-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.directing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy-light), var(--gold));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.6s var(--ease-out-expo);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.directing-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.directing-card:hover::before {
    transform: scaleX(1);
}

.directing-card-year {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.directing-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.directing-card-venue {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ============================================
   Cinematic Overlays
   ============================================ */

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

.vignette {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
}

.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9996;
    top: -200px;
    right: -200px;
    animation: ambientPulse 8s ease-in-out infinite;
}

.ambient-glow-2 {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 26, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9996;
    bottom: -100px;
    left: -100px;
    animation: ambientPulse 10s ease-in-out infinite reverse;
}

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

/* ============================================
   Hero Collage Decorations
   ============================================ */

.hero-home-collage {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-home-frame {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(40px);
    animation: heroFrameIn 1.4s var(--ease-out-expo) forwards;
}

.hero-home-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.85);
    transform: scale(1.1);
    transition: transform 1.5s var(--ease-out-expo);
}

.hero-home-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.4) 100%);
    pointer-events: none;
}

.hero-home-frame-1 {
    width: 200px;
    height: 270px;
    top: 12%;
    right: 8%;
    animation-delay: 1.8s;
}

.hero-home-frame-2 {
    width: 160px;
    height: 220px;
    top: 38%;
    right: 22%;
    animation-delay: 2.1s;
}

.hero-home-frame-3 {
    width: 140px;
    height: 180px;
    top: 18%;
    right: 32%;
    animation-delay: 2.4s;
}

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

@media (max-width: 1024px) {
    .hero-home-frame { display: none; }
}

/* Tag pills inside hero */
.hero-home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.hero-home-tag {
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
}

.hero-home-tag.gold {
    color: var(--gold);
    border-color: rgba(201, 164, 76, 0.4);
    background: rgba(201, 164, 76, 0.06);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 3;
    writing-mode: vertical-rl;
}

.hero-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

/* ============================================
   Image Strip (between sections)
   ============================================ */

.image-strip {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.image-strip-track {
    display: flex;
    gap: 0;
    animation: stripScroll 60s linear infinite;
    flex-shrink: 0;
}

.image-strip:hover .image-strip-track {
    animation-play-state: paused;
}

.image-strip-item {
    position: relative;
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.image-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) brightness(0.75);
    transition: filter 0.6s ease, transform 1s var(--ease-out-expo);
}

.image-strip-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.image-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.2) 0%, transparent 50%, rgba(8,8,8,0.4) 100%);
    pointer-events: none;
}

@keyframes stripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   Politics Section — Background Image Variant
   ============================================ */

.politics-section-bg {
    position: relative;
    overflow: hidden;
}

.politics-section-bg .politics-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.politics-section-bg .politics-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) grayscale(80%);
    transform: scale(1.05);
}

.politics-section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(8,8,8,0.85) 35%, rgba(8,8,8,0.4) 65%, var(--bg) 100%),
        linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
    z-index: 1;
}

.politics-section-bg .container { position: relative; z-index: 2; }

/* ============================================
   CTA Section with Image Backdrop
   ============================================ */

.cta-section.cta-with-bg {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) grayscale(50%);
    transform: scale(1.05);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from { transform: scale(1.05) translate(0, 0); }
    to { transform: scale(1.15) translate(-2%, -1%); }
}

.cta-section.cta-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(8,8,8,0.7) 70%, var(--bg) 100%);
    z-index: 1;
}

.cta-section.cta-with-bg .container { position: relative; z-index: 2; }

/* ============================================
   Directing Cards — Hover Image Preview
   ============================================ */

.directing-card[data-img] {
    cursor: none;
}

.directing-card-preview {
    position: fixed;
    width: 280px;
    height: 360px;
    pointer-events: none;
    z-index: 9990;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
    border: 1px solid var(--border-light);
}

.directing-card-preview.active {
    opacity: 1;
    transform: scale(1);
}

.directing-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.directing-card-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 164, 76, 0.3);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .directing-card-preview { display: none !important; }
}

/* ============================================
   Now Featured (homepage strip)
   ============================================ */

.now-featured {
    position: relative;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    overflow: hidden;
}

.now-featured-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-md);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.now-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.now-featured-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 164, 76, 0.4);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(201, 164, 76, 0.5); }
    100% { box-shadow: 0 0 0 14px rgba(201, 164, 76, 0); }
}

.now-featured-title {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.now-featured-title strong {
    color: var(--gold);
}

.now-featured-meta {
    font-size: var(--text-sm);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .now-featured-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ============================================
   Career Pillars (homepage richer section)
   ============================================ */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.pillar {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-card);
    cursor: none;
}

.pillar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) brightness(0.65);
    transition: transform 1s var(--ease-out-expo), filter 0.6s ease;
}

.pillar:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(0.9);
}

.pillar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8,8,8,0.95) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.pillar-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-sm);
}

.pillar-num {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.pillar-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
    transform: translateY(8px);
    transition: transform 0.5s var(--ease-out-expo);
}

.pillar-desc {
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.pillar:hover .pillar-title {
    transform: translateY(0);
    color: var(--gold);
}

.pillar:hover .pillar-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Quote With Image (richer cinematic break)
   ============================================ */

.cinematic-break-author {
    margin-top: var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Stronger cinematic look */
.cinematic-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   Floating Decorative Elements
   ============================================ */

.section-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    font-size: clamp(8rem, 18vw, 14rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    white-space: nowrap;
    z-index: 0;
    user-select: none;
}

.section-decoration.top-right {
    top: 10%;
    right: -5%;
}

.section-decoration.bottom-left {
    bottom: 5%;
    left: -3%;
}

/* ============================================
   Page Header With Image Backdrop
   ============================================ */

.page-header {
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) grayscale(70%);
    transform: scale(1.1);
    animation: kenBurns 25s ease-in-out infinite alternate;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.5) 60%, var(--bg) 100%),
        linear-gradient(90deg, var(--bg) 0%, transparent 30%, transparent 70%, rgba(8,8,8,0.6) 100%);
}

.page-header .container { position: relative; z-index: 2; }

/* ============================================
   Theater & Film Page Decorations
   ============================================ */

.poster-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin: var(--space-md) 0;
}

.poster-strip-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}

.poster-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) brightness(0.8);
    transition: filter 0.5s ease, transform 0.8s var(--ease-out-expo);
}

.poster-strip-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    .poster-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .poster-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Contact Page Portrait Card
   ============================================ */

.contact-portrait {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: var(--space-md);
    position: relative;
}

.contact-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 1s var(--ease-out-expo), filter 0.5s ease;
}

.contact-portrait:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.contact-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,0.5) 100%);
    pointer-events: none;
}

/* ============================================
   Theater Roles With Image Hover
   ============================================ */

.theater-role-item {
    cursor: none;
}

/* ============================================
   Preloader fallback
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .preloader {
        animation: preloaderTimeout 5s forwards;
        animation-delay: 4s;
    }
}

@keyframes preloaderTimeout {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Text reveal with clip */
.text-clip-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s var(--ease-out-expo);
}

.text-clip-reveal.revealed {
    clip-path: inset(0 0% 0 0);
}

/* Hover image zoom for cards */
.card-image {
    overflow: hidden;
    border-radius: 4px;
}

.card-image img {
    transition: transform 0.8s var(--ease-out-expo);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

/* Line decoration */
.line-deco {
    width: 60px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}

/* Skew on scroll effect container */
.skew-container {
    transition: transform 0.1s linear;
}

/* ============================================
   Reduced motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track {
        animation: none;
    }

    body {
        cursor: auto;
    }

    .cursor, .cursor-text {
        display: none !important;
    }
}
