/* =========================================
   RESET & CORE VARIABLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-color: #030303;
    --text-color: #ffffff;
    --text-muted: #666666;
    --accent: #bbbbbb;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Cinzel', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot {
    width: 8px; height: 8px; background-color: var(--text-color);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
}
.cursor-outline {
    width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9998;
}
.cursor-hover .cursor-outline {
    width: 80px; height: 80px; background-color: rgba(255, 255, 255, 0.1); border-color: transparent;
}

/* =========================================
   PREMIUM NAVIGATION & MENU
   ========================================= */
.premium-nav {
    position: fixed; top: 0; width: 100%; padding: 2.5rem 5vw;
    display: flex; justify-content: space-between; align-items: center; z-index: 1000;
}
.nav-logo-img { height: 105px; width: auto; filter: drop-shadow(0px 5px 15px rgba(0,0,0,0.8)); }
.menu-btn { font-size: 0.9rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.premium-nav {
    background: linear-gradient(to bottom, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.58) 48%, transparent 100%);
}

.top-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.95rem, 2vw, 2rem);
    max-width: 74vw;
    padding-top: 0.4rem;
    flex-wrap: wrap;
}

.top-nav-links a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: clamp(0.62rem, 0.72vw, 0.78rem);
    font-weight: 800;
    letter-spacing: 2.2px;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.top-nav-links a:hover,
.top-nav-links a:focus-visible {
    color: var(--text-color);
    transform: translateY(-2px);
}


/* Snappy Slide-Out Menu */
.menu-backdrop {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 998; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s;
}
.menu-backdrop.active { opacity: 1; visibility: visible; }

.side-menu {
    position: fixed; top: 0; right: 0; width: 450px; max-width: 100vw; height: 100vh;
    background: #080808; border-left: 1px solid rgba(255,255,255,0.05); z-index: 999; 
    display: flex; flex-direction: column; justify-content: center; padding: 4rem;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.side-menu.active { transform: translateX(0); }

.menu-current {
    margin-bottom: 2.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-current span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.menu-current strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--text-color);
    text-transform: uppercase;
}


.menu-links { list-style: none; display: flex; flex-direction: column; gap: 2.5rem; }
.menu-links a {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem);
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    text-decoration: none; line-height: 1.1; display: inline-block; transition: all 0.2s ease;
}
.menu-links a:hover { color: var(--text-color); -webkit-text-stroke: 1px var(--text-color); transform: translateX(15px); }

/* =========================================
   SCROLL REVEAL UTILITIES
   ========================================= */
.section-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 3px; margin-bottom: 2rem; }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--text-color); }
.reveal-up {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.25s; }

/* =========================================
   INDEX PAGE: LAYOUT
   ========================================= */
.hero-section {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 0 5vw;
}
.hero-title { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 9rem); line-height: 0.9; letter-spacing: -2px; }
.hero-sub { margin-top: 4rem; max-width: 400px; }
.hero-sub p { font-size: 1.1rem; line-height: 1.6; color: #cccccc; margin-bottom: 1rem; }
.hero-sub span { font-size: 0.8rem; letter-spacing: 2px; color: var(--text-muted); }

.divisions-section { padding: 10rem 5vw; display: flex; flex-direction: column; align-items: center; text-align: center; }
.divisions-list { display: flex; flex-direction: column; gap: 3rem; margin-top: 2rem; width: 100%; }
.division-title {
    font-family: var(--font-display); font-size: clamp(1.2rem, 3.5vw, 3.5rem); 
    color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); line-height: 1.2; text-transform: uppercase;
}
.division-title:hover { color: var(--text-color); -webkit-text-stroke: 1px var(--text-color); transform: scale(1.02); }

.work-section { padding: 5rem 5vw 10rem 5vw; }
.work-item { display: flex; align-items: center; gap: 4rem; margin-bottom: 10rem; }
.work-image {
    flex: 1.5; height: 70vh; background-color: #111; background-size: cover; background-position: center;
    transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1); filter: grayscale(100%);
}
.work-image:hover { transform: scale(0.98); filter: grayscale(0%); }
.work-details { flex: 1; }
.text-right { text-align: right; }
.work-details h3 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 1rem; line-height: 1.1; }
.work-details .role { font-size: 1.2rem; color: #aaaaaa; margin-bottom: 2rem; }
.work-details .year { font-size: 0.8rem; letter-spacing: 2px; color: var(--text-muted); }

/* =========================================
   PRODUCTIONS PAGE: LAYOUT & KAILASH
   ========================================= */
.prod-hero { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; padding: 0 5vw; }

.kailash-marquee {
    position: relative; width: 100vw; min-height: 100vh; display: flex; align-items: center; padding: 5vw;
    margin-bottom: 10rem; overflow: hidden;
}
.kailash-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    filter: brightness(0.25) contrast(1.2); z-index: 0; transition: filter 1s ease;
}
.kailash-marquee:hover .kailash-bg { filter: brightness(0.4) contrast(1.1); }
.kailash-content { position: relative; z-index: 1; max-width: 900px; }

.status-badge {
    display: inline-block; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50px;
    font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 2rem;
}
.kailash-title {
    font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); line-height: 0.95;
    margin-bottom: 1.5rem; color: transparent; -webkit-text-stroke: 1px var(--text-color);
}
.kailash-vision { font-size: 1.25rem; color: #dddddd; margin-bottom: 3rem; line-height: 1.6; }
.director-quote { border-left: 2px solid var(--text-color); padding-left: 1.5rem; font-style: italic; color: #aaaaaa; margin-bottom: 3rem; font-size: 1.15rem; }
.kailash-specs { display: flex; gap: 5rem; margin-top: 2rem; }
.kailash-specs > div { font-size: 1.4rem; font-weight: 600; color: #ffffff; line-height: 1.4; }

/* =========================================
   THE ARCHIVE: EDITORIAL SPLIT 
   ========================================= */
.section-divider { padding: 0 5vw; margin-bottom: 2rem; max-width: 1300px; margin: 0 auto; }

.editorial-split {
    display: flex; gap: 4rem; padding: 5rem 5vw; max-width: 1300px; margin: 0 auto; align-items: flex-start; position: relative;
}
.split-left { flex: 0 0 360px; position: sticky; top: 120px; z-index: 10; }
.sticky-poster { width: 100%; display: flex; flex-direction: column; }
.film-poster {
    width: 100%; aspect-ratio: 2/3; object-fit: cover; background: #111; border-radius: 8px; margin-bottom: 1.5rem;
    filter: grayscale(80%); transition: filter 0.5s ease, transform 0.5s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.6); 
}
.editorial-split:hover .film-poster { filter: grayscale(0%); transform: translateY(-5px); }
.film-name { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; margin-bottom: 0.5rem; }
.film-award { color: var(--accent); letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase; }

.split-right { flex: 1; padding-bottom: 15vh; }
.editorial-split.reverse-split { flex-direction: row-reverse; }

.lore-block { margin-bottom: 4rem; }
.lore-block h3 { font-size: 0.85rem; letter-spacing: 3px; color: var(--text-muted); margin-bottom: 1.5rem; }
.lore-block p { font-size: 1.25rem; line-height: 1.7; color: #d0d0d0; }
.italic-note { font-family: var(--font-display); font-style: italic; font-size: 1.4rem !important; color: #bbbbbb !important; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); }
.spec-box h4 { font-size: 0.85rem; letter-spacing: 3px; color: #888888; margin-bottom: 1rem; }
.spec-box p { font-size: 1.15rem; line-height: 1.8; color: #ffffff; font-weight: 500; }

/* =========================================
   CELEBRITY PORTFOLIO
   ========================================= */
.celeb-section { padding: 10rem 5vw; max-width: 1500px; margin: 0 auto; }
.celeb-intro { text-align: center; margin-bottom: 6rem; }
.celeb-intro h2 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 1rem; }
.celeb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.celeb-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.celeb-img {
    width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%);
    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1), filter 0.8s ease;
}
.celeb-name {
    position: absolute; bottom: -60px; left: 0; width: 100%; text-align: center; font-family: var(--font-display); font-size: 1rem;
    letter-spacing: 2px; padding: 30px 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: bottom 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.celeb-card:hover .celeb-img { transform: scale(1.05); filter: grayscale(0%); }
.celeb-card:hover .celeb-name { bottom: 0; }

/* =========================================
   ARCHIVE PAGE PRESERVATION (Vertical Timeline)
   ========================================= */
.archive-body { overflow: hidden; }
.archive-split { display: flex; height: 100vh; padding-top: 100px; }
.timeline-column { flex: 1; height: 100%; overflow-y: auto; padding: 2rem 5vw 5rem 5vw; position: relative; -ms-overflow-style: none; scrollbar-width: none; }
.timeline-column::-webkit-scrollbar { display: none; }
.timeline-track { position: absolute; left: calc(5vw + 10px); top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.1)); z-index: 0; }
.timeline-item { position: relative; padding-left: 3rem; margin-bottom: 3rem; opacity: 0.5; transition: all 0.4s ease; z-index: 1; }
.timeline-item::before { content: ''; position: absolute; left: 7px; top: 5px; width: 7px; height: 7px; background-color: var(--text-color); border-radius: 50%; transition: all 0.4s ease; }
.timeline-item.active { opacity: 1; transform: translateX(10px); }
.timeline-item.active::before { box-shadow: 0 0 15px rgba(255,255,255,0.8); transform: scale(1.5); }
.t-date { display: block; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.t-title { font-family: var(--font-display); font-size: 1.2rem; }
.details-column { flex: 1.5; height: 100%; display: flex; align-items: center; padding: 0 8vw; position: relative; background: linear-gradient(to right, rgba(0,0,0,0.8), transparent); }
.detail-content { position: absolute; opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); pointer-events: none; }
.detail-content.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.d-date { color: var(--text-muted); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 1rem; }
.detail-content h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; margin-bottom: 2rem; color: transparent; -webkit-text-stroke: 1px var(--text-color); }
.d-desc { font-size: 1.2rem; line-height: 1.6; color: #cccccc; max-width: 600px; }

/* =========================================
   FOOTER
   ========================================= */
.footer-section { padding: 10rem 5vw 2rem 5vw; display: flex; flex-direction: column; align-items: center; text-align: center; }
.massive-contact { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 10rem); color: var(--text-color); text-decoration: none; line-height: 1; margin-bottom: 8rem; transition: color 0.3s ease; }
.massive-contact:hover { color: transparent; -webkit-text-stroke: 1px var(--text-color); }
.footer-bottom { width: 100%; display: flex; justify-content: space-between; align-items: center; position: relative; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }
.footer-legal-links { position: absolute; left: 50%; transform: translateX(-50%); }
.footer-legal-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-legal-links a:hover { color: var(--text-color); }
.socials a { color: var(--text-color); text-decoration: none; margin-right: 2rem; }

/* =========================================
   MOBILE RESPONSIVE LOCKS
   ========================================= */
@media (max-width: 1024px) {
    .editorial-split { flex-direction: column; gap: 4rem; align-items: center; padding: 3rem 5vw; }
    .split-left { flex: auto; width: 100%; max-width: 400px; position: relative; top: 0; }
    .split-right { padding-top: 0; padding-bottom: 2rem; }
    .spec-grid { grid-template-columns: 1fr; gap: 2rem; }
    .celeb-grid { grid-template-columns: repeat(2, 1fr); }
    .kailash-specs { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 768px) {
    .divisions-list { gap: 2rem; }
    .division-title { color: var(--text-color); -webkit-text-stroke: 0; opacity: 0.7; }
    .work-item, .work-item:nth-child(even) { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .work-image { width: 100%; height: 50vh; }
    .text-right { text-align: left; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-legal-links { position: static; transform: none; }
    /* Archive Page Mobile Fixes */
    .archive-body { overflow: auto; }
    .archive-split { flex-direction: column; height: auto; }
    .timeline-column { height: 50vh; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .details-column { height: 50vh; padding: 4rem 5vw; background: none; }
    .detail-content h2 { font-size: 2rem; }
}

/* =========================================
   PHASE 1 OPTIMIZATION PATCH
   Films & Productions page refinements
   ========================================= */
html { scroll-behavior: smooth; }

a, button { cursor: pointer; }
button.menu-btn {
    color: var(--text-color);
    background: transparent;
    border: 0;
    font-family: var(--font-primary);
}
button.menu-btn:focus-visible,
a:focus-visible {
    outline: 1px solid var(--text-color);
    outline-offset: 6px;
}

.productions-page {
    background:
        radial-gradient(circle at 15% 8%, rgba(255,255,255,0.06), transparent 28vw),
        radial-gradient(circle at 85% 28%, rgba(255,255,255,0.035), transparent 25vw),
        var(--bg-color);
}

.prod-hero {
    position: relative;
    min-height: 92vh;
}

.prod-hero::after {
    content: "";
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 6rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.25), transparent);
}

.prod-hero-meta {
    margin-top: 2.5rem;
    max-width: 720px;
}

.prod-hero-copy {
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    line-height: 1.65;
    color: #cfcfcf;
    max-width: 700px;
}

.production-command {
    width: calc(100% - 10vw);
    max-width: 1500px;
    margin: -4rem auto 10rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.14);
    border-left: 1px solid rgba(255,255,255,0.08);
}

.command-card {
    min-height: 260px;
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.015);
    transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.command-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-8px);
}

