/* ═══════════════════════════════════════════════════════════
   A SHOOTING STAR PRODUCTIONS — V2: VISUAL SHOWCASE
   Cinematic. Raw. Bold. Premium. Disruptive.
   Images everywhere. 21st.dev-inspired motion.
   ═══════════════════════════════════════════════════════════ */

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

:root {
    --black: #0A0A0A;
    --black-rich: #050505;
    --charcoal: #141414;
    --charcoal-light: #1E1E1E;
    --gray-dark: #2A2A2A;
    --gray-mid: #4A4A4A;
    --gray-light: #8A8A8A;
    --cream: #F0EDE6;
    --cream-dim: #C8C4BC;
    --white: #FAF9F6;
    --gold: #B8934B;
    --gold-dim: #8A6E38;
    --gold-bright: #D4AF5C;

    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-editorial: 'Cormorant', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --duration-fast: 0.3s;
    --duration-mid: 0.6s;
    --duration-slow: 1s;
    --duration-cinematic: 1.4s;

    --nav-height: 72px;
    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 4vw, 4rem);
}

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

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

a { color: inherit; text-decoration: none; cursor: none; }
button, select { cursor: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--black); }


/* ── FILM GRAIN ── */
#grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    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)'/%3E%3C/svg%3E");
    animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}


/* ── CUSTOM CURSOR ── */
#cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: -3px; left: -3px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    position: absolute;
    top: -20px; left: -20px;
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo),
                top 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo),
                border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.cursor-text {
    position: absolute;
    top: -10px; left: 30px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.cursor-hover .cursor-ring {
    width: 80px; height: 80px;
    top: -40px; left: -40px;
    border-color: var(--gold);
    background: rgba(184,147,75,0.06);
}

body.cursor-project .cursor-ring {
    width: 100px; height: 100px;
    top: -50px; left: -50px;
    border-color: var(--gold);
    background: rgba(184,147,75,0.1);
}

body.cursor-project .cursor-text {
    opacity: 1;
}

body.cursor-project .cursor-dot {
    opacity: 0;
}


/* ── PRELOADER ── */
#preloader {
    position: fixed; inset: 0;
    background: var(--black-rich);
    z-index: 100000;
    display: flex; align-items: center; justify-content: center;
}

.preloader-center {
    text-align: center;
}

.preloader-logo-wrap {
    width: clamp(260px, 40vw, 420px);
    margin: 0 auto;
    opacity: 0;
}

.preloader-logo-img {
    width: 100%; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(200,200,220,0.25))
           drop-shadow(0 0 100px rgba(184,147,75,0.1));
}

.preloader-tagline {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.2em;
    opacity: 0;
    margin-top: 2rem;
}


/* ── NAVIGATION ── */
#nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 var(--container-padding);
    height: var(--nav-height);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

#nav.scrolled {
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3),
                inset 0 1px 0 rgba(255,255,255,0.03);
}

/* ── LIQUID GLASS SVG FILTER (global) ── */
svg.liquid-glass-filters { position: absolute; width: 0; height: 0; }

/* ── LIQUID GLASS UTILITY ── */
.glass-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 0 6px rgba(0,0,0,0.1),
        0 2px 8px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(184,147,75,0.12);
    box-shadow:
        0 0 8px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 0 20px rgba(184,147,75,0.05);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; z-index: 10; }

.nav-logo-img {
    height: 40px; width: auto;
    object-fit: contain;
    transition: transform var(--duration-mid) var(--ease-out-expo), filter 0.3s ease;
    filter: brightness(1.1);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gray-light);
    position: relative; padding: 0.25rem 0;
    transition: color var(--duration-fast) ease;
}

.nav-link::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--duration-mid) var(--ease-out-expo);
}

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

.nav-menu-btn {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; padding: 8px; z-index: 10;
}

.menu-line {
    display: block; width: 28px; height: 1px;
    background: var(--white); transform-origin: center;
    transition: transform var(--duration-mid) var(--ease-out-expo), opacity 0.2s ease;
}

.nav-menu-btn.active .menu-line:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-menu-btn.active .menu-line:last-child { transform: translateY(-3.5px) rotate(-45deg); }


/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--black-rich);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity var(--duration-mid) var(--ease-out-expo);
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5rem);
    letter-spacing: 0.1em; color: var(--cream-dim);
    padding: 0.2em 0;
    transition: color 0.3s ease;
}

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


