/* ==========================================================================
   False Colour v3.0 — Elite Prestige Styles
   Australia's Premier Colour Collective
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

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

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

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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

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

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

ul,
ol {
    list-style: none;
}

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

::selection {
    background: rgba(255, 0, 0, 0.4);
    color: #fff;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
    --red: #ff0000;
    --green: #00ff00;
    --blue: #0000ff;

    --black: #000000;
    --void: #030303;
    --dark: #0a0a0a;
    --gray: #1a1a1a;
    --muted: #666;
    --light: #999;
    --white: #ffffff;

    --gold: #c9a962;
    --netflix: #e50914;
    --apple: #fff;
    --stan: #00aaff;
    --paramount: #0064ff;
    --disney: #113ccf;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

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

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --z-cursor: 10000;
    --z-loader: 9000;
    --z-nav: 1000;
    --z-overlay: 500;
}

/* ==========================================================================
   Cursor — RGB Chromatic Trail
   ========================================================================== */

.cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: screen;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, opacity 0.3s ease;
}

.cursor-core {
    background: var(--white);
    mix-blend-mode: difference;
    z-index: calc(var(--z-cursor) + 3);
}

.cursor-red {
    background: var(--red);
    opacity: 0.8;
}

.cursor-green {
    background: var(--green);
    opacity: 0.8;
}

.cursor-blue {
    background: var(--blue);
    opacity: 0.8;
}

.cursor.hovering {
    transform: translate(-50%, -50%) scale(2.5);
}

.cursor.hovering.cursor-core {
    background: transparent;
    border: 1px solid var(--white);
}

.cursor-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
}

@media (hover: none) {

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

    body {
        cursor: auto;
    }
}

/* ==========================================================================
   Loader
   ========================================================================== */

.loader {
    position: fixed;
    inset: 0;
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.loader-bars {
    position: absolute;
    inset: 0;
    display: flex;
}

.loader-bar {
    flex: 1;
    transform: scaleY(0);
    transform-origin: bottom;
}

.loader-bar:nth-child(1) {
    background: var(--red);
}

.loader-bar:nth-child(2) {
    background: var(--green);
}

.loader-bar:nth-child(3) {
    background: var(--blue);
}

.loader-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.loader-logo {
    width: 200px;
    opacity: 0;
    filter: blur(20px);
}

.loader-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: var(--space-md);
    opacity: 0;
    color: var(--light);
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--space-md) auto 0;
    overflow: hidden;
    border-radius: 1px;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

/* ==========================================================================
   Hero — Prestige Impact
   ========================================================================== */

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--black) 70%);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Client Logos Strip */
.hero-clients {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    opacity: 0.6;
}

.hero-clients-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-clients-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.client-logo {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.client-logo.netflix {
    color: var(--netflix);
}

.client-logo.apple {
    color: var(--white);
}

.client-logo.stan {
    color: var(--stan);
}

.client-logo.paramount {
    color: var(--paramount);
}

.client-logo.disney {
    color: #5fc9f8;
}

.client-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--muted);
}

/* Main Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: var(--space-sm);
}

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

.hero-title-word {
    display: inline-block;
    transform: translateY(100%);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: var(--light);
    margin-bottom: var(--space-xl);
}

/* Hidden by default — revealed by GSAP hero animations */
.hero-clients,
.hero-subtitle,
.hero-stat,
.hero-awards,
.hero-press {
    opacity: 0;
}

/* Prestige Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Awards Badge */
.hero-awards {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 4px;
    margin-bottom: var(--space-lg);
}

.hero-awards-icon {
    color: var(--gold);
    font-size: 1.25rem;
}

.hero-awards-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

/* Press Mentions */
.hero-press {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0.5;
}

.hero-press-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-press-logos {
    display: flex;
    gap: var(--space-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.scroll-indicator-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    opacity: 0.5;
}

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.2);
    }
}

/* ==========================================================================
   Accolades Strip — Auto-Scrolling
   ========================================================================== */

.accolades {
    background: var(--void);
    padding: var(--space-md) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accolades-track {
    display: flex;
    gap: var(--space-xl);
    animation: scrollTrack 30s linear infinite;
    width: max-content;
}

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

@keyframes scrollTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.accolade-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
}

.accolade-icon {
    color: var(--gold);
    font-size: 1rem;
}

.accolade-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
}

/* ==========================================================================
   About — Horizontal Scroll
   ========================================================================== */

.about {
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.about-horizontal {
    display: flex;
    width: fit-content;
}

.about-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: var(--space-lg);
}

/* Multi-word phrase container */
.about-phrase {
    display: flex;
    align-items: baseline;
    gap: clamp(1rem, 3vw, 3rem);
    justify-content: center;
}