.command-index,
.process-step span {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

.command-card h2,
.process-step h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.command-card p,
.process-step p {
    color: #aaaaaa;
    line-height: 1.65;
    font-size: 0.98rem;
}

.process-section {
    padding: 8rem 5vw 10rem 5vw;
    max-width: 1500px;
    margin: 0 auto;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 5vw;
    align-items: end;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 3rem;
}

.process-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 0.95;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
    text-transform: uppercase;
}

.process-header p {
    color: #bdbdbd;
    font-size: 1.18rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.process-step {
    background: #050505;
    padding: 2.25rem;
    min-height: 300px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.process-step:hover {
    background: #0c0c0c;
    transform: translateY(-8px);
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .production-command,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    * { cursor: auto; }
    a, button { cursor: pointer; }

    .premium-nav {
        padding: 1.5rem 5vw;
    }

    .nav-logo-img {
        height: 76px;
    }

    .prod-hero {
        min-height: 82vh;
        padding-top: 8rem;
    }

    .prod-hero::after {
        bottom: 3rem;
    }

    .prod-hero-copy {
        font-size: 1.05rem;
    }

    .production-command,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .production-command {
        margin-top: 0;
        margin-bottom: 6rem;
    }

    .command-card,
    .process-step {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .process-section {
        padding: 6rem 5vw;
    }

    .process-header h2 {
        -webkit-text-stroke: 0;
        color: var(--text-color);
    }

    .side-menu {
        width: 100%;
        padding: 2.5rem;
    }

    .menu-links {
        gap: 1.75rem;
    }
}

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


/* =========================================
   PHASE 2 PATCH
   Brand Strategy & Identity page
   ========================================= */
.brand-page {
    background:
        radial-gradient(circle at 70% 12%, rgba(255,255,255,0.055), transparent 24vw),
        radial-gradient(circle at 16% 38%, rgba(255,255,255,0.035), transparent 28vw),
        #030303;
}

.brand-hero {
    min-height: 95vh;
    padding: 12rem 5vw 7rem 5vw;
    display: flex;
    align-items: center;
    position: relative;
}

.brand-hero::after {
    content: "";
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 4rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.25), transparent);
}

.brand-hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 6vw;
    align-items: center;
}

.brand-hero-copy {
    max-width: 790px;
    margin-top: 2.5rem;
    color: #c9c9c9;
    font-size: clamp(1.08rem, 1.6vw, 1.38rem);
    line-height: 1.75;
    font-weight: 300;
}

.brand-terminal {
    border: 1px solid rgba(255,255,255,0.12);
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 1px, transparent 1px, transparent 6px),
        rgba(255,255,255,0.025);
    min-height: 420px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.brand-terminal::before {
    content: "BRAND OPS";
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.12);
}

.brand-terminal:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.045);
}

.terminal-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--text-color);
    box-shadow: 0 0 24px rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.brand-terminal p {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

.brand-terminal strong {
    font-size: 1.05rem;
    line-height: 1.55;
    letter-spacing: 2px;
}

.brand-metrics {
    width: calc(100% - 10vw);
    margin: -2rem auto 10rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.14);
    border-left: 1px solid rgba(255,255,255,0.08);
}

.metric-card {
    min-height: 210px;
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255,255,255,0.012);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.24);
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
}

.metric-card p {
    color: #d6d6d6;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-section {
    padding: 0 5vw 10rem 5vw;
}

.services-header {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 5vw;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 5.6rem);
    line-height: 0.98;
    max-width: 1100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
}

.service-card {
    background: #050505;
    min-height: 330px;
    padding: 2rem;
    transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #0d0d0d;
}

.service-card span,
.asset-card span,
.system-steps span {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-card p {
    color: #aaaaaa;
    line-height: 1.65;
    font-size: 0.98rem;
}

.asset-roll-section {
    padding-bottom: 10rem;
    overflow: hidden;
}

.asset-divider {
    max-width: none;
    margin-bottom: 2rem;
}

.asset-marquee {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    overflow: hidden;
    background: rgba(255,255,255,0.018);
}

.asset-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    padding: 2rem 0;
    animation: assetRoll 36s linear infinite;
}

.asset-track span {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 4.5rem);
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.45);
}

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

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

.asset-vault {
    width: calc(100% - 10vw);
    margin: 5rem auto 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.asset-card {
    border: 1px solid rgba(255,255,255,0.10);
    padding: 2rem;
    min-height: 280px;
    background: rgba(255,255,255,0.018);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.asset-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.22);
}

.asset-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.asset-card p {
    color: #aaaaaa;
    line-height: 1.65;
}

.brand-system-section {
    width: calc(100% - 10vw);
    margin: 0 auto 10rem auto;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 4rem;
}

.brand-system-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6vw;
    align-items: start;
}

.system-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 0.92;
    margin-bottom: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
}

.system-copy p {
    color: #bdbdbd;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 680px;
}

.system-steps {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.system-steps div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1.5rem 0;
}

.system-steps span {
    margin-bottom: 0;
}

.system-steps p {
    color: #d7d7d7;
    font-size: 1.15rem;
    line-height: 1.45;
}