/* ── SECTIONS ── */
.section { position: relative; overflow: hidden; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

.section-header {
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto var(--space-lg);
}

.section-number {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.3em; color: var(--gold);
    text-transform: uppercase; display: block;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9; letter-spacing: 0.02em; color: var(--white);
}

.section-subtitle {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic; color: var(--gray-light);
    margin-top: var(--space-sm); letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════════════════
   HERO — FULL IMAGE BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

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

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(5,5,5,0.4) 0%,
        rgba(5,5,5,0.2) 30%,
        rgba(5,5,5,0.3) 60%,
        rgba(5,5,5,0.7) 100%
    );
}

.hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, var(--black-rich) 100%);
}

.cine-bar {
    position: absolute; left: 0; right: 0;
    height: 50vh; background: var(--black-rich); z-index: 5;
}
.cine-bar-top { top: 0; }
.cine-bar-bottom { bottom: 0; }

.hero-content {
    position: relative; z-index: 10;
    width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: var(--container-padding);
    max-width: var(--container-max); margin: 0 auto;
    visibility: hidden; /* hidden until hero animation starts */
}

.hero-content.visible {
    visibility: visible;
}

.hero-top-tag {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: var(--space-lg); overflow: hidden;
}

.tag-line { width: 40px; height: 1px; background: var(--gold); transform-origin: left; }

.tag-text {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}

.hero-title {
    font-family: var(--font-display); line-height: 0.88;
    letter-spacing: 0.02em; color: var(--white);
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

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

.title-word {
    display: inline-block;
    font-size: clamp(4rem, 12vw, 11rem);
}

.accent-line .title-word {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--cream-dim);
    text-shadow: none;
}

.hero-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: auto; padding-bottom: var(--space-lg);
}

.tagline-text {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-style: italic; color: var(--cream-dim);
    letter-spacing: 0.05em; line-height: 1.4;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.scroll-text {
    font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-light);
}

.scroll-line-container { width: 1px; height: 60px; background: var(--gray-dark); position: relative; overflow: hidden; }

.scroll-line { width: 100%; height: 30px; background: var(--gold); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse { 0% { transform: translateY(-30px); } 100% { transform: translateY(60px); } }

.hero-year { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gray-mid); }


/* ═══════════════════════════════════════════════════════════
   STATEMENT — TEXT SCRAMBLE
   ═══════════════════════════════════════════════════════════ */
.statement-section {
    padding: var(--space-2xl) 0;
    display: flex; align-items: center; min-height: 60vh;
    background: var(--black);
}

.statement-text {
    font-family: var(--font-editorial);
    font-size: clamp(1.8rem, 5vw, 4rem);
    line-height: 1.3; color: var(--cream);
    font-weight: 400; text-align: center;
    max-width: 900px; margin: 0 auto;
}

.statement-content { text-align: center; }

.statement-text .text-accent { color: var(--gold); font-style: italic; }

/* Word-by-word reveal wrappers */
.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.05em; }
.word-inner { display: inline-block; }


/* ═══════════════════════════════════════════════════════════
   SHOWREEL STRIP — HORIZONTAL IMAGE SCROLL
   ═══════════════════════════════════════════════════════════ */
.showreel-strip {
    padding: var(--space-md) 0;
    overflow: hidden;
    background: var(--black-rich);
    border-top: 1px solid var(--charcoal-light);
    border-bottom: 1px solid var(--charcoal-light);
}

.strip-track {
    display: flex; gap: 1rem;
    width: max-content;
    animation: stripScroll 60s linear infinite;
}

.strip-item {
    flex-shrink: 0;
    width: clamp(250px, 30vw, 400px);
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 2px;
}

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

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

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


/* ═══════════════════════════════════════════════════════════
   WORK — IMAGE SHOWCASE GRID
   ═══════════════════════════════════════════════════════════ */
.work-section {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: var(--black);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    padding: 0 var(--container-padding);
    max-width: var(--container-max); margin: 0 auto;
}

.work-item { grid-column: span 4; position: relative; }
.work-item-large { grid-column: span 8; grid-row: span 2; }
.work-item-wide { grid-column: span 8; }

.work-item-inner {
    position: relative; height: 100%;
    overflow: hidden; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.work-item:hover .work-item-inner {
    border-color: rgba(184,147,75,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3),
                0 0 20px rgba(184,147,75,0.05);
}

.work-img {
    width: 100%; height: 100%; min-height: 280px;
    position: relative; overflow: hidden;
}

.work-item-large .work-img { min-height: 580px; }

.work-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--duration-cinematic) var(--ease-out-expo);
}