.about-giant-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--white);
    opacity: 1;
    text-align: center;
    transition: transform 0.2s linear;
}

.about-giant-text.phrase-word {
    transform: translateY(0);
    opacity: 1;
}

.about-giant-text.phrase-word.revealed {
    transform: translateY(0);
}

.about-giant-text.phrase-word.revealed:not(.highlight) {
    opacity: 1;
}

.about-giant-text.highlight {
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-giant-text.highlight.revealed {
    opacity: 1;
}

.about-giant-text.phrase-word.solo {
    font-size: clamp(5rem, 15vw, 14rem);
}

.about-giant-text.phrase-word.solo.revealed {
    opacity: 1;
}

.about-intro {
    max-width: 800px;
    text-align: center;
}

.about-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--light);
}

/* ==========================================================================
   Artists — Full-Bleed Cinematic Cards
   ========================================================================== */

.artists {
    background: var(--void);
    padding: var(--space-2xl) 0;
}

.artists-header {
    text-align: center;
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-xl);
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Artist Card — Full Width */
.artist-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.artist-card:nth-child(even) {
    direction: rtl;
}

.artist-card:nth-child(even)>* {
    direction: ltr;
}

.artist-image {
    position: relative;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.artist-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, var(--void) 100%);
}

.artist-card:nth-child(even) .artist-image-overlay {
    background: linear-gradient(to left, transparent 50%, var(--void) 100%);
}

.artist-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
}

/* Artist Award Badge */
.artist-award {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 2px;
    margin-bottom: var(--space-md);
    width: fit-content;
}

.artist-award-icon {
    color: var(--gold);
}

.artist-award-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.artist-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.artist-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-lg);
}

.artist-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

/* Credits List */
.artist-credits-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-sm);
}

.artist-credits {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.artist-credit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.credit-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
}

.credit-platform {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

.credit-platform.netflix {
    background: rgba(229, 9, 20, 0.2);
    color: var(--netflix);
}

.credit-platform.apple {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.credit-platform.stan {
    background: rgba(0, 170, 255, 0.2);
    color: var(--stan);
}

.credit-platform.disney {
    background: rgba(17, 60, 207, 0.2);
    color: #5fc9f8;
}

.credit-platform.abc {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.credit-platform.paramount {
    background: rgba(0, 100, 255, 0.2);
    color: var(--paramount);
}

/* ==========================================================================
   Work — Immersive Gallery with Platform Badges
   ========================================================================== */

.work {
    background: var(--black);
    overflow: visible;
    position: relative;
    z-index: 5;
    --work-pre-horizontal-distance: 0px;
    --work-horizontal-distance: 0px;
    --work-post-horizontal-distance: 0px;
    min-height: calc(100vh + var(--work-pre-horizontal-distance) + var(--work-horizontal-distance) + var(--work-post-horizontal-distance));
}

.work-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.work-gallery {
    position: sticky;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    top: 0;
}

.work-gallery-horizontal {
    display: flex;
    width: fit-content;
    height: 100%;
}

.work-slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-slide-media {
    position: absolute;
    inset: 10%;
    overflow: hidden;
    border-radius: 8px;
}

.work-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.work-slide:hover .work-slide-image {
    transform: scale(1.05);
}

.work-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 40%);
}

.work-slide-content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    right: 10%;
    z-index: 1;
}

/* Platform Badge */
.work-platform {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(229, 9, 20, 0.9);
    border-radius: 2px;
    margin-bottom: var(--space-sm);
}

.work-platform.netflix {
    background: rgba(229, 9, 20, 0.9);
}

.work-platform.apple {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.work-platform.stan {
    background: rgba(0, 170, 255, 0.9);
}

.work-platform.disney {
    background: rgba(17, 60, 207, 0.9);
}

.work-platform.abc {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.work-platform-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.work-slide-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.work-slide-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--light);
}

/* Award Badge on Work */
.work-award {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    color: var(--gold);
}

.work-award-icon {
    font-size: 1rem;
}

.work-award-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.work-progress {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-progress.visible {
    opacity: 1;
}

.work-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.work-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
    transform-origin: left;
}

.work-progress-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--void);
    padding: var(--space-xl);
    position: relative;
    z-index: 1;
}

.contact-content {
    text-align: center;
    max-width: 1000px;
}

.contact-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-md);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: var(--space-lg);
}

.contact-email {
    display: inline-block;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--light);
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
    transition: width 0.6s var(--ease-out-expo);
}

.contact-email:hover::after {
    width: 100%;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out-expo);
}

.social-link:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* ==========================================================================
   Film Grain
   ========================================================================== */

.film-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grainShift 0.3s steps(10) infinite;
}