@media (max-width: 1200px) {
    .services-grid,
    .asset-vault {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .brand-hero-grid,
    .services-header,
    .brand-system-grid {
        grid-template-columns: 1fr;
    }

    .brand-terminal {
        min-height: 300px;
    }

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

@media (max-width: 768px) {
    .brand-hero {
        min-height: auto;
        padding: 11rem 5vw 6rem 5vw;
    }

    .brand-hero::after {
        bottom: 2rem;
    }

    .brand-terminal {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }

    .brand-metrics,
    .services-grid,
    .asset-vault {
        grid-template-columns: 1fr;
    }

    .brand-metrics {
        margin-bottom: 6rem;
    }

    .metric-card,
    .service-card,
    .asset-card {
        min-height: auto;
        padding: 1.75rem;
    }

    .services-section,
    .asset-roll-section {
        padding-bottom: 6rem;
    }

    .services-header h2,
    .system-copy h2 {
        color: var(--text-color);
        -webkit-text-stroke: 0;
    }

    .asset-track span {
        -webkit-text-stroke-color: rgba(255,255,255,0.35);
    }

    .system-steps div {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* =========================================
   PHASE 2.1 PATCH
   Sleeker Brand Strategy hero + business metrics
   ========================================= */
.brand-page {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035) 0%, transparent 18rem),
        radial-gradient(circle at 84% 8%, rgba(255,255,255,0.045), transparent 22vw),
        #030303;
}

.brand-hero {
    min-height: 88vh;
    padding: 12rem 5vw 5.5rem 5vw;
}

.brand-hero-grid {
    display: block;
    max-width: 1260px;
}

.brand-copy {
    max-width: 1120px;
}

.brand-copy .hero-title {
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: -0.075em;
    font-size: clamp(4.4rem, 12vw, 12.5rem);
    line-height: 0.78;
}

.brand-copy .outline-text {
    -webkit-text-stroke: 1.25px rgba(255,255,255,0.62);
}

.brand-hero-copy {
    max-width: 860px;
    margin-top: 2.75rem;
    color: #d2d2d2;
    font-size: clamp(1.08rem, 1.35vw, 1.32rem);
}

.brand-hero-meta {
    width: min(100%, 940px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 3.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.12);
}

.brand-hero-meta span {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 1.15rem 1.25rem;
    background: rgba(3,3,3,0.94);
    color: #eeeeee;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    line-height: 1.35;
    text-transform: uppercase;
}

.brand-metrics {
    width: calc(100% - 10vw);
    margin: 0 auto 10rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.13);
}

.metric-card {
    min-height: 220px;
    padding: 2rem;
    border: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    justify-content: center;
    gap: 1.15rem;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.metric-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.05);
}

.metric-value {
    font-family: var(--font-primary);
    font-variant-numeric: tabular-nums;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.92;
    color: var(--text-color);
    -webkit-text-stroke: 0;
    text-shadow: 0 12px 48px rgba(255,255,255,0.08);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.metric-value.is-rolling {
    animation: metricLift 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes metricLift {
    0% { transform: translateY(22px); opacity: 0.25; }
    100% { transform: translateY(0); opacity: 1; }
}

.metric-card p {
    position: relative;
    z-index: 1;
    color: #bfbfbf;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.services-header h2,
.service-card h3,
.system-copy h2 {
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: -0.055em;
}

.service-card {
    background: #050505;
    min-height: 315px;
}

.service-card h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

.brand-system-section {
    margin-top: 0;
}

@media (max-width: 1000px) {
    .brand-hero-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-copy .hero-title {
        font-size: clamp(4rem, 18vw, 7rem);
        letter-spacing: -0.065em;
    }

    .brand-hero-meta,
    .brand-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card {
        min-height: 170px;
    }
}


/* =========================================
   PHASE 3 PATCH
   Better roll-up counters + Talent Management page
   ========================================= */
.metric-value {
    display: inline-block;
    min-width: 0;
    will-change: transform, opacity;
}

.metric-value.is-counting {
    animation: metricNumberPulse 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes metricNumberPulse {
    0% { transform: translateY(14px); opacity: 0.45; }
    100% { transform: translateY(0); opacity: 1; }
}

.talent-page {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 16rem),
        radial-gradient(circle at 78% 12%, rgba(255,255,255,0.055), transparent 24vw),
        radial-gradient(circle at 12% 46%, rgba(255,255,255,0.035), transparent 30vw),
        #030303;
}

.talent-hero {
    min-height: 92vh;
    padding: 12rem 5vw 5rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.talent-hero::after {
    content: "";
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 3rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.25), transparent);
}

.talent-hero-inner {
    max-width: 1180px;
}

.talent-hero-inner .hero-title {
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: -0.075em;
    font-size: clamp(4.2rem, 12vw, 12rem);
    line-height: 0.78;
}

.talent-hero-inner .outline-text {
    -webkit-text-stroke: 1.25px rgba(255,255,255,0.62);
}

.talent-hero-copy {
    max-width: 820px;
    margin-top: 2.75rem;
    color: #d0d0d0;
    font-size: clamp(1.08rem, 1.4vw, 1.34rem);
    line-height: 1.72;
    font-weight: 300;
}

.talent-command-strip {
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 3.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.12);
}

.talent-command-strip span {
    min-height: 72px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    background: rgba(3,3,3,0.94);
    color: #efefef;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    line-height: 1.35;
    text-transform: uppercase;
}

.talent-roster-section {
    padding: 0 5vw 10rem 5vw;
}

.talent-roster-header {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    gap: 5vw;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.talent-roster-header h2 {
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: -0.055em;
    font-size: clamp(2.2rem, 5vw, 5.5rem);
    line-height: 0.98;
    max-width: 1050px;
}

.talent-roster-header p:last-child {
    grid-column: 2;
    color: #bcbcbc;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 760px;
}

.talent-roster-header strong {
    color: var(--text-color);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
}

.talent-card {
    aspect-ratio: 1 / 1;
    border: 0;
    color: var(--text-color);
    background: #050505;
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 0;
    isolation: isolate;
}

.talent-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.86) 100%),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,0.11), transparent 26%);
    z-index: 1;
    transition: opacity 0.45s ease;
}

.talent-card-visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.06);
    transform: scale(1.01);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease, opacity 0.7s ease;
    opacity: 0.76;
}

.talent-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.22);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.05), transparent 44%),
        #080808;
}

.talent-card-body {
    position: absolute;
    left: 1.45rem;
    right: 1.45rem;
    bottom: 1.45rem;
    z-index: 2;
}

.talent-card-kicker {
    display: block;
    margin-bottom: 0.8rem;
    color: #bdbdbd;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.talent-card h3 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(1.35rem, 2.2vw, 2.15rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.talent-card-location {
    display: block;
    margin-top: 1rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.talent-card:hover .talent-card-visual,
.talent-card:focus-visible .talent-card-visual {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.04);
    opacity: 1;
}

.talent-card:hover::after,
.talent-card:focus-visible::after {
    opacity: 0.92;
}

.talent-card:focus-visible {
    outline: 1px solid var(--text-color);
    outline-offset: -8px;
}

.talent-operating-section {
    width: calc(100% - 10vw);
    margin: 0 auto 10rem auto;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 4rem;
}

.talent-operating-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6vw;
    align-items: start;
}

.talent-operating-copy h2 {
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: -0.06em;
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 0.92;
    margin-bottom: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
}

.talent-operating-copy p {
    color: #bdbdbd;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 680px;
}

.talent-steps {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.talent-steps div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1.5rem 0;
}

.talent-steps span {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 3px;
}

.talent-steps p {
    color: #d7d7d7;
    font-size: 1.15rem;
    line-height: 1.45;
}

.talent-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.talent-modal.active {
    opacity: 1;
    visibility: visible;
}

.talent-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.talent-modal-panel {
    position: absolute;
    inset: 5vh 5vw;
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
    background: #050505;
    border: 1px solid rgba(255,255,255,0.14);
    overflow: hidden;
    transform: translateY(24px) scale(0.985);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.talent-modal.active .talent-modal-panel {
    transform: translateY(0) scale(1);
}

.talent-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-color);
    padding: 0.85rem 1.1rem;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.talent-modal-visual {
    min-height: 100%;
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,0.13), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,0.055), transparent 48%),
        #080808;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.05);
    position: relative;
}

.talent-modal-visual::after {
    content: attr(data-initials);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: clamp(6rem, 16vw, 15rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.18);
}

.talent-modal-visual.has-image::after {
    display: none;
}

.talent-modal-content {
    padding: clamp(2rem, 5vw, 5rem);
    overflow-y: auto;
}

.talent-modal-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 6vw, 6.4rem);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.talent-modal-bio {
    color: #d0d0d0;
    font-size: 1.12rem;
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.talent-modal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 2.5rem;
}

.talent-modal-stats div {
    min-height: 88px;
    padding: 1rem;
    background: #080808;
}