.work-item:hover .work-img img { transform: scale(1.08); }

/* Clip-path reveal — starts hidden */
.clip-reveal {
    clip-path: inset(0 100% 0 0);
}

.clip-reveal.revealed {
    clip-path: inset(0 0% 0 0);
    transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.work-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.05) 0%, transparent 30%, transparent 40%, rgba(5,5,5,0.8) 100%);
    z-index: 2;
}

.work-play-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 3;
    color: var(--white); opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s var(--ease-out-expo);
}

.work-item:hover .work-play-icon {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Spotlight glow on hover */
.spotlight-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(184,147,75,0.08) 0%, transparent 50%);
    z-index: 1; opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.work-item:hover .spotlight-glow { opacity: 1; }

.work-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem; z-index: 3;
}

.work-category {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 0.5rem;
}

.work-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 0.05em; color: var(--white); line-height: 1;
}

.work-desc {
    font-family: var(--font-body);
    font-size: 0.8rem; color: var(--gray-light);
    margin-top: 0.5rem; line-height: 1.5;
}

.work-ig-tag {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-dim);
    margin-top: 0.5rem; display: block;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

.work-item:hover .work-ig-tag {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold);
}

.work-img-placeholder {
    position: absolute; inset: 0;
    z-index: 0;
}

.work-img img,
.work-img .ig-thumb-loaded {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform var(--duration-cinematic) var(--ease-out-expo);
}

.work-item:hover .work-img img,
.work-item:hover .ig-thumb-loaded { transform: scale(1.08); }

a.work-item { display: block; text-decoration: none; color: inherit; }

/* Gold accent line on hover */
.work-item::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; z-index: 5;
    transition: opacity var(--duration-mid) var(--ease-out-expo);
}
.work-item:hover::after { opacity: 0.6; }

.work-cta { text-align: center; margin-top: var(--space-lg); }


/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1.2rem 2.5rem; border: none;
    position: relative; overflow: hidden;
    transition: all var(--duration-mid) var(--ease-out-expo);
}

.btn-outline {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
                0 2px 8px rgba(0,0,0,0.2);
}
.btn-outline:hover {
    border-color: rgba(184,147,75,0.4);
    color: var(--gold);
    background: rgba(184,147,75,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08),
                0 4px 16px rgba(184,147,75,0.1);
}

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

.btn-arrow { transition: transform var(--duration-mid) var(--ease-out-expo); }
.btn:hover .btn-arrow { transform: translateX(6px); }


/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */
.marquee-section {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--charcoal-light);
    border-bottom: 1px solid var(--charcoal-light);
    overflow: hidden; background: var(--black-rich);
}

.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }

.marquee-content {
    display: flex; align-items: center;
    gap: 3rem; padding-right: 3rem; white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.1em; color: var(--charcoal-light);
}

.marquee-dot { color: var(--gold-dim) !important; font-size: 1rem !important; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ═══════════════════════════════════════════════════════════
   SERVICES — IMAGE BACKGROUND + SPOTLIGHT CARDS
   ═══════════════════════════════════════════════════════════ */
.services-section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.services-visual {
    position: absolute; inset: 0; z-index: 0;
}

.services-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.15) contrast(1.2);
}

.services-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%);
}

.services-content { position: relative; z-index: 1; }

.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    max-width: var(--container-max);
    margin: 0 auto; padding: 0 var(--container-padding);
}

.service-card {
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
    transition: background 0.5s ease;
}

.service-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }

.service-card-content { position: relative; z-index: 2; }

.service-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    filter: brightness(0.3) saturate(0.6);
    transition: opacity 0.8s ease;
    z-index: 0;
}

.service-card:hover .service-bg-img {
    opacity: 0.35;
}

/* Spotlight effect */
.spotlight-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,147,75,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    left: var(--spot-x, -100px); top: var(--spot-y, -100px);
    pointer-events: none; opacity: 0;
    transition: opacity 0.4s ease;
}

.spotlight-card:hover::before { opacity: 1; }

.service-card:hover {
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04),
                0 4px 20px rgba(0,0,0,0.15);
}

.service-number {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.3em; color: var(--gold-dim);
    margin-bottom: var(--space-sm);
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.05em; color: var(--white);
    margin-bottom: var(--space-sm); line-height: 1;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 0.85rem; line-height: 1.7;
    color: var(--gray-light); max-width: 400px;
}