@keyframes grainShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-2%, -2%);
    }

    20% {
        transform: translate(2%, 2%);
    }

    30% {
        transform: translate(-1%, 2%);
    }

    40% {
        transform: translate(2%, -1%);
    }

    50% {
        transform: translate(-2%, 1%);
    }

    60% {
        transform: translate(1%, -2%);
    }

    70% {
        transform: translate(-1%, -1%);
    }

    80% {
        transform: translate(2%, 1%);
    }

    90% {
        transform: translate(-1%, 2%);
    }
}

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

@media (max-width: 1024px) {
    .artist-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .artist-card:nth-child(even) {
        direction: ltr;
    }

    .artist-image {
        height: 50vh;
    }

    .artist-image-overlay {
        background: linear-gradient(to top, var(--void) 0%, transparent 50%);
    }

    .artist-details {
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: var(--space-sm) var(--space-md);
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-clients {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .work-slide-media {
        inset: 0;
        border-radius: 0;
    }

    .work-slide-content {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-lg);
    }

    .footer {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ==========================================================================
   Work Grid & New UI Elements (v3.1)
   ========================================================================== */

/* Hero Button */
.hero-title-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
}

.hero-cta-text {
    position: relative;
}

.hero-cta-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.hero-cta-button:hover {
    opacity: 1;
}

.hero-cta-button:hover .hero-cta-text::after {
    transform: scaleX(1);
}

.hero-cta-icon {
    display: inline-block;
    transition: transform 0.4s var(--ease-out-expo);
    font-size: 1rem;
}

.hero-cta-button:hover .hero-cta-icon {
    transform: translateX(5px);
}

/* Artist Card "View Work" Button - Refined (No Pill) */
.artist-view-work {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: 0.5rem 0;
    /* Text only padding */
    border: none;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    transition: all 0.4s var(--ease-out-expo);
    width: fit-content;
    position: relative;
    background: none;
}

.artist-view-work::after {
    content: '→';
    display: inline-flex;
    transition: transform 0.4s var(--ease-out-expo);
    opacity: 0.7;
}

.artist-view-work::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease-out-expo);
}

.artist-view-work:hover {
    background: none;
    color: var(--white);
    box-shadow: none;
    transform: translateX(5px);
}

.artist-view-work:hover::before {
    width: 100%;
}

.artist-view-work:hover::after {
    transform: translateX(5px);
    opacity: 1;
}

/* Hero Button Animation - Premium Shimmer (Subtle) */
@keyframes heroBtnShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hero-cta-button {
    /* ... existing structure ... */
    background: linear-gradient(90deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 60%,
            transparent 100%);
    background-size: 200% 100%;
    animation: heroBtnShimmer 4s infinite linear;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.4s ease, color 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 0;
}

.hero-cta-button:hover {
    animation: none;
    /* ... existing hover ... */
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateX(5px);
}

/* ==========================================================================
   Work Grid Page Styles
   ========================================================================== */

.work-grid-page {
    background: var(--black);
    min-height: 100vh;
    padding-top: 0;
}

.work-filter-bar {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: 5.5rem var(--space-md) var(--space-md);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.97) 70%,
            rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light);
    transition: all 0.3s ease;
    background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.masconry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: var(--space-md);
    padding: 0 var(--space-lg) var(--space-2xl);
    max-width: 1800px;
    margin: 0 auto;
}


.grid-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s var(--ease-out-expo) forwards;
}

.grid-item-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out-expo);
}

.grid-item:hover .grid-item-inner {
    transform: scale(1.05);
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.grid-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.grid-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--light);
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}

.grid-item:hover .grid-title,
.grid-item:hover .grid-meta {
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .hero-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .masconry-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--space-md) var(--space-xl);
    }
}

/* ==========================================================================
   Work Detail Modal
   ========================================================================== */

.work-modal {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
}

.work-modal.active {
    pointer-events: all;
    visibility: visible;
}

.work-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    opacity: 0;
}

.work-modal-content {
    position: relative;
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    background: var(--void);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.work-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.work-modal-close:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: rotate(90deg);
}

.work-modal-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.work-modal-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--void) 0%, transparent 40%);
    pointer-events: none;
}

.work-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-modal-details {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-modal-platform {
    width: fit-content;
}

.work-modal-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.work-modal-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
}

.work-modal-award {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 2px;
    width: fit-content;
    margin-top: 0.25rem;
}

.work-modal-award-icon {
    color: var(--gold);
    font-size: 0.75rem;
}

.work-modal-award-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

@media (max-width: 768px) {
    .work-modal-content {
        width: 95vw;
        max-height: 95vh;
    }

    .work-modal-details {
        padding: var(--space-md);
    }
}