.talent-modal-stats span {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--text-muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.talent-modal-stats strong {
    font-size: 0.95rem;
    color: #ededed;
    line-height: 1.4;
}

.talent-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.talent-chip-group span {
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.72rem 0.9rem;
    color: #efefef;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.035);
}

.talent-campaign-fit {
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 1.8rem;
}

.talent-campaign-fit h3 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.talent-campaign-fit ul {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.talent-campaign-fit li {
    color: #d7d7d7;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.talent-campaign-fit li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-color);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

body.modal-open {
    overflow: hidden;
}

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

@media (max-width: 1000px) {
    .talent-command-strip,
    .talent-roster-header,
    .talent-operating-grid,
    .talent-modal-panel {
        grid-template-columns: 1fr;
    }

    .talent-modal-panel {
        overflow-y: auto;
    }

    .talent-modal-visual {
        min-height: 48vh;
    }

    .talent-roster-header p:last-child {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .talent-hero {
        min-height: auto;
        padding: 11rem 5vw 6rem 5vw;
    }

    .talent-hero-inner .hero-title {
        font-size: clamp(4rem, 18vw, 7rem);
        letter-spacing: -0.065em;
    }

    .talent-command-strip,
    .talent-grid,
    .talent-modal-stats {
        grid-template-columns: 1fr;
    }

    .talent-card {
        aspect-ratio: 1 / 1.05;
    }

    .talent-operating-copy h2 {
        color: var(--text-color);
        -webkit-text-stroke: 0;
    }

    .talent-steps div {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .talent-modal-panel {
        inset: 3vh 3vw;
    }

    .talent-modal-content {
        padding: 2rem 1.35rem 2.5rem;
    }
}


/* =========================================
   PHASE 3.1: inline premium navigation + slower metrics
   ========================================= */
@media (max-width: 980px) {
    .premium-nav {
        align-items: flex-start;
        padding: 1.65rem 5vw 2.8rem 5vw;
    }

    .nav-logo-img {
        height: 82px;
    }

    .top-nav-links {
        max-width: 66vw;
        gap: 0.9rem 1.1rem;
        padding-top: 0.65rem;
    }

    .top-nav-links a {
        font-size: 0.62rem;
        letter-spacing: 1.7px;
    }
}

@media (max-width: 640px) {
    .premium-nav {
        padding: 1.25rem 5vw 2.25rem 5vw;
        gap: 1rem;
    }

    .nav-logo-img {
        height: 68px;
    }

    .top-nav-links {
        max-width: 68vw;
        gap: 0.62rem 0.75rem;
        align-content: flex-start;
    }

    .top-nav-links a {
        font-size: 0.54rem;
        letter-spacing: 1.25px;
    }
}

@media (max-width: 420px) {
    .top-nav-links {
        max-width: 64vw;
    }

    .top-nav-links a {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }
}

.talent-operating-copy h2 {
    max-width: 760px;
}

/* =========================================
   PHASE 3.2: Privacy & Terms page
   ========================================= */
.privacy-page {
    background:
        radial-gradient(circle at 12% 10%, rgba(255,255,255,0.055), transparent 30vw),
        radial-gradient(circle at 88% 26%, rgba(255,255,255,0.035), transparent 28vw),
        var(--bg-color);
}

.legal-shell {
    padding: 220px 5vw 0 5vw;
}

.legal-hero {
    min-height: 62vh;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
    gap: 5vw;
    align-items: end;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.legal-summary {
    border-left: 1px solid rgba(255,255,255,0.16);
    padding-left: 2rem;
    max-width: 540px;
}

.legal-summary span {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1.4rem;
}

.legal-summary p,
.legal-contact p {
    color: #b8b8b8;
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    line-height: 1.75;
}

.legal-ledger {
    margin: 6rem 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.legal-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 3vw;
    padding: 3.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.legal-index {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.legal-item h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 3.6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.legal-item p {
    color: #b5b5b5;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 920px;
    margin-bottom: 1rem;
}

.legal-item p:last-child {
    margin-bottom: 0;
}

.legal-enforcement {
    background: linear-gradient(90deg, rgba(255,255,255,0.035), transparent 55%);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.legal-contact {
    margin-top: 6rem;
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.018);
}

.legal-cta {
    display: inline-flex;
    margin-top: 2rem;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.legal-cta:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

@media (max-width: 900px) {
    .legal-shell {
        padding-top: 180px;
    }

    .legal-hero,
    .legal-item {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-top: 2rem;
    }

    .legal-index {
        margin-bottom: -1.5rem;
    }

    .legal-contact {
        padding: 2rem;
    }
}

/* =========================================
   PHASE 3.3: Image slots + film watch CTAs
   Non-destructive visual layer: keeps the current layout intact.
   ========================================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-text-wrapper,
.hero-sub {
    position: relative;
    z-index: 2;
}

.landing-hero-visual {
    position: absolute;
    right: 5vw;
    top: 21vh;
    width: min(34vw, 490px);
    height: min(62vh, 680px);
    min-height: 430px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
        #090909;
    box-shadow: 0 40px 90px rgba(0,0,0,0.7);
    z-index: 1;
}

.landing-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.62) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.018) 3px, rgba(255,255,255,0.018) 4px);
    z-index: 1;
    pointer-events: none;
}

.landing-hero-visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    z-index: 2;
    pointer-events: none;
}

.landing-hero-visual-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.18) brightness(0.68);
    transform: scale(1.01);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-hero-visual:hover .landing-hero-visual-img {
    filter: grayscale(0%) contrast(1.06) brightness(0.82);
    transform: scale(1.045);
}

.landing-hero-visual-meta {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.16);
    padding-top: 1.25rem;
}

.landing-hero-visual-meta span,
.landing-hero-visual-meta strong {
    font-size: 0.64rem;
    line-height: 1.4;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.landing-hero-visual-meta span {
    color: rgba(255,255,255,0.52);
}

.landing-hero-visual-meta strong {
    color: rgba(255,255,255,0.9);
    text-align: right;
}

.work-image {
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.kailash-marquee {
    isolation: isolate;
}

.kailash-content {
    z-index: 2;
    max-width: min(820px, 56vw);
}

.kailash-side-frame {
    position: absolute;
    right: 5vw;
    bottom: 7vh;
    width: min(31vw, 440px);
    height: min(68vh, 680px);
    min-height: 500px;
    margin: 0;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        #080808;
    box-shadow: 0 40px 100px rgba(0,0,0,0.72);
}

.kailash-side-frame::before {
    content: "KAILASH // IMAGE FRAME";
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    z-index: 3;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    color: rgba(255,255,255,0.78);
    text-transform: uppercase;
}

.kailash-side-frame::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255,255,255,0.11);
    z-index: 3;
    pointer-events: none;
}

.kailash-side-frame.image-pending::after {
    content: "ADD kailash-side.jpg";
    display: grid;
    place-items: center;
    inset: 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.48);
    text-transform: uppercase;
}

.kailash-side-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.18) brightness(0.72);
    transform: scale(1.01);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kailash-side-frame:hover img {
    filter: grayscale(0%) contrast(1.05) brightness(0.86);
    transform: scale(1.045);
}

.film-watch-btn {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.78rem 1.15rem;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.025);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.film-watch-btn:hover,
.film-watch-btn:focus-visible {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    transform: translateY(-3px);
}

@media (max-width: 1180px) {
    .landing-hero-visual {
        width: min(31vw, 400px);
        height: 54vh;
        min-height: 380px;
        opacity: 0.72;
    }

    .kailash-side-frame {
        opacity: 0.74;
        width: min(28vw, 360px);
    }

    .kailash-content {
        max-width: min(780px, 62vw);
    }
}

@media (max-width: 900px) {
    .landing-hero-visual {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 52vh;
        min-height: 360px;
        margin-top: 3rem;
        opacity: 1;
    }

    .landing-hero-visual-meta {
        left: 1.35rem;
        right: 1.35rem;
        bottom: 1.35rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-hero-visual-meta strong {
        text-align: left;
    }

    .kailash-side-frame {
        display: none;
    }

    .kailash-content {
        max-width: 900px;
    }
}

/* =========================================
   PHASE 3.4: A24-style cinematic image fades
   Removes boxed feeling while preserving existing layout.
   ========================================= */
.hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 45%, rgba(255,255,255,0.055), transparent 34%),
        linear-gradient(180deg, rgba(3,3,3,0) 0%, rgba(3,3,3,0) 76%, var(--bg-color) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-text-wrapper,
.hero-sub {
    position: relative;
    z-index: 3;
}

.landing-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: min(72vw, 1180px);
    height: 100%;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    z-index: 0;
    opacity: 0.92;
    pointer-events: auto;
}

.landing-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.96) 16%, rgba(3,3,3,0.72) 34%, rgba(3,3,3,0.18) 58%, rgba(3,3,3,0.1) 100%),
        linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.12) 17%, rgba(3,3,3,0.04) 70%, var(--bg-color) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.014) 3px, rgba(255,255,255,0.014) 4px);
    z-index: 2;
    pointer-events: none;
}

.landing-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 0;
    background: radial-gradient(circle at 70% 48%, transparent 0%, rgba(3,3,3,0.28) 72%, var(--bg-color) 100%);
    z-index: 3;
    pointer-events: none;
}

.landing-hero-visual-img {
    position: absolute;
    inset: -2%;
    background-size: cover;
    background-position: center right;
    filter: grayscale(100%) contrast(1.22) brightness(0.62);
    transform: scale(1.02);
    transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.landing-hero-visual:hover .landing-hero-visual-img {
    filter: grayscale(35%) contrast(1.08) brightness(0.76);
    transform: scale(1.055);
}

.landing-hero-visual-meta {
    display: none;
}

/* Kailash image wash: keeps section structure, removes poster-box feeling */
.kailash-marquee {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.kailash-marquee::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.74) 38%, rgba(3,3,3,0.18) 68%, rgba(3,3,3,0.64) 100%),
        linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.04) 16%, rgba(3,3,3,0.06) 76%, var(--bg-color) 100%);
    pointer-events: none;
    z-index: 1;
}

