        /* ==========================================================================
           CELESTIAL EDITORIAL DESIGN SYSTEM & DESIGN TOKENS
           ========================================================================== */
        :root {
            color-scheme: light only;
            --canvas-bg: #FAF7F2;
            --canvas-surface: #FFFFFF;
            --canvas-elevated: #F5EFEB;
            --canvas-subtle: #ECE4D9;
            --canvas-dark: #130F0C;
            --canvas-dark-surface: #1A1512;
            --canvas-dark-elevated: #241E19;
            --canvas-glass: rgba(250, 247, 242, 0.82);
            --canvas-glass-dark: rgba(26, 21, 18, 0.86);

            --text-primary: #1A1512;
            --text-secondary: #5A4E45;
            --text-muted: #8C7E74;
            --text-light: #FCF9F5;
            --text-light-secondary: #C8BFB6;
            --text-light-muted: #8E8277;

            --stardust-gold: #D1A543;
            --stardust-gold-light: #F5DF9E;
            --stardust-gold-dark: #9E741B;
            --gold-glow: rgba(209, 165, 67, 0.35);
            --gold-border: rgba(209, 165, 67, 0.28);
            --gold-gradient: linear-gradient(135deg, #F5DF9E 0%, #D1A543 50%, #9E741B 100%);
            --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 223, 158, 0.15) 0%, rgba(209, 165, 67, 0.08) 100%);

            --nebula-peach: #FFB5A7;
            --nebula-violet: #C4B5FD;
            --celestial-cyan: #6CAAC2;

            --font-serif: 'Cormorant Garamond', Georgia, serif;
            --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;

            --ease-celestial: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);

            --radius-xs: 6px;
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;
            --radius-pill: 9999px;

            --shadow-sm: 0 4px 16px rgba(26, 21, 18, 0.04);
            --shadow-md: 0 12px 32px rgba(26, 21, 18, 0.08);
            --shadow-lg: 0 24px 64px rgba(26, 21, 18, 0.14);
            --shadow-gold: 0 16px 48px rgba(209, 165, 67, 0.22);
            --shadow-dark: 0 24px 64px rgba(0, 0, 0, 0.45);
        }

        /* Reset & Global Scaffolding */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            background-color: #FAF7F2 !important;
            color: #1A1512 !important;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
        }

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

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

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        body {
            position: relative;
            min-height: 100vh;
            background-color: #FAF7F2 !important;
            color: #1A1512 !important;
            overflow-x: hidden;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            user-select: none;
            -webkit-user-drag: none;
        }

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

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

        /* Interactive Stardust Canvas */
        #stardustCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 1;
        }

        /* Top Header & Bar */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 900;
            background: rgba(250, 247, 242, 0.75);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            border-bottom: 1px solid rgba(209, 165, 67, 0.18);
            transition: transform 0.4s var(--ease-celestial), background 0.4s ease;
        }

        .header-brand {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .brand-monogram {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--stardust-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gold-gradient-subtle);
            color: var(--stardust-gold);
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-weight: 600;
            box-shadow: 0 0 16px rgba(209, 165, 67, 0.2);
        }

        .brand-name {
            font-family: var(--font-serif);
            font-size: 1.35rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            color: var(--text-primary);
            text-transform: uppercase;
        }

        .brand-subtitle {
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--text-secondary);
            text-transform: uppercase;
            position: relative;
            padding: 6px 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 1.5px;
            background: var(--gold-gradient);
            transition: width 0.3s var(--ease-celestial);
        }

        .nav-link:hover {
            color: var(--stardust-gold-dark);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            background: rgba(209, 165, 67, 0.1);
            border: 1px solid rgba(209, 165, 67, 0.3);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            color: var(--stardust-gold-dark);
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #10B981;
            box-shadow: 0 0 10px #10B981;
            animation: pulseDot 2.2s infinite ease-in-out;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.85); }
        }

        .btn-header-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            background: var(--gold-gradient);
            color: #1A1512;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: 0 4px 18px rgba(209, 165, 67, 0.28);
            transition: transform 0.3s var(--ease-celestial), box-shadow 0.3s var(--ease-celestial);
        }

        .btn-header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 26px rgba(209, 165, 67, 0.4);
        }

        /* Main Container */
        .scrolly-container {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        /* ==========================================================================
           SECTION 1: HERO STARDUST ENTRANCE (STARGAZER TYPOGRAPHY + ORIGINAL 3D DECK)
           ========================================================================== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 36px 24px 60px;
            overflow: hidden;
            text-align: center;
        }

        .hero-aura-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 75vw;
            max-width: 900px;
            height: 75vw;
            max-height: 900px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(209, 165, 67, 0.14) 0%, rgba(255, 181, 167, 0.08) 40%, rgba(250, 247, 242, 0) 70%);
            filter: blur(40px);
            pointer-events: none;
            z-index: -1;
        }

        .hero-content-wrap {
            max-width: 920px;
            width: 100%;
            text-align: center;
            margin: 0 auto 18px;
            position: relative;
            z-index: 15;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: clamp(3rem, 6vw, 5.2rem);
            font-weight: 400;
            line-height: 1.02;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            max-width: 900px;
            margin-bottom: 20px;
        }

        .hero-title em {
            font-style: italic;
            font-weight: 600;
            color: var(--stardust-gold-dark);
            background: linear-gradient(135deg, #C29124 0%, #D1A543 50%, #8A610F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-lead {
            font-size: clamp(1.02rem, 1.6vw, 1.2rem);
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 620px;
            margin: 0 auto 30px;
            font-weight: 400;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .btn-gold-capsule {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #D1A543 0%, #B88A28 100%);
            color: #FAF7F2;
            text-decoration: none;
            font-size: 0.90rem;
            font-weight: 700;
            padding: 13px 32px;
            border-radius: var(--radius-pill);
            box-shadow: 0 10px 28px rgba(209, 165, 67, 0.35);
            transition: all 0.25s var(--ease-celestial);
            cursor: pointer;
        }

        .btn-gold-capsule:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(209, 165, 67, 0.45);
        }

        .btn-ghost-capsule {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.7);
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.90rem;
            font-weight: 600;
            padding: 13px 26px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(209, 165, 67, 0.28);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.25s var(--ease-celestial);
            cursor: pointer;
        }

        .btn-ghost-capsule:hover {
            background: #FFFFFF;
            border-color: var(--stardust-gold);
            transform: translateY(-2px);
        }

        /* 3D Hero Perspective Card Deck */
        .hero-deck-viewport {
            perspective: 1400px;
            width: 100%;
            max-width: 1080px;
            height: 480px;
            position: relative;
            margin: 10px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transform-style: preserve-3d;
        }

        .deck-card {
            position: absolute;
            cursor: pointer;
            will-change: transform, opacity;
            transform-style: preserve-3d;
            backface-visibility: hidden;
        }

        .deck-card-inner {
            width: 100%;
            height: 100%;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            background: #FFFFFF;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: var(--shadow-lg);
            transition: transform 0.35s var(--ease-celestial), box-shadow 0.35s var(--ease-celestial);
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .deck-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease-celestial);
            display: block;
        }

        .deck-card-center {
            width: 320px;
            height: 440px;
            z-index: 5;
            transform: translateZ(30px);
        }

        .deck-card-center .deck-card-inner {
            border: 1.5px solid var(--stardust-gold);
            box-shadow: 0 20px 60px rgba(209, 165, 67, 0.32), var(--shadow-lg);
        }

        .deck-card-left {
            width: 270px;
            height: 380px;
            z-index: 3;
            transform: translateX(-220px) rotateY(14deg) scale(0.93);
            opacity: 0.95;
        }

        .deck-card-right {
            width: 280px;
            height: 380px;
            z-index: 3;
            transform: translateX(220px) rotateY(-14deg) scale(0.93);
            opacity: 0.95;
        }

        .deck-card:hover .deck-card-inner {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 30px 80px rgba(209, 165, 67, 0.45), var(--shadow-lg);
        }

        .deck-card-badge {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            background: rgba(19, 15, 12, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(209, 165, 67, 0.3);
            color: #FFFFFF;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .deck-card-title {
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .deck-card-price {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--stardust-gold-light);
        }

        /* Reusable Color Matrix Swatch Strip (Modal Inspector) */
        .anatomy-swatches-wrap {
            margin-top: 10px;
            padding-top: 20px;
            border-top: 1px solid rgba(209, 165, 67, 0.15);
        }

        .swatch-label {
            font-size: 0.72rem;
            letter-spacing: 0.15em;
            color: var(--stardust-gold);
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .swatch-strip {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .color-swatch-chip {
            flex: 1;
            height: 44px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            cursor: pointer;
            transition: transform 0.25s var(--ease-celestial), border-color 0.25s ease;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 4px;
        }

        .color-swatch-chip:hover {
            transform: translateY(-4px) scale(1.05);
            border-color: #FFFFFF;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }

        .swatch-hex-text {
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            padding: 2px 4px;
            border-radius: 3px;
            background: rgba(0, 0, 0, 0.6);
            color: #FFFFFF;
        }

        /* ==========================================================================
           SECTION 3: HORIZONTAL CELESTIAL GALLERY TRACK
           ========================================================================== */
        .gallery-track-section {
            position: relative;
            width: 100%;
            background: var(--canvas-bg);
            overflow: hidden;
        }

        .gallery-track-pinned {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .gallery-track-rail {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 0 200px 0 80px;
            width: max-content;
            will-change: transform;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .gallery-intro-card {
            width: 440px;
            flex-shrink: 0;
            padding-right: 40px;
        }

        .gallery-intro-tag {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.26em;
            color: var(--stardust-gold);
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .gallery-intro-title {
            font-family: var(--font-serif);
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .gallery-intro-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 28px;
        }

        .gallery-scroll-hint {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--stardust-gold-dark);
            text-transform: uppercase;
        }

        .gallery-item-card {
            position: relative;
            width: 380px;
            height: 520px;
            flex-shrink: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #FFFFFF;
            border: 1px solid rgba(209, 165, 67, 0.2);
            box-shadow: var(--shadow-md);
            cursor: pointer;
            transition: transform 0.4s var(--ease-celestial), box-shadow 0.4s var(--ease-celestial), border-color 0.4s ease, width 0.4s var(--ease-celestial);
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .gallery-item-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 24px 60px rgba(209, 165, 67, 0.28), var(--shadow-lg);
            border-color: var(--stardust-gold);
        }

        .gallery-item-card.wide-card {
            width: 600px;
        }

        .card-img-wrap {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            background: #17120E;
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 0.6s var(--ease-celestial);
            will-change: transform;
        }

        .gallery-item-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .card-roman-numeral {
            position: absolute;
            top: 20px;
            right: 24px;
            font-family: var(--font-serif);
            font-size: 4.5rem;
            font-weight: 300;
            line-height: 1;
            color: rgba(255, 255, 255, 0.25);
            pointer-events: none;
            z-index: 5;
            transition: color 0.3s ease;
        }

        .gallery-item-card:hover .card-roman-numeral {
            color: rgba(245, 223, 158, 0.7);
        }

        .card-scrim-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(19, 15, 12, 0.92) 0%, rgba(19, 15, 12, 0.4) 40%, rgba(19, 15, 12, 0) 70%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            color: #FFFFFF;
            z-index: 6;
        }

        .card-top-chips {
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 8px;
            z-index: 7;
        }

        .card-category-pill {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: var(--radius-pill);
            background: rgba(19, 15, 12, 0.75);
            backdrop-filter: blur(8px);
            color: var(--stardust-gold-light);
            border: 1px solid rgba(209, 165, 67, 0.35);
        }

        .card-price-pill {
            font-size: 0.72rem;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: var(--radius-pill);
            background: var(--gold-gradient);
            color: #1A1512;
        }

        .card-meta-title {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .card-meta-desc {
            font-size: 0.82rem;
            line-height: 1.5;
            color: var(--text-light-secondary);
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-cta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.76rem;
            font-weight: 700;
            color: var(--stardust-gold-light);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

                /* ==========================================================================
           SECTION 3: SPEEDPAINT VIDEO SHOWCASE (#speedpaint)
           ========================================================================== */
        .speedpaint-section {
            position: relative;
            width: 100%;
            background: #08070B;
            color: var(--text-light);
            padding: 110px 48px;
            overflow: hidden;
            z-index: 10;
        }

        .speedpaint-bg-ambient {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 30%, rgba(209, 165, 67, 0.12) 0%, transparent 60%),
                        radial-gradient(circle at 80% 80%, rgba(255, 181, 167, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .speedpaint-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .speedpaint-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 48px;
        }

        .speedpaint-super-tag {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            color: var(--stardust-gold);
            text-transform: uppercase;
            margin-bottom: 14px;
            display: inline-block;
            padding: 4px 16px;
            border-radius: var(--radius-pill);
            background: rgba(209, 165, 67, 0.1);
            border: 1px solid rgba(209, 165, 67, 0.25);
        }

        .speedpaint-title {
            font-family: var(--font-serif);
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            font-weight: 400;
            line-height: 1.15;
            color: #FFFFFF;
            margin-bottom: 14px;
        }

        .speedpaint-title em {
            font-style: italic;
            font-weight: 600;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .speedpaint-subtitle {
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            line-height: 1.6;
            color: var(--text-light-secondary);
        }

        .speedpaint-player-stage {
            position: relative;
            width: 100%;
            border-radius: var(--radius-lg);
            perspective: 1000px;
        }

        .speedpaint-glow-backdrop {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(209, 165, 67, 0.25) 0%, rgba(255, 181, 167, 0.12) 40%, transparent 75%);
            filter: blur(35px);
            opacity: 0.45;
            transition: opacity 0.5s ease;
            z-index: 1;
            pointer-events: none;
            border-radius: inherit;
        }

        .speedpaint-player-stage:hover .speedpaint-glow-backdrop,
        .speedpaint-player-stage.is-playing .speedpaint-glow-backdrop {
            opacity: 0.85;
        }

        .speedpaint-player-frame {
            position: relative;
            z-index: 2;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #0D0A0F;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(209, 165, 67, 0.3);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(209, 165, 67, 0.15);
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .speedpaint-player-frame:hover {
            border-color: rgba(209, 165, 67, 0.55);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 45px rgba(209, 165, 67, 0.25);
        }

        .speedpaint-video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .speedpaint-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(8, 7, 11, 0.35);
            border: none;
            cursor: pointer;
            z-index: 5;
            transition: opacity 0.3s ease, background 0.3s ease;
        }

        .speedpaint-play-overlay .play-icon-glow {
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--gold-gradient);
            filter: blur(14px);
            opacity: 0.6;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .speedpaint-play-overlay .play-svg-icon {
            position: relative;
            z-index: 2;
            width: 72px;
            height: 72px;
            padding: 18px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: #15100C;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .speedpaint-player-frame:hover .speedpaint-play-overlay .play-svg-icon {
            transform: scale(1.12);
        }

        .speedpaint-player-frame.is-playing .speedpaint-play-overlay {
            opacity: 0;
            pointer-events: none;
        }

        .speedpaint-player-frame.is-playing:hover .speedpaint-play-overlay {
            opacity: 1;
            background: rgba(8, 7, 11, 0.2);
            pointer-events: auto;
        }

        .speedpaint-controls-bar {
            position: absolute;
            bottom: 16px;
            left: 20px;
            right: 20px;
            height: 48px;
            background: rgba(13, 10, 15, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 165, 67, 0.25);
            border-radius: var(--radius-pill);
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 14px;
            z-index: 10;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .speedpaint-player-frame:hover .speedpaint-controls-bar,
        .speedpaint-player-stage:focus-within .speedpaint-controls-bar {
            opacity: 1;
            transform: translateY(0);
        }

        .sp-btn {
            background: transparent;
            border: none;
            color: var(--stardust-gold-light);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
            border-radius: var(--radius-pill);
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .sp-btn:hover {
            color: #FFFFFF;
            transform: scale(1.1);
        }

        .sp-icon {
            width: 20px;
            height: 20px;
        }

        .sp-time-display {
            font-family: var(--font-sans);
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-light-secondary);
            display: flex;
            align-items: center;
            gap: 4px;
            min-width: 80px;
        }

        .sp-time-sep {
            color: var(--text-light-muted);
        }

        .sp-progress-container {
            flex: 1;
            height: 24px;
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
        }

        .sp-progress-rail {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            position: relative;
            overflow: visible;
            transition: height 0.2s ease;
        }

        .sp-progress-container:hover .sp-progress-rail {
            height: 6px;
        }

        .sp-progress-buffered {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            border-radius: inherit;
            width: 0%;
            pointer-events: none;
        }

        .sp-progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: var(--gold-gradient);
            border-radius: inherit;
            width: 0%;
            pointer-events: none;
            box-shadow: 0 0 10px rgba(209, 165, 67, 0.8);
        }

        .sp-progress-thumb {
            position: absolute;
            top: 50%;
            left: 0%;
            transform: translate(-50%, -50%) scale(0);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #FFFFFF;
            box-shadow: 0 0 8px rgba(209, 165, 67, 0.9);
            transition: transform 0.15s ease;
            pointer-events: none;
        }

        .sp-progress-container:hover .sp-progress-thumb {
            transform: translate(-50%, -50%) scale(1);
        }

        .sp-mute-btn {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .sp-audio-badge {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            padding: 2px 6px;
            border-radius: 4px;
            background: rgba(209, 165, 67, 0.2);
            color: var(--stardust-gold-light);
        }

/* ==========================================================================
           SECTION 4: COMPLETE 16-ARTWORK DYNAMIC CATALOG GRID
           ========================================================================== */
        .catalog-section {
            position: relative;
            width: 100%;
            background: var(--canvas-bg);
            padding: 120px 48px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .catalog-header-block {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .catalog-super-tag {
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            color: var(--stardust-gold);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .catalog-main-title {
            font-family: var(--font-serif);
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 18px;
        }

        .catalog-filter-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .catalog-filter-btn {
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(209, 165, 67, 0.25);
            font-size: 0.84rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--text-secondary);
            transition: all 0.3s var(--ease-celestial);
        }

        .catalog-filter-btn:hover {
            background: #FFFFFF;
            border-color: var(--stardust-gold);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .catalog-filter-btn.active {
            background: var(--gold-gradient);
            border: 1.5px solid #9E741B;
            box-shadow: 0 4px 18px rgba(209, 165, 67, 0.35), inset 0 0 0 1px rgba(245, 223, 158, 0.6);
            color: #1A1512;
            font-weight: 700;
        }

        .catalog-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
            gap: 32px;
        }

        .catalog-grid-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #FFFFFF;
            border: 1px solid rgba(209, 165, 67, 0.2);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: transform 0.4s var(--ease-celestial), box-shadow 0.4s var(--ease-celestial), border-color 0.4s ease;
            display: flex;
            flex-direction: column;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .catalog-grid-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(209, 165, 67, 0.22), var(--shadow-md);
            border-color: var(--stardust-gold);
        }

        .catalog-card-thumbnail-box {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #ECE4D9;
        }

        .catalog-card-thumbnail-box.portrait-aspect {
            aspect-ratio: 3 / 4;
        }

        .catalog-card-thumbnail-box.landscape-aspect {
            aspect-ratio: 16 / 10;
        }

        .catalog-card-thumbnail-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease-celestial);
            will-change: transform;
            transform: translateZ(0);
        }

        .catalog-grid-card:hover .catalog-card-thumbnail-box img {
            transform: scale(1.08);
        }

        .catalog-card-overlay-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            display: flex;
            gap: 6px;
        }

        .catalog-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .catalog-card-title {
            font-family: var(--font-serif);
            font-size: 1.45rem;
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .catalog-card-excerpt {
            font-size: 0.86rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 18px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .catalog-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 1px solid rgba(209, 165, 67, 0.15);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--stardust-gold-dark);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* ==========================================================================
           SECTION 6: VERIFIED COMMISSIONS & HORIZON LOOKBOOK SHOWCASE
           ========================================================================== */
        .reviews-section {
            position: relative;
            width: 100%;
            background: var(--canvas-dark);
            color: var(--text-light);
            padding: 120px 48px;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 35%;
            transform: translateX(-50%);
            width: 800px;
            height: 500px;
            background: radial-gradient(circle, rgba(209, 165, 67, 0.1) 0%, rgba(209, 165, 67, 0.02) 60%, transparent 80%);
            filter: blur(60px);
            pointer-events: none;
            z-index: 1;
            transition: all 0.6s ease;
        }

        .reviews-inner-container {
            max-width: 1240px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .reviews-header-wrap {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 52px;
        }

        /* Horizon Lookbook Layout */
        .horizon-stage-layout {
            display: grid;
            grid-template-columns: 480px 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Left Art Pod */
        .horizon-art-pod {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(209, 165, 67, 0.35);
            aspect-ratio: 4 / 4.9;
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(209, 165, 67, 0.15);
            background: #090705;
        }

        .horizon-art-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: opacity 0.35s ease, transform 0.5s ease;
        }

        .horizon-art-pod:hover .horizon-art-img {
            transform: scale(1.03);
        }

        .horizon-delivery-tag {
            position: absolute;
            top: 18px;
            left: 18px;
            background: rgba(17, 13, 10, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-pill);
            padding: 6px 14px;
            font-size: 0.78rem;
            font-weight: 500;
            color: #FAF7F2;
            font-family: var(--font-sans);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 14px rgba(0,0,0,0.4);
        }

        /* Right Content Flow */
        .horizon-content-flow {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .horizon-review-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .horizon-stars-gold {
            color: var(--stardust-gold);
            letter-spacing: 3px;
            font-size: 1.18rem;
            text-shadow: 0 0 12px rgba(209, 165, 67, 0.5);
        }

        .horizon-verified-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(84, 197, 183, 0.1);
            border: 1px solid rgba(84, 197, 183, 0.3);
            border-radius: var(--radius-pill);
            color: #54C5B7;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-family: var(--font-sans);
        }

        .horizon-quote-editorial {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            line-height: 1.38;
            color: var(--text-light);
            font-weight: 400;
            font-style: italic;
            letter-spacing: -0.01em;
        }

        .horizon-quote-editorial span.highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        /* Refined Commissioner Identity Bar (Artisanal Editorial Typography) */
        .horizon-client-identity-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            background: rgba(26, 21, 18, 0.6);
            border: 1px solid rgba(209, 165, 67, 0.18);
            border-radius: var(--radius-md);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            gap: 20px;
            flex-wrap: wrap;
            transition: all 0.3s ease;
        }

        .horizon-client-identity-strip:hover {
            border-color: rgba(209, 165, 67, 0.38);
            background: rgba(26, 21, 18, 0.8);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }

        .client-text-meta {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .client-name-title {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .client-display-name {
            font-family: var(--font-serif);
            font-size: 1.38rem;
            font-weight: 600;
            color: #FAF7F2;
            letter-spacing: 0.01em;
        }

        .client-category-note {
            font-family: var(--font-sans);
            font-size: 0.74rem;
            font-weight: 600;
            color: var(--stardust-gold-light);
            background: rgba(209, 165, 67, 0.12);
            border: 1px solid rgba(209, 165, 67, 0.28);
            border-radius: var(--radius-pill);
            padding: 3px 12px;
            letter-spacing: 0.03em;
            display: inline-flex;
            align-items: center;
        }

        .client-sub-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-sans);
            font-size: 0.84rem;
            color: var(--text-light-muted);
        }

        .client-sub-meta span {
            color: var(--text-light-secondary);
        }

        .client-bullet-dot {
            color: rgba(255, 255, 255, 0.25);
        }

        /* Order / View on VGen Button */
        .btn-vgen-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            background: var(--gold-gradient);
            color: #110D0A;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: 0 4px 18px rgba(209, 165, 67, 0.35);
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .btn-vgen-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 26px rgba(209, 165, 67, 0.5);
        }

        /* Bottom Thumbnails & Controls Strip */
        .horizon-bottom-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 8px;
        }

        .thumbnails-strip {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .thumb-button-item {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-xs);
            border: 2px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            background: #000;
            position: relative;
        }

        .thumb-button-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.45;
            transition: opacity 0.25s ease, transform 0.3s ease;
        }

        .thumb-button-item:hover img, .thumb-button-item.active img {
            opacity: 1;
            transform: scale(1.08);
        }

        .thumb-button-item.active {
            border-color: var(--stardust-gold);
            box-shadow: 0 0 16px var(--gold-glow);
            transform: translateY(-2px);
        }

        .nav-buttons-cluster {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-round-btn {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-pill);
            background: rgba(26, 21, 18, 0.85);
            border: 1px solid var(--gold-border);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .nav-round-btn:hover {
            background: var(--gold-gradient);
            color: #110D0A;
            border-color: transparent;
            box-shadow: 0 4px 18px rgba(209, 165, 67, 0.4);
        }

        .index-counter-tag {
            font-family: var(--font-mono);
            font-size: 0.84rem;
            color: var(--text-light-muted);
            font-weight: 600;
            padding: 0 6px;
        }

        .btn-atelier-vgen:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(209, 165, 67, 0.45);
        }

        @media (max-width: 960px) {
            .horizon-stage-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .reviews-section {
                padding: 80px 20px 140px;
            }
        }

/* ==========================================================================
           SECTION 7: FAQ & CREATIVE WORKFLOW ACCORDION
           ========================================================================== */
        .faq-section {
            position: relative;
            width: 100%;
            background: var(--canvas-bg);
            padding: 100px 48px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-accordion-item {
            border-bottom: 1px solid rgba(209, 165, 67, 0.25);
            padding: 24px 0;
        }

        .faq-question-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            font-family: var(--font-serif);
            font-size: 1.45rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .faq-question-btn:hover {
            color: var(--stardust-gold-dark);
        }

        .faq-icon-arrow {
            transition: transform 0.3s var(--ease-celestial);
            color: var(--stardust-gold);
        }

        .faq-accordion-item.open .faq-icon-arrow {
            transform: rotate(180deg);
        }

        .faq-answer-pane {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-celestial), opacity 0.3s ease;
            opacity: 0;
        }

        .faq-accordion-item.open .faq-answer-pane {
            max-height: 250px;
            opacity: 1;
            padding-top: 14px;
        }

        .faq-answer-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ==========================================================================
           SITE FOOTER
           ========================================================================== */
        .site-footer {
            position: relative;
            background: #0E0A08;
            color: #FCF9F5;
            padding: 80px 48px 120px;
            border-top: 1px solid rgba(209, 165, 67, 0.2);
            z-index: 20;
        }

        .footer-inner-wrap {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-brand-title {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .footer-social-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-social-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(209, 165, 67, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--stardust-gold-light);
            transition: all 0.3s ease;
        }

        .footer-social-icon:hover {
            background: var(--gold-gradient);
            color: #1A1512;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(209, 165, 67, 0.3);
        }

        /* ==========================================================================
           FLOATING GLASSMORPHISM PROGRESS DOCK
           ========================================================================== */
        .floating-progress-dock {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(250, 247, 242, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(209, 165, 67, 0.35);
            border-radius: var(--radius-pill);
            box-shadow: 0 16px 48px rgba(26, 21, 18, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.6);
            padding: 8px 18px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: transform 0.3s var(--ease-celestial);
        }

        .dock-radar-list {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            background: rgba(0, 0, 0, 0.04);
            padding: 4px;
            border-radius: var(--radius-pill);
        }

        .dock-radar-item {
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .dock-radar-item:hover {
            color: var(--stardust-gold-dark);
        }

        .dock-radar-item.active {
            background: var(--gold-gradient);
            color: #1A1512;
            box-shadow: 0 2px 10px rgba(209, 165, 67, 0.3);
        }

        .dock-divider {
            width: 1px;
            height: 24px;
            background: rgba(209, 165, 67, 0.25);
        }

        /* Web Audio Procedural Synth Button */
        .dock-audio-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: var(--radius-pill);
            background: rgba(209, 165, 67, 0.1);
            border: 1px solid rgba(209, 165, 67, 0.25);
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--stardust-gold-dark);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .dock-audio-btn:hover {
            background: rgba(209, 165, 67, 0.2);
        }

        .audio-wave-bars {
            display: flex;
            align-items: flex-end;
            gap: 2px;
            height: 14px;
        }

        .wave-bar {
            width: 2.5px;
            height: 4px;
            background: var(--stardust-gold);
            border-radius: 1px;
            transition: height 0.2s ease;
        }

        .dock-audio-btn.playing .wave-bar:nth-child(1) { animation: soundWave 0.8s infinite ease-in-out; }
        .dock-audio-btn.playing .wave-bar:nth-child(2) { animation: soundWave 0.8s infinite ease-in-out 0.2s; }
        .dock-audio-btn.playing .wave-bar:nth-child(3) { animation: soundWave 0.8s infinite ease-in-out 0.4s; }

        @keyframes soundWave {
            0%, 100% { height: 4px; }
            50% { height: 14px; }
        }

        /* Circular Scroll Progress Meter */
        .dock-progress-ring-box {
            position: relative;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dock-progress-svg {
            transform: rotate(-90deg);
            width: 34px;
            height: 34px;
        }

        .progress-meter-bg {
            fill: none;
            stroke: rgba(209, 165, 67, 0.2);
            stroke-width: 3;
        }

        .progress-meter-fill {
            fill: none;
            stroke: var(--stardust-gold);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-dasharray: 88;
            stroke-dashoffset: 88;
            transition: stroke-dashoffset 0.1s linear;
        }

        .progress-text-pct {
            position: absolute;
            font-size: 0.58rem;
            font-weight: 800;
            color: var(--text-primary);
        }

        /* ==========================================================================
           FULLSCREEN ARTWORK LIGHTBOX MODAL & INSPECTOR
           ========================================================================== */
        .lightbox-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(12, 9, 8, 0.95);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

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

        .modal-card-frame {
            position: relative;
            width: 100%;
            max-width: 1360px;
            height: 88vh;
            background: var(--canvas-dark-surface);
            border: 1px solid rgba(209, 165, 67, 0.35);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.35fr 0.65fr;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 30;
            transition: all 0.25s ease;
        }

        .modal-close-btn:hover {
            background: rgba(209, 165, 67, 0.3);
            border-color: var(--stardust-gold);
            transform: rotate(90deg);
        }

        .modal-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(19, 15, 12, 0.8);
            border: 1px solid rgba(209, 165, 67, 0.4);
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 25;
            transition: all 0.25s ease;
        }

        .modal-nav-arrow:hover {
            background: var(--gold-gradient);
            color: #1A1512;
            transform: translateY(-50%) scale(1.1);
        }

        .modal-nav-prev { left: 20px; }
        .modal-nav-next { right: calc(32.5% + 20px); }

        .modal-viewport-stage {
            position: relative;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, #18130F 0%, #0A0806 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: zoom-in;
            user-select: none;
            touch-action: pan-y;
        }

        .modal-viewport-stage.is-zoomed {
            cursor: grab;
            touch-action: none;
        }

        .modal-viewport-stage.is-dragging {
            cursor: grabbing !important;
        }

        .modal-main-img {
            max-width: 92%;
            max-height: 92%;
            object-fit: contain;
            transform-origin: center center;
            will-change: transform;
            user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
            border-radius: 4px;
        }

        .modal-zoom-pill {
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            background: rgba(19, 15, 12, 0.78);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(209, 165, 67, 0.3);
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-light-secondary);
            cursor: pointer;
            transition: all 0.25s ease;
            z-index: 10;
            user-select: none;
        }

        .modal-zoom-pill:hover {
            background: rgba(209, 165, 67, 0.2);
            border-color: var(--stardust-gold);
            color: var(--stardust-gold-light);
        }

        .modal-zoom-val {
            font-family: var(--font-mono);
            color: var(--stardust-gold);
            font-weight: 700;
        }

        .modal-zoom-divider {
            opacity: 0.4;
        }

        .modal-zoom-tips {
            opacity: 0.85;
        }

        .modal-details-sidebar {
            padding: 40px;
            background: var(--canvas-dark-surface);
            border-left: 1px solid rgba(209, 165, 67, 0.2);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            color: #FCF9F5;
        }

        .modal-category-chip {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            color: var(--stardust-gold);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .modal-artwork-title {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            font-weight: 500;
            line-height: 1.15;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .modal-artwork-desc {
            font-size: 0.92rem;
            line-height: 1.7;
            color: var(--text-light-secondary);
            margin-bottom: 24px;
        }

        .modal-specs-table {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 20px 0;
            border-top: 1px solid rgba(209, 165, 67, 0.15);
            border-bottom: 1px solid rgba(209, 165, 67, 0.15);
            margin-bottom: 24px;
        }

        .modal-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: var(--radius-pill);
            background: var(--gold-gradient);
            color: #1A1512;
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            box-shadow: 0 8px 24px rgba(209, 165, 67, 0.35);
            margin-top: auto;
            transition: all 0.3s ease;
        }

        .modal-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(209, 165, 67, 0.5);
        }

        /* Floating Micro-Toast */
        .toast-notification {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: rgba(19, 15, 12, 0.92);
            backdrop-filter: blur(14px);
            border: 1px solid var(--stardust-gold);
            color: var(--stardust-gold-light);
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-size: 0.84rem;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s var(--ease-celestial);
            z-index: 3000;
        }

        .toast-notification.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* ==========================================================================
           RESPONSIVE BREAKPOINTS (375px, 768px, 1024px, 1440px)
           ========================================================================== */
        @media (max-width: 1024px) {
            .site-header { padding: 0 24px; }
            .header-nav { display: none; }
            .speedpaint-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
            .speedpaint-player-stage { max-width: 520px; margin: 0 auto; }
            .gallery-item-card.wide-card { width: 480px; max-width: 85vw; }
            .modal-card-frame { grid-template-columns: 1fr; height: 90vh; }
            .modal-viewport-stage { height: 45vh; }
            .modal-nav-next { right: 20px; }
            .floating-progress-dock { width: auto; max-width: 90vw; justify-content: center; gap: 14px; }
        }

        @media (max-width: 640px) {
            .hero-section { padding-top: 100px; }
            .hero-deck-viewport { height: 360px; }
            .pedestal-center { width: 220px; height: 300px; }
            .pedestal-left { width: 180px; height: 250px; transform: rotate(-6deg) translateY(16px) scale(0.88); }
            .pedestal-right { width: 180px; height: 250px; transform: rotate(6deg) translateY(16px) scale(0.88); }
            .deck-card-center { width: 240px; height: 320px; }
            .deck-card-left { width: 200px; height: 260px; transform: translateX(-140px) rotateY(18deg) scale(0.85); }
            .deck-card-right { width: 200px; height: 260px; transform: translateX(140px) rotateY(-18deg) scale(0.85); }
            .gallery-track-rail { padding: 0 24px; gap: 20px; }
            .gallery-intro-card { width: 300px; }
            .gallery-item-card { width: 280px; height: 420px; }
            .catalog-section, .speedpaint-section, .faq-section { padding: 80px 20px; }
            .catalog-filter-bar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                max-width: 360px;
                margin: 0 auto 36px;
                padding: 0;
            }
            .catalog-filter-btn {
                padding: 10px 14px;
                font-size: 0.78rem;
                white-space: nowrap;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .speedpaint-stats-grid { grid-template-columns: 1fr; }
            .speedpaint-controls-bar { padding: 8px 12px; gap: 8px; }
            .reviews-trust-strip {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                width: 100%;
                max-width: 420px;
                margin-left: auto;
                margin-right: auto;
            }
            .trust-strip-pill {
                justify-content: center;
                font-size: 0.74rem;
                padding: 6px 10px;
            }
            .reviews-section {
                padding: 60px 16px 140px;
            }
            .reviews-header-wrap {
                margin-bottom: 24px;
            }
            .reviews-header-wrap .hero-title {
                font-size: 1.85rem;
                line-height: 1.25;
                margin-bottom: 8px;
            }
            .reviews-header-wrap .hero-lead {
                font-size: 0.88rem;
                line-height: 1.45;
            }
            .horizon-stage-layout {
                grid-template-columns: 1fr;
                gap: 16px;
                background: rgba(22, 17, 14, 0.78);
                border: 1px solid rgba(209, 165, 67, 0.24);
                border-radius: 24px;
                padding: 16px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(209, 165, 67, 0.08);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }
            .horizon-art-pod {
                aspect-ratio: 1 / 1;
                max-height: 280px;
                width: 100%;
                border-radius: 16px;
                border: 1px solid rgba(209, 165, 67, 0.25);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
                background: #090705;
            }
            .horizon-content-flow {
                gap: 14px;
                padding: 0 2px;
            }
            .horizon-review-topline {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
            }
            .horizon-stars-gold {
                font-size: 0.95rem;
                letter-spacing: 2px;
            }
            .horizon-verified-pill {
                font-size: 0.72rem;
                padding: 4px 10px;
                border-radius: 999px;
            }
            .horizon-quote-editorial {
                font-size: 1.15rem;
                line-height: 1.45;
                min-height: 48px;
            }
            .horizon-client-identity-strip {
                background: rgba(15, 12, 10, 0.65);
                border: 1px solid rgba(209, 165, 67, 0.16);
                border-radius: 14px;
                padding: 10px 14px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
            }
            .client-display-name {
                font-size: 0.92rem;
                font-weight: 700;
                color: #FAF7F2;
            }
            .client-category-note {
                font-size: 0.72rem;
                color: var(--stardust-gold);
            }
            .client-sub-meta {
                font-size: 0.72rem;
                color: #8C7E74;
            }
            .btn-vgen-gold {
                padding: 8px 14px;
                font-size: 0.74rem;
                border-radius: 10px;
                width: auto;
                white-space: nowrap;
                flex-shrink: 0;
                justify-content: center;
            }
            .horizon-bottom-controls {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                margin-top: 2px;
            }
            .thumbnails-strip {
                display: flex;
                align-items: center;
                gap: 8px;
                justify-content: flex-start;
            }
            .thumb-button-item {
                width: 38px;
                height: 38px;
                border-radius: 10px;
            }
            .nav-buttons-cluster {
                display: flex;
                align-items: center;
                gap: 8px;
                justify-content: flex-end;
            }
            .nav-round-btn {
                width: 34px;
                height: 34px;
                border-radius: 50%;
            }
            .index-counter-tag {
                font-size: 0.72rem;
                padding: 4px 8px;
            }
            .floating-progress-dock { 
                bottom: 16px;
                width: auto;
                max-width: 90vw;
                padding: 5px 12px; 
                gap: 8px; 
                justify-content: center;
            }
            .dock-audio-btn {
                padding: 5px 10px;
                font-size: 0.72rem;
                gap: 6px;
            }
            .dock-progress-ring-box {
                width: 30px;
                height: 30px;
            }
            .dock-progress-svg {
                width: 30px;
                height: 30px;
            }
            .progress-text-pct {
                font-size: 0.52rem;
            }

            /* Mobile Modal Polish */
            .lightbox-modal {
                padding: 12px;
            }
            .modal-card-frame {
                height: 88vh;
                max-height: 88vh;
                border-radius: var(--radius-md);
                display: flex;
                flex-direction: column;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
                position: relative;
            }
            .modal-viewport-stage {
                height: 42vh;
                min-height: 240px;
                max-height: 340px;
                flex-shrink: 0;
                touch-action: pan-y;
                position: relative;
            }
            .modal-viewport-stage.is-zoomed {
                touch-action: none;
            }
            .modal-close-btn {
                position: absolute;
                top: 12px;
                right: 12px;
                width: 38px;
                height: 38px;
                min-width: 38px;
                min-height: 38px;
                aspect-ratio: 1 / 1;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.9rem;
                line-height: 1;
                z-index: 40;
                background: rgba(19, 15, 12, 0.85);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(209, 165, 67, 0.35);
                color: #FFFFFF;
                cursor: pointer;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
                margin: 0;
                padding: 0;
            }
            .modal-nav-arrow {
                position: absolute;
                top: 21vh;
                width: 38px;
                height: 38px;
                min-width: 38px;
                min-height: 38px;
                aspect-ratio: 1 / 1;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.85rem;
                line-height: 1;
                z-index: 35;
                margin: 0;
                padding: 0;
            }
            .modal-nav-prev {
                left: 10px;
            }
            .modal-nav-next {
                right: 10px;
            }
            .modal-zoom-pill {
                bottom: 10px;
                left: 10px;
                font-size: 0.65rem;
                padding: 5px 10px;
                z-index: 20;
            }
            .modal-details-sidebar {
                padding: 22px 18px 28px;
                flex-shrink: 0;
                overflow-y: visible;
                border-left: none;
                border-top: 1px solid rgba(209, 165, 67, 0.2);
            }
            .modal-artwork-title {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }
            .modal-artwork-desc {
                font-size: 0.84rem;
                line-height: 1.55;
                margin-bottom: 16px;
            }
            .modal-specs-table {
                padding: 12px 0;
                gap: 8px;
                margin-bottom: 16px;
                font-size: 0.8rem;
            }
            .modal-cta-btn {
                padding: 12px 18px;
                font-size: 0.82rem;
                margin-top: 14px;
            }
        }