.service-line {
    width: 0; height: 2px;
    background: var(--gold); margin-top: var(--space-md);
    transition: width var(--duration-cinematic) var(--ease-out-expo);
}

.service-card:hover .service-line { width: 60px; }


/* ═══════════════════════════════════════════════════════════
   BIG QUOTE — IMAGE BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.quote-section {
    padding: var(--space-2xl) 0;
    display: flex; align-items: center;
    min-height: 70vh; position: relative;
}

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

.quote-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.2) contrast(1.2) saturate(0.8);
}

.quote-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.8) 100%);
}

.big-quote { text-align: center; position: relative; z-index: 1; }

.quote-text {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.2; color: var(--cream); font-weight: 400;
}

/* Blur reveal words */
.blur-reveal .word {
    display: inline-block;
    opacity: 0; filter: blur(10px);
    transition: opacity 0.6s ease, filter 0.6s ease;
}

.blur-reveal .word.visible {
    opacity: 1; filter: blur(0);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-section {
    padding: var(--space-2xl) 0;
    background: var(--black-rich);
}

.about-content {
    max-width: var(--container-max); margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-brand {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg); align-items: start;
    margin-bottom: var(--space-2xl);
}

.about-heading {
    font-family: var(--font-editorial);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white); font-weight: 500;
    line-height: 1.3; margin-bottom: var(--space-md);
}

.about-paragraph {
    font-family: var(--font-body);
    font-size: 0.9rem; line-height: 1.8;
    color: var(--gray-light); margin-bottom: var(--space-sm);
}

.about-stats {
    display: flex; flex-direction: column; gap: var(--space-md);
    padding-left: var(--space-lg);
    border-left: 1px solid var(--gray-dark);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold); line-height: 1; letter-spacing: 0.02em;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold); line-height: 1;
}

.stat-text-symbol {
    font-family: var(--font-display);
    font-variant: normal;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: none;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gray-light);
}


/* ── FOUNDER ── */
.founder-section {
    display: grid; grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-lg); align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--charcoal-light);
}

.founder-img-container {
    position: relative; aspect-ratio: 3/4;
    max-width: 400px; overflow: hidden;
}

.founder-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: contrast(1.1) saturate(0.9);
}

.founder-img-border {
    position: absolute; inset: -8px;
    border: 1px solid var(--gold-dim);
    opacity: 0.3; pointer-events: none;
}

.founder-label {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: var(--space-sm);
}

.founder-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.05em; color: var(--white);
    line-height: 1; margin-bottom: var(--space-xs);
}

.founder-role {
    font-family: var(--font-editorial);
    font-size: 1.1rem; font-style: italic;
    color: var(--cream-dim); margin-bottom: var(--space-md);
}

.founder-bio {
    font-family: var(--font-body);
    font-size: 0.9rem; line-height: 1.8;
    color: var(--gray-light); margin-bottom: var(--space-sm);
}

.founder-social { display: flex; flex-direction: column; gap: 0.75rem; margin-top: var(--space-md); }

.social-link {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: var(--gray-light); font-family: var(--font-body);
    font-size: 0.8rem; letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.social-link:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════
   IMAGE BREAK — FULL WIDTH CINEMATIC
   ═══════════════════════════════════════════════════════════ */
.image-break {
    height: 50vh; min-height: 300px;
    overflow: hidden; position: relative;
}

.image-break-inner {
    width: 100%; height: 130%;
    position: absolute; top: -15%;
}

.image-break-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.5) contrast(1.15) saturate(0.8);
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section {
    padding: var(--space-2xl) 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184,147,75,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(20,25,40,0.3) 0%, transparent 40%),
        linear-gradient(180deg, var(--charcoal) 0%, var(--black-rich) 100%);
}

.contact-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--container-max); margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-intro {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic; color: var(--cream-dim);
    line-height: 1.6; margin-top: var(--space-md); max-width: 440px;
}

.contact-details { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }
.contact-detail { display: flex; flex-direction: column; gap: 0.25rem; }

.detail-label {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim);
}

.detail-value { font-family: var(--font-body); font-size: 0.9rem; color: var(--cream); }
.detail-link { transition: color 0.3s ease; }
.detail-link:hover { color: var(--gold); }