.kailash-content {
    position: relative;
    z-index: 3;
    max-width: min(840px, 58vw);
}

.kailash-side-frame {
    position: absolute;
    right: 0;
    top: 0;
    bottom: auto;
    width: min(66vw, 1080px);
    height: 100%;
    min-height: 100%;
    margin: 0;
    z-index: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    opacity: 0.88;
    pointer-events: auto;
}

.kailash-side-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.96) 15%, rgba(3,3,3,0.65) 36%, rgba(3,3,3,0.08) 62%, rgba(3,3,3,0.3) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
    z-index: 2;
    pointer-events: none;
}

.kailash-side-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 0;
    background: radial-gradient(circle at 72% 50%, transparent 0%, rgba(3,3,3,0.18) 62%, var(--bg-color) 100%);
    z-index: 3;
    pointer-events: none;
}

.kailash-side-frame.image-pending::after {
    content: "ADD kailash-side.jpg";
    display: grid;
    place-items: center end;
    padding-right: 7vw;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.36);
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.7) 52%, rgba(3,3,3,0.25) 100%);
}

.kailash-side-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    filter: grayscale(100%) contrast(1.2) brightness(0.66);
    transform: scale(1.02);
    transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.kailash-side-frame:hover img {
    filter: grayscale(35%) contrast(1.08) brightness(0.8);
    transform: scale(1.055);
}

@media (max-width: 1180px) {
    .landing-hero-visual {
        width: 78vw;
        opacity: 0.78;
    }

    .kailash-side-frame {
        width: 72vw;
        opacity: 0.74;
    }

    .kailash-content {
        max-width: min(780px, 64vw);
    }
}

@media (max-width: 900px) {
    .landing-hero-visual {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        margin-top: 0;
        opacity: 0.36;
    }

    .landing-hero-visual::before {
        background:
            linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.9) 45%, rgba(3,3,3,0.62) 100%),
            linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.18) 18%, rgba(3,3,3,0.1) 72%, var(--bg-color) 100%);
    }

    .kailash-side-frame {
        display: block;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        opacity: 0.3;
    }

    .kailash-side-frame::before {
        background: linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.88) 50%, rgba(3,3,3,0.6) 100%);
    }

    .kailash-content {
        max-width: 900px;
    }
}


/* =========================================
   PHASE 3.5: Final visual stability fixes
   ========================================= */
.hero-section .landing-hero-visual {
    opacity: 0.82 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    pointer-events: none !important;
    will-change: auto !important;
}

.hero-section .landing-hero-visual-img {
    opacity: 1 !important;
    transform: scale(1.02) !important;
    filter: grayscale(100%) contrast(1.16) brightness(0.68) !important;
    transition: none !important;
    will-change: auto !important;
}

.hero-section .landing-hero-visual:hover .landing-hero-visual-img {
    transform: scale(1.02) !important;
    filter: grayscale(100%) contrast(1.16) brightness(0.68) !important;
}

.productions-page .kailash-bg {
    display: none !important;
}

.productions-page .kailash-marquee {
    background: #030303 !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.productions-page .kailash-marquee::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 77% 48%, rgba(255,255,255,0.06), transparent 32%),
        linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.04) 15%, rgba(3,3,3,0.04) 78%, var(--bg-color) 100%);
    z-index: 1;
    pointer-events: none;
}

.productions-page .kailash-marquee::after {
    background:
        linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.98) 18%, rgba(3,3,3,0.78) 42%, rgba(3,3,3,0.22) 67%, rgba(3,3,3,0.4) 100%),
        linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.02) 18%, rgba(3,3,3,0.06) 76%, var(--bg-color) 100%) !important;
    z-index: 2 !important;
}

.productions-page .kailash-content {
    position: relative !important;
    z-index: 4 !important;
    max-width: min(840px, 58vw) !important;
}

.productions-page .kailash-side-frame {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    width: min(70vw, 1120px) !important;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 0 !important;
    opacity: 0.9 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    pointer-events: none !important;
    transform: none !important;
}

.productions-page .kailash-side-frame::before {
    background:
        linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.96) 16%, rgba(3,3,3,0.64) 38%, rgba(3,3,3,0.08) 68%, rgba(3,3,3,0.22) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px) !important;
}

.productions-page .kailash-side-frame img {
    object-position: center right !important;
    filter: grayscale(100%) contrast(1.16) brightness(0.7) !important;
    transform: scale(1.02) !important;
    transition: none !important;
    will-change: auto !important;
}

.productions-page .kailash-side-frame:hover img {
    filter: grayscale(100%) contrast(1.16) brightness(0.7) !important;
    transform: scale(1.02) !important;
}

@media (max-width: 900px) {
    .hero-section .landing-hero-visual {
        opacity: 0.34 !important;
    }

    .productions-page .kailash-side-frame {
        width: 100% !important;
        opacity: 0.28 !important;
    }

    .productions-page .kailash-content {
        max-width: 900px !important;
    }
}


/* =========================================
   PHASE 3.6: Color restore + cinematic reflection wash
   =========================================
   Why: previous stability patch intentionally used grayscale filters.
   This restores the original image color while keeping the premium dark fade.
*/
.hero-section .landing-hero-visual {
    opacity: 0.9 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.hero-section .landing-hero-visual::before {
    background:
        linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.94) 15%, rgba(3,3,3,0.68) 34%, rgba(3,3,3,0.18) 60%, rgba(3,3,3,0.08) 100%),
        linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.10) 18%, rgba(3,3,3,0.04) 72%, var(--bg-color) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px) !important;
}

.hero-section .landing-hero-visual::after {
    background:
        radial-gradient(circle at 72% 45%, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at 40% 48%, rgba(255,255,255,0.035), transparent 22%),
        linear-gradient(90deg, rgba(3,3,3,0.78) 0%, rgba(3,3,3,0.18) 46%, rgba(3,3,3,0.2) 100%) !important;
    mix-blend-mode: screen;
    opacity: 0.7;
}

.hero-section .landing-hero-visual-img {
    opacity: 1 !important;
    transform: scale(1.025) !important;
    filter: saturate(1.12) contrast(1.08) brightness(0.72) !important;
    transition: none !important;
    will-change: auto !important;
}

/* Soft reflected spill toward the typography side. Uses the same image, blurred and mirrored. */
.hero-section .landing-hero-visual-img::after {
    content: "";
    position: absolute;
    inset: -8% 34% -8% -22%;
    background-image: inherit;
    background-size: cover;
    background-position: center right;
    transform: scaleX(-1) scale(1.05);
    opacity: 0.16;
    filter: blur(18px) saturate(1.2) brightness(1.1);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-section .landing-hero-visual:hover .landing-hero-visual-img {
    transform: scale(1.025) !important;
    filter: saturate(1.12) contrast(1.08) brightness(0.72) !important;
}

/* Kailash: one color side image only, extended into the left text zone by fade. */
.productions-page .kailash-bg,
.kailash-bg {
    display: none !important;
}

.productions-page .kailash-side-frame,
.kailash-side-frame {
    opacity: 0.96 !important;
    pointer-events: none !important;
}

.productions-page .kailash-side-frame::before,
.kailash-side-frame::before {
    background:
        linear-gradient(90deg, var(--bg-color) 0%, rgba(3,3,3,0.94) 14%, rgba(3,3,3,0.62) 36%, rgba(3,3,3,0.08) 68%, rgba(3,3,3,0.18) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.01) 3px, rgba(255,255,255,0.01) 4px) !important;
}

.productions-page .kailash-side-frame::after,
.kailash-side-frame::after {
    background:
        radial-gradient(circle at 74% 48%, rgba(255,255,255,0.07), transparent 30%),
        radial-gradient(circle at 47% 50%, rgba(255,255,255,0.025), transparent 24%),
        linear-gradient(180deg, var(--bg-color) 0%, rgba(3,3,3,0.02) 18%, rgba(3,3,3,0.05) 78%, var(--bg-color) 100%) !important;
    mix-blend-mode: screen;
    opacity: 0.72;
}

.productions-page .kailash-side-frame img,
.kailash-side-frame img {
    object-position: center right !important;
    filter: saturate(1.16) contrast(1.08) brightness(0.76) !important;
    transform: scale(1.025) !important;
    transition: none !important;
    will-change: auto !important;
}

.productions-page .kailash-side-frame:hover img,
.kailash-side-frame:hover img {
    filter: saturate(1.16) contrast(1.08) brightness(0.76) !important;
    transform: scale(1.025) !important;
}

@media (max-width: 900px) {
    .hero-section .landing-hero-visual {
        opacity: 0.48 !important;
    }

    .hero-section .landing-hero-visual-img::after {
        opacity: 0.08;
    }

    .productions-page .kailash-side-frame,
    .kailash-side-frame {
        opacity: 0.42 !important;
    }
}


/* =========================================
   PHASE 3.7: Concept teaser CTAs
   ========================================= */
.concept-teaser-btn {
    margin-top: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    padding: 0.72rem 1.05rem;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 2.2px;
    line-height: 1;
    text-transform: uppercase;
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.concept-teaser-btn:hover,
.concept-teaser-btn:focus-visible {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255,255,255,0.08);
}

.concept-teaser-btn--spec {
    margin-top: 0.9rem;
    font-family: var(--font-primary);
    font-size: 0.58rem;
    letter-spacing: 2px;
    padding: 0.65rem 0.9rem;
}

.text-right .concept-teaser-btn {
    margin-left: auto;
}

@media (max-width: 768px) {
    .concept-teaser-btn {
        font-size: 0.58rem;
        letter-spacing: 1.6px;
        padding: 0.68rem 0.9rem;
    }
}


/* =========================================
   FINAL MOBILE QA PATCH
   ========================================= */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

@media (hover: none), (pointer: coarse) {
    * { cursor: auto !important; }
    a,
    button,
    [data-hover="true"] { cursor: pointer !important; }
    .cursor-dot,
    .cursor-outline { display: none !important; }
}

@supports (height: 100svh) {
    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        min-height: 100svh;
    }
}

@media (max-width: 900px) {
    .premium-nav {
        align-items: flex-start !important;
        padding: 1.1rem 5vw 2.2rem 5vw !important;
        background: linear-gradient(to bottom, rgba(3,3,3,0.96) 0%, rgba(3,3,3,0.78) 58%, transparent 100%) !important;
    }

    .nav-logo-img {
        height: 70px !important;
    }

    .top-nav-links {
        display: grid !important;
        grid-template-columns: repeat(2, max-content);
        justify-content: end;
        align-content: flex-start;
        gap: 0.6rem 0.78rem !important;
        max-width: 66vw !important;
        padding-top: 0.35rem !important;
    }

    .top-nav-links a {
        font-size: 0.55rem !important;
        letter-spacing: 1.25px !important;
        line-height: 1.15 !important;
        opacity: 0.82;
    }

    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        padding-top: 9.5rem !important;
    }

    .hero-section {
        min-height: 100svh;
        justify-content: center;
        padding-bottom: 4rem;
    }

    .hero-title,
    .brand-copy .hero-title,
    .talent-hero-inner .hero-title {
        font-size: clamp(3.05rem, 15vw, 5rem) !important;
        line-height: 0.9 !important;
        letter-spacing: -0.055em !important;
        max-width: 100%;
    }

    .hero-sub {
        margin-top: 2.5rem !important;
        max-width: 92%;
    }

    .hero-sub p,
    .prod-hero-copy,
    .brand-hero-copy,
    .talent-hero-copy {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    .hero-section .landing-hero-visual {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.42 !important;
        margin: 0 !important;
        z-index: 0 !important;
    }

    .hero-section .landing-hero-visual-meta {
        display: none !important;
    }

    .hero-section .hero-text-wrapper,
    .hero-section .hero-sub {
        position: relative;
        z-index: 2;
    }

    .divisions-section {
        padding: 6rem 5vw 7rem 5vw !important;
    }

    .division-title {
        font-size: clamp(1.45rem, 8vw, 3rem) !important;
        line-height: 1.15 !important;
    }

    .work-section {
        padding: 3rem 5vw 7rem 5vw !important;
    }

    .work-item {
        margin-bottom: 6rem !important;
    }

    .work-image {
        width: 100% !important;
        height: auto !important;
        min-height: 260px !important;
        aspect-ratio: 3 / 2;
    }

    .work-details h3 {
        font-size: clamp(2.1rem, 11vw, 3.5rem) !important;
    }

    .kailash-marquee {
        min-height: auto !important;
        padding: 8rem 5vw !important;
        margin-bottom: 6rem !important;
    }

    .productions-page .kailash-side-frame,
    .kailash-side-frame {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.4 !important;
    }

    .kailash-content {
        max-width: 100% !important;
        position: relative;
        z-index: 2;
    }

    .kailash-title {
        font-size: clamp(2.7rem, 14vw, 4.8rem) !important;
    }

    .kailash-vision,
    .director-quote,
    .lore-block p {
        font-size: 1.02rem !important;
    }

    .editorial-split,
    .editorial-split.reverse-split {
        flex-direction: column !important;
        padding: 4rem 5vw !important;
        gap: 2.5rem !important;
    }

    .split-left {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto;
    }

    .split-right {
        width: 100%;
        padding-bottom: 2rem !important;
    }

    .film-name {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .spec-grid,
    .kailash-specs,
    .brand-hero-meta,
    .brand-metrics,
    .services-grid,
    .brand-system-grid,
    .talent-command-strip,
    .talent-roster-header,
    .talent-operating-grid,
    .talent-grid,
    .talent-modal-stats {
        grid-template-columns: 1fr !important;
    }

    .brand-hero,
    .talent-hero {
        min-height: auto !important;
        padding-bottom: 5rem !important;
    }

    .brand-metrics {
        width: calc(100% - 10vw) !important;
        margin-bottom: 6rem !important;
    }

    .metric-card,
    .service-card {
        min-height: auto !important;
        padding: 1.6rem !important;
    }

    .metric-value {
        font-size: clamp(3rem, 16vw, 5rem) !important;
    }

    .services-section,
    .brand-system-section,
    .talent-roster-section,
    .talent-operating-section {
        padding-bottom: 6rem !important;
    }

    .talent-operating-section {
        width: calc(100% - 10vw) !important;
        margin-bottom: 6rem !important;
    }

    .talent-card {
        aspect-ratio: 1 / 1.05 !important;
    }

    .talent-modal-panel {
        inset: 2vh 3vw !important;
        grid-template-columns: 1fr !important;
        overflow-y: auto !important;
    }

    .talent-modal-visual {
        min-height: 42vh !important;
    }

    .talent-modal-close {
        top: 0.85rem !important;
        right: 0.85rem !important;
    }

    .massive-contact {
        font-size: clamp(3.1rem, 16vw, 6rem) !important;
        margin-bottom: 5rem !important;
    }

    .footer-section {
        padding-top: 7rem !important;
    }
}

@media (max-width: 480px) {
    .premium-nav {
        padding-top: 0.9rem !important;
    }

    .nav-logo-img {
        height: 58px !important;
    }

    .top-nav-links {
        max-width: 70vw !important;
        gap: 0.48rem 0.62rem !important;
    }

    .top-nav-links a {
        font-size: 0.49rem !important;
        letter-spacing: 0.9px !important;
    }

    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        padding-top: 8.3rem !important;
    }

    .hero-title,
    .brand-copy .hero-title,
    .talent-hero-inner .hero-title {
        font-size: clamp(2.65rem, 14.5vw, 4rem) !important;
        line-height: 0.95 !important;
    }

    .section-label,
    .status-badge,
    .concept-teaser-btn,
    .film-watch-btn {
        letter-spacing: 1.45px !important;
    }

    .concept-teaser-btn,
    .film-watch-btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .footer-bottom {
        gap: 1.25rem !important;
    }
}


/* =========================================
   FINAL LIVE HOTFIX: smooth scrolling, mobile overflow,
   color defaults on touch devices, and celebrity card labels
   ========================================= */
html {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: auto !important;
}

body {
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto;
    touch-action: pan-y;
    overscroll-behavior-y: auto;
}

body.modal-open {
    overflow: hidden !important;
}

.smooth-scroll-wrapper,
main {
    overflow: visible !important;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none !important;
    will-change: transform;
}

.hero-title,
.division-title,
.kailash-title,
.film-name,
.work-details h3,
.talent-hero-inner .hero-title,
.talent-roster-header h2,
.talent-operating-copy h2,
.massive-contact {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

/* Celebrity cards: keep names visible, image color only on hover for desktop. */
.celeb-card {
    border: 1px solid rgba(255,255,255,0.10);
    background: #070707;
}

.celeb-img {
    filter: grayscale(100%) contrast(1.05);
}

.celeb-name {
    bottom: 0 !important;
    z-index: 3;
    min-height: 76px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2.4rem 1rem 1rem 1rem !important;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-shadow: 0 4px 18px rgba(0,0,0,0.9);
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.72) 42%, transparent 100%) !important;
}

.celeb-card:hover .celeb-img,
.celeb-card:focus-within .celeb-img {
    filter: grayscale(0%) contrast(1.04) saturate(1.08) !important;
}

@media (hover: none), (pointer: coarse) {
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        touch-action: pan-y !important;
    }

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

    .landing-hero-visual,
    .landing-hero-visual *,
    .kailash-side-frame,
    .kailash-side-frame *,
    .hero-section::after {
        pointer-events: none !important;
    }

    /* Mobile has no hover, so images must not stay black-and-white. */
    .work-image,
    .film-poster,
    .celeb-img {
        filter: grayscale(0%) contrast(1.03) saturate(1.06) !important;
    }

    .work-image:hover,
    .film-poster:hover,
    .editorial-split:hover .film-poster,
    .celeb-card:hover .celeb-img {
        filter: grayscale(0%) contrast(1.03) saturate(1.06) !important;
        transform: none !important;
    }

    .celeb-name {
        bottom: 0 !important;
    }
}

@media (max-width: 900px) {
    .division-title {
        font-size: clamp(1.3rem, 7vw, 2.6rem) !important;
        line-height: 1.12 !important;
        letter-spacing: 0.01em !important;
        padding-inline: 0.25rem;
    }

    .talent-hero-inner .hero-title {
        font-size: clamp(2.55rem, 12.4vw, 4.15rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.052em !important;
    }

    .talent-roster-header h2,
    .talent-operating-copy h2 {
        font-size: clamp(2rem, 9.8vw, 3.8rem) !important;
        line-height: 1 !important;
    }

    .celeb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.8rem !important;
    }

    .celeb-name {
        min-height: 66px;
        font-size: 0.72rem !important;
        letter-spacing: 1.35px !important;
    }
}