.contact-img-accent {
    margin-top: var(--space-lg);
    width: 200px; height: 200px;
    overflow: hidden; border-radius: 2px;
    opacity: 0.6;
}

.contact-img-accent img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light);
}

.form-input {
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--cream); background: transparent;
    border: none; border-bottom: 1px solid var(--gray-dark);
    padding: 0.75rem 0; outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none; border-radius: 0;
}

.form-input::placeholder { color: var(--gray-mid); }
.form-input:focus { border-color: var(--gold); }

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

.form-select option { background: var(--charcoal); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary { align-self: flex-start; margin-top: var(--space-sm); }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
    padding: var(--space-md) var(--container-padding);
    border-top: 1px solid var(--charcoal-light);
    background: var(--black-rich);
}

.footer-inner {
    max-width: var(--container-max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}

.footer-left { display: flex; align-items: center; gap: 1.5rem; }

.footer-logo-img { height: 32px; width: auto; object-fit: contain; filter: brightness(0.9); }
.footer-tagline { font-family: var(--font-editorial); font-size: 0.85rem; font-style: italic; color: var(--gray-mid); }

.footer-social {
    font-family: var(--font-body); font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gray-light); transition: color 0.3s ease;
}
.footer-social:hover { color: var(--gold); }

.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.footer-copy, .footer-location { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gray-mid); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
/* ── TABLET ── */
@media (max-width: 1024px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-item, .work-item-large, .work-item-wide { grid-column: span 1; grid-row: span 1; }
    .work-item-large .work-img { min-height: 350px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card:nth-child(odd) { border-right: none; }
    .about-brand { grid-template-columns: 1fr; }
    .about-stats {
        flex-direction: row; gap: var(--space-lg);
        padding-left: 0; border-left: none;
        border-top: 1px solid var(--gray-dark);
        padding-top: var(--space-md);
    }
    .founder-section { grid-template-columns: 1fr; }
    .founder-img-container { max-width: 300px; }
    .contact-content { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    :root { --nav-height: 60px; --space-2xl: 6rem; --space-xl: 4rem; }
    body { cursor: auto; }
    #cursor { display: none; }
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }

    /* Hero */
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .hero-scroll-indicator { display: none; }
    .hero-year { align-self: flex-end; }
    .title-word { font-size: clamp(3rem, 12vw, 5rem); }

    /* Statement */
    .statement-text { font-size: clamp(1.4rem, 5vw, 2rem); }

    /* Showreel strip */
    .strip-item { width: clamp(200px, 60vw, 300px); }

    /* Work */
    .work-grid { grid-template-columns: 1fr; gap: 1rem; }
    .work-img { min-height: 220px; }
    .work-item-large .work-img { min-height: 280px; }

    /* Stats */
    .about-stats {
        flex-direction: row; flex-wrap: wrap;
        gap: var(--space-md);
        justify-content: flex-start;
    }
    .stat-number { font-size: clamp(2.5rem, 10vw, 3.5rem); }

    /* Founder */
    .founder-name { font-size: clamp(2rem, 8vw, 3rem); }
    .founder-img-container { max-width: 250px; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: var(--space-sm); text-align: center; }
    .footer-left { flex-direction: column; gap: 0.5rem; }
    .footer-right { align-items: center; }

    /* Contact */
    .contact-img-accent { display: none; }
    .section-title { font-size: clamp(2.5rem, 10vw, 5rem); }

    /* Marquee */
    .marquee-content span { font-size: clamp(1.5rem, 5vw, 2.5rem); }

    /* Image break */
    .image-break { height: 35vh; min-height: 200px; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
    .accent-line .title-word { -webkit-text-stroke: 1px var(--cream-dim); }
    .title-word { font-size: clamp(2.5rem, 11vw, 4rem); }
    .about-stats { gap: var(--space-sm); }
    .stat-number { font-size: 2.2rem; }
    .stat-suffix { font-size: 1.5rem; }
    .service-name { font-size: clamp(1.5rem, 6vw, 2rem); }
    .work-title { font-size: clamp(1.2rem, 5vw, 1.8rem); }
    .quote-text { font-size: clamp(1.4rem, 5vw, 2.5rem); }
    .preloader-logo-wrap { width: clamp(200px, 65vw, 300px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    #grain, .marquee-track, .strip-track, .scroll-line { animation: none; }
    .clip-reveal { clip-path: inset(0 0% 0 0); }
    .blur-reveal .word { opacity: 1; filter: none; }
}