@media (max-width: 480px) {
    .top-nav-links {
        max-width: 68vw !important;
    }

    .top-nav-links a {
        font-size: 0.46rem !important;
        letter-spacing: 0.72px !important;
    }

    .division-title {
        font-size: clamp(1.14rem, 6.5vw, 2.05rem) !important;
    }

    .talent-hero-inner .hero-title {
        font-size: clamp(2.25rem, 11.4vw, 3.35rem) !important;
        letter-spacing: -0.045em !important;
    }

    .celeb-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   FINAL SCROLL FIX V2: remove desktop hit-test traps
   ========================================= */
html,
body {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
    scroll-behavior: auto !important;
}

body:not(.archive-body):not(.modal-open),
body:not(.archive-body):not(.modal-open) main,
body:not(.archive-body):not(.modal-open) .smooth-scroll-wrapper {
    overflow-y: visible !important;
}

/* Decorative cinematic layers should never capture mouse wheel events. */
.landing-hero-visual,
.landing-hero-visual *,
.hero-section::after,
.kailash-side-frame,
.kailash-side-frame *,
.kailash-marquee::before,
.kailash-marquee::after,
.impact-bg,
.impact-overlay,
.event-image,
.event-image *,
.talent-card::after,
.talent-card-visual,
.talent-modal-backdrop {
    pointer-events: none !important;
}

/* Keep actual controls clickable. */
a,
button,
input,
textarea,
select,
label,
.talent-card,
.ledger-header,
.timeline-item,
[data-hover="true"] {
    pointer-events: auto;
}

/* Disable custom cursor on deployed build to avoid scroll hit-testing bugs on some browsers. */
* {
    cursor: auto !important;
}

a,
button,
input,
textarea,
select,
label,
[data-hover="true"] {
    cursor: pointer !important;
}

input,
textarea {
    cursor: text !important;
}

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

/* Keep mobile/desktop images stable after disabling cursor hover tricks. */
@media (hover: none), (pointer: coarse) {
    .work-image,
    .film-poster,
    .celeb-img,
    .talent-card-visual,
    .talent-modal-visual {
        filter: grayscale(0%) contrast(1.03) saturate(1.06) !important;
    }
}
/* =========================================
   TALENT HERO TITLE FIX
   Prevents "MANAGEMENT" from breaking into NT.
   ========================================= */

.talent-hero {
    overflow: hidden;
}

.talent-hero .hero-title,
.talent-hero .outline-text {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Desktop / laptop fix */
.talent-hero .outline-text {
    font-size: clamp(3.8rem, 9.8vw, 9.2rem);
    line-height: 0.82;
}


/* Tablet */
@media (max-width: 900px) {
    .talent-hero .outline-text {
        font-size: clamp(3.2rem, 12vw, 6.5rem);
        letter-spacing: -0.075em;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .talent-hero .hero-title {
        font-size: clamp(3rem, 17vw, 5.4rem);
        letter-spacing: -0.06em;
    }

    .talent-hero .outline-text {
        font-size: clamp(2.5rem, 14vw, 4.4rem);
        letter-spacing: -0.07em;
        line-height: 0.88;
    }
}

/* =========================================
   FINAL MOBILE SCROLL + TITLE FIX
   ========================================= */

html,
body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}

.smooth-scroll-wrapper,
main {
    height: auto !important;
    min-height: 100% !important;
    overflow: visible !important;
}

.hero-section,
.prod-hero,
.brand-hero,
.talent-hero {
    overflow: hidden;
}

.hero-title,
.page-title,
.division-title,
.talent-hero .hero-title,
.talent-hero .outline-text {
    max-width: 100%;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

/* Mobile only */
@media (max-width: 768px) {
    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 150px !important;
        padding-bottom: 70px !important;
    }

    .hero-title {
        font-size: clamp(3rem, 13.2vw, 4.8rem) !important;
        line-height: 0.92 !important;
        letter-spacing: -0.06em !important;
        white-space: nowrap !important;
    }

    .outline-text {
        font-size: clamp(2.7rem, 12vw, 4.4rem) !important;
        line-height: 0.92 !important;
        letter-spacing: -0.055em !important;
        white-space: nowrap !important;
    }

    .page-title {
        font-size: clamp(2.6rem, 11vw, 4.2rem) !important;
        line-height: 0.95 !important;
        letter-spacing: -0.055em !important;
        white-space: nowrap !important;
    }

    .talent-hero .hero-title {
        font-size: clamp(3rem, 13vw, 4.6rem) !important;
        white-space: nowrap !important;
    }

    .talent-hero .outline-text {
        font-size: clamp(2.4rem, 10.4vw, 3.8rem) !important;
        white-space: nowrap !important;
    }
}

/* Extra small phones */
@media (max-width: 430px) {
    .hero-title {
        font-size: clamp(2.7rem, 12.2vw, 4rem) !important;
    }

    .outline-text {
        font-size: clamp(2.3rem, 10.8vw, 3.5rem) !important;
    }

    .page-title {
        font-size: clamp(2.2rem, 9.8vw, 3.4rem) !important;
    }

    .talent-hero .outline-text {
        font-size: clamp(2rem, 9.4vw, 3.1rem) !important;
    }
}
/* =========================================
   FINAL SCROLLBAR / STUCK SCROLL FIX
   Only body should scroll. No inner scrollbars.
   ========================================= */

html {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
}

body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Prevent wrapper from becoming a second scroll area */
.smooth-scroll-wrapper,
main {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
}

/* Hero sections should never create their own scrollbar */
.hero-section,
.prod-hero,
.brand-hero,
.talent-hero {
    height: auto !important;
    min-height: 100vh;
    max-height: none !important;
    overflow: visible !important;
}

/* All decorative image / reflection layers must not block scroll */
.hero-section::before,
.hero-section::after,
.prod-hero::before,
.prod-hero::after,
.brand-hero::before,
.brand-hero::after,
.talent-hero::before,
.talent-hero::after,
.landing-hero-visual,
.hero-bg,
.cinematic-bg,
.kailash-side-visual,
.kailash-side-image,
.kailash-image-layer {
    pointer-events: none !important;
}

/* Mobile hero height should not trap scroll */
@media (max-width: 768px) {
    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        min-height: auto !important;
        padding-top: 150px !important;
        padding-bottom: 90px !important;
    }
}


/* =========================================
   FINAL LIVE SCROLL CLEANUP PATCH
   Use this as the LAST block in style.css.
   Fixes duplicate scrollbar + stuck scroll on hero pages.
   ========================================= */

/* One scroll owner only: the browser document */
html {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: auto !important;
}

body {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
}

/* Archive and modal are the only allowed special scroll contexts */
body.archive-body {
    overflow-y: auto !important;
}

body.modal-open {
    overflow: hidden !important;
}

/* Main wrappers must never create their own scrollbar */
body:not(.archive-body):not(.modal-open) main,
body:not(.archive-body):not(.modal-open) .smooth-scroll-wrapper {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
}

/* Hero sections should not become scroll containers */
body:not(.archive-body):not(.modal-open) .hero-section,
body:not(.archive-body):not(.modal-open) .prod-hero,
body:not(.archive-body):not(.modal-open) .brand-hero,
body:not(.archive-body):not(.modal-open) .talent-hero {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Desktop keeps the cinematic first-screen feel */
@media (min-width: 769px) {
    .hero-section,
    .brand-hero,
    .talent-hero {
        min-height: 100vh !important;
    }

    .prod-hero {
        min-height: 82vh !important;
    }
}

/* Mobile should not get trapped inside hero sections */
@media (max-width: 768px) {
    html,
    body {
        height: auto !important;
        min-height: 100% !important;
        overflow-y: auto !important;
        touch-action: pan-y !important;
    }

    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding-top: 150px !important;
        padding-bottom: 85px !important;
    }
}

/* Decorative visual layers must never receive wheel/touch events */
.landing-hero-visual,
.landing-hero-visual *,
.hero-section::before,
.hero-section::after,
.prod-hero::before,
.prod-hero::after,
.brand-hero::before,
.brand-hero::after,
.talent-hero::before,
.talent-hero::after,
.kailash-side-frame,
.kailash-side-frame *,
.kailash-marquee::before,
.kailash-marquee::after,
.impact-bg,
.impact-overlay,
.event-image,
.event-image *,
.cinematic-bg,
.hero-bg,
.kailash-side-visual,
.kailash-side-image,
.kailash-image-layer {
    pointer-events: none !important;
}

/* Actual controls remain clickable */
a,
button,
input,
textarea,
select,
label,
.talent-card,
.ledger-header,
.timeline-item,
[data-hover="true"] {
    pointer-events: auto !important;
}

/* Keep custom cursor fully disabled on live site */
.cursor-dot,
.cursor-outline {
    display: none !important;
    pointer-events: none !important;
}

/* Avoid tiny horizontal overflow from 100vw sections */
.kailash-marquee,
.archive-wrapper,
.events-container,
.initiative-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}


/* =========================================================
   REAL FINAL SCROLL + HERO FIX
   This block must stay at the very bottom of style.css.
   It removes nested scroll containers and keeps decorative layers
   from blocking wheel/touch scroll.
   ========================================================= */
html {
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: auto !important;
}

body {
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    position: static !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}

body.modal-open {
    overflow: hidden !important;
}

.smooth-scroll-wrapper,
main {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
}

.hero-section,
.prod-hero,
.brand-hero,
.talent-hero {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow: hidden !important;
    position: relative !important;
}

@supports (min-height: 100svh) {
    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        min-height: 100svh !important;
    }
}

/* Remove old real landing image layer. The image is now safely a CSS background. */
.landing-hero-visual,
.landing-hero-visual * {
    display: none !important;
    pointer-events: none !important;
}

.hero-section {
    isolation: isolate !important;
}

.hero-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image:
        linear-gradient(90deg, #030303 0%, rgba(3,3,3,0.95) 27%, rgba(3,3,3,0.58) 58%, rgba(3,3,3,0.18) 100%),
        radial-gradient(circle at 72% 44%, rgba(255,255,255,0.08), transparent 34%),
        url("landing-hero-visual.jpg") !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    opacity: 0.92 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(3,3,3,0) 0%, rgba(3,3,3,0.08) 76%, #030303 100%),
        radial-gradient(circle at 74% 46%, rgba(255,255,255,0.06), transparent 36%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.hero-section .hero-text-wrapper,
.hero-section .hero-sub {
    position: relative !important;
    z-index: 3 !important;
}

/* Decorative layers must never capture wheel/touch gestures. */
.hero-section::before,
.hero-section::after,
.prod-hero::before,
.prod-hero::after,
.brand-hero::before,
.brand-hero::after,
.talent-hero::before,
.talent-hero::after,
.kailash-marquee::before,
.kailash-marquee::after,
.kailash-side-frame,
.kailash-side-frame *,
.impact-bg,
.impact-overlay,
.event-image,
.event-image *,
.talent-card::after,
.talent-card-visual,
.talent-modal-backdrop {
    pointer-events: none !important;
}

/* Real controls stay clickable. */
a,
button,
input,
textarea,
select,
label,
.talent-card,
.ledger-header,
.timeline-item,
[data-hover="true"] {
    pointer-events: auto !important;
}

/* Live build: no custom cursor. */
* {
    cursor: auto !important;
}

a,
button,
input,
textarea,
select,
label,
[data-hover="true"] {
    cursor: pointer !important;
}

input,
textarea {
    cursor: text !important;
}

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

/* Mobile sizing: avoid stuck first screen and word spill. */
@media (max-width: 768px) {
    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 150px !important;
        padding-bottom: 84px !important;
    }

    .hero-title {
        font-size: clamp(2.75rem, 12.2vw, 4.7rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.055em !important;
        white-space: nowrap !important;
        max-width: 100% !important;
    }

    .outline-text {
        font-size: clamp(2.35rem, 10.8vw, 4.1rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.052em !important;
        white-space: nowrap !important;
        max-width: 100% !important;
    }

    .page-title {
        font-size: clamp(2.15rem, 9.4vw, 3.8rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.045em !important;
        white-space: nowrap !important;
        max-width: 100% !important;
    }

    .brand-copy .hero-title,
    .talent-hero-inner .hero-title,
    .talent-hero .hero-title {
        font-size: clamp(2.75rem, 12vw, 4.8rem) !important;
        line-height: 0.9 !important;
        white-space: nowrap !important;
    }

    .talent-hero-inner .outline-text,
    .talent-hero .outline-text {
        font-size: clamp(2.1rem, 9.2vw, 3.5rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.055em !important;
        white-space: nowrap !important;
    }

    .work-image,
    .film-poster,
    .celeb-img,
    .talent-card-visual,
    .talent-modal-visual,
    .kailash-side-frame img {
        filter: grayscale(0%) contrast(1.03) saturate(1.06) !important;
    }
}

@media (max-width: 430px) {
    .hero-title {
        font-size: clamp(2.45rem, 11.3vw, 3.85rem) !important;
    }

    .outline-text {
        font-size: clamp(2rem, 9.6vw, 3.25rem) !important;
    }

    .page-title {
        font-size: clamp(1.9rem, 8.4vw, 3.1rem) !important;
    }

    .talent-hero-inner .outline-text,
    .talent-hero .outline-text {
        font-size: clamp(1.82rem, 8.4vw, 2.9rem) !important;
    }
}
/* =========================================
   TRUE DEFAULT BROWSER SCROLL FIX
   Only html owns scroll. No internal page scroller.
   ========================================= */

html {
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: auto !important;
}

body {
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    position: static !important;
    touch-action: auto !important;
    overscroll-behavior: auto !important;
}

main,
.smooth-scroll-wrapper {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
}

/* No section should become its own scroll box */
.hero-section,
.prod-hero,
.brand-hero,
.talent-hero,
.divisions-section,
.work-section,
.footer-section,
.talent-page,
.brand-page,
.productions-page {
    overflow: visible !important;
    max-height: none !important;
}

/* Decorative layers should never capture scroll */
.landing-hero-visual,
.landing-hero-visual *,
.hero-section::before,
.hero-section::after,
.kailash-side-frame,
.kailash-side-frame *,
.kailash-marquee::before,
.kailash-marquee::after {
    pointer-events: none !important;
}

/* Keep real clickable things working */
a,
button,
input,
textarea,
select,
label,
.talent-card,
.ledger-header,
.timeline-item {
    pointer-events: auto !important;
}

/* Only modals can lock body scroll */
body.modal-open {
    overflow: hidden !important;
}

/* =========================================================
   EMERGENCY FINAL: REAL NATIVE BROWSER SCROLL
   Do not add any scroll CSS after this block.
   - No internal page scrollbars
   - No scroll trap on first hero screen
   - No custom cursor layer
   ========================================================= */

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
    position: static !important;
    scroll-behavior: auto !important;
    overscroll-behavior: auto !important;
    touch-action: auto !important;
}

body {
    background-color: var(--bg-color, #030303) !important;
}

body.modal-open {
    overflow: hidden !important;
}

main,
.smooth-scroll-wrapper,
.hero-section,
.prod-hero,
.brand-hero,
.talent-hero,
.divisions-section,
.work-section,
.footer-section,
.productions-page,
.brand-page,
.talent-page,
.legal-shell {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative;
}

/* Make first scroll visibly move. Full 100vh heroes were creating the "stuck" feeling. */
.hero-section,
.prod-hero,
.brand-hero,
.talent-hero {
    min-height: auto !important;
    padding-top: clamp(10rem, 16vh, 12rem) !important;
    padding-bottom: clamp(5rem, 10vh, 8rem) !important;
}

@media (min-width: 769px) {
    .hero-section { min-height: 86vh !important; }
    .prod-hero { min-height: 76vh !important; }
    .brand-hero { min-height: 78vh !important; }
    .talent-hero { min-height: 78vh !important; }
}

@media (max-width: 768px) {
    .hero-section,
    .prod-hero,
    .brand-hero,
    .talent-hero {
        min-height: auto !important;
        padding-top: 145px !important;
        padding-bottom: 78px !important;
    }
}

/* Prevent 100vw sections from creating sideways/phantom scroll. */
.kailash-marquee,
.archive-wrapper,
.events-container,
.initiative-container,
.manifesto-container,
.transmit-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
}

/* Decorative layers can never intercept scroll/click gestures. */
.cursor-dot,
.cursor-outline,
.landing-hero-visual,
.landing-hero-visual *,
.hero-section::before,
.hero-section::after,
.prod-hero::before,
.prod-hero::after,
.brand-hero::before,
.brand-hero::after,
.talent-hero::before,
.talent-hero::after,
.kailash-marquee::before,
.kailash-marquee::after,
.kailash-side-frame,
.kailash-side-frame *,
.impact-bg,
.impact-overlay,
.event-image,
.event-image *,
.talent-card::after,
.talent-card-visual,
.talent-modal-backdrop {
    pointer-events: none !important;
}

/* Hide custom cursor. Use the browser cursor everywhere. */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

*,
*::before,
*::after {
    cursor: auto !important;
}

a,
button,
input,
textarea,
select,
label,
.talent-card,
.ledger-header,
.timeline-item,
[data-hover="true"] {
    pointer-events: auto !important;
}

a,
button,
.talent-card,
.ledger-header,
.timeline-item,
[data-hover="true"] {
    cursor: pointer !important;
}

input,
textarea {
    cursor: text !important;
}

/* Keep landing hero image as a safe background, not a real scroll layer. */
.hero-section {
    isolation: isolate !important;
}

.hero-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image:
        linear-gradient(90deg, #030303 0%, rgba(3,3,3,0.95) 27%, rgba(3,3,3,0.58) 58%, rgba(3,3,3,0.18) 100%),
        radial-gradient(circle at 72% 44%, rgba(255,255,255,0.08), transparent 34%),
        url("landing-hero-visual.jpg") !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    opacity: 0.92 !important;
    z-index: 0 !important;
}

.hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(3,3,3,0) 0%, rgba(3,3,3,0.08) 76%, #030303 100%),
        radial-gradient(circle at 74% 46%, rgba(255,255,255,0.06), transparent 36%) !important;
    z-index: 1 !important;
}

.hero-section .hero-text-wrapper,
.hero-section .hero-sub {
    position: relative !important;
    z-index: 3 !important;
}

/* Mobile color defaults */
@media (hover: none), (pointer: coarse) {
    .work-image,
    .film-poster,
    .celeb-img,
    .talent-card-visual,
    .talent-modal-visual,
    .kailash-side-frame img {
        filter: grayscale(0%) contrast(1.03) saturate(1.06) !important;
    }
}
